A scheduler backed by Redis with a very simple interface
Project description
A scheduler backed by Redis with a very simple interface.
RACHE doesn’t handle job execution. It only maintains a list of jobs and their theoretical execution time. It’s up to you to monitor pending jobs and send them to an actual task queue.
Installation
RACHE works with any Python version from 2.6 to 3.3. You only need a working Redis server.
pip install rache
Configuration
By default RACHE connects to Redis on localhost, port 6379, database 0. To override this, set a REDIS_URL environment variable:
REDIS_URL=redis://redis.example.com:6379/2
RACHE prefixes all its Redis keys with rache:. You can override this by setting the RACHE_REDIS_PREFIX environment variable.
Usage
import rq from rache import schedule_job, pending_jobs # Schedule a job now schedule_job('http://github.com/brutasse/rache', schedule_in=0, timeout=10) # Get pending jobs jobs = pending_jobs() # Send them to the task queue for immediate execution for job in jobs: rq.enqueue_job(...)
schedule_job
schedule_job('job id', schedule_in=<seconds>, **kwargs)
A given job ID is unique from the scheduler perspective. Scheduling it twice results in it being scheduled at the time decided in the last call.
**kwargs can be used to attach data to your jobs. For instance, if you have jobs to fetch URLs and want to attach a timeout to these jobs:
schedule_job('http://example.com/test', schedule_in=3600, timeout=10)
The job data is persistent. To remove a key from the data, call schedule_job() with that key set to None:
schedule_job('http://example.com/test', schedule_in=3600, timeout=None)
schedule_in is mandatory. This means you can’t update an existing job without rescheduling it.
pending_jobs
jobs = pending_jobs(reschedule_in=None, limit=None)
(the returned value is a generator)
Fetches the pending jobs and returns a list of jobs. Each job is a dictionnary with an id key and its additional data.
reschedule_in controls whether to auto-reschedule jobs in a given time. This is useful if you have periodic jobs but also want to special-case some jobs according to their results (enqueue is rq-style syntax):
jobs = pending_jobs(reschedule_in=3600) for job in jobs: enqueue(do_something, kwargs=job) def do_something(**kwargs): # … do some work if some_condition: # re-schedule in 30 days schedule_job(kwargs['id'], schedule_in=3600 * 24 * 30)
limit allows you to limit the number of jobs returned. Remaining jobs are left on schedule, even if they should have been scheduled right now.
delete_job
delete_job('<job id>')
Removes a job completely from the scheduler.
job_details
job_details('<job id>')
Returns a dictionnary with the job data. The job ID and scheduled time are set in the id and schedule_at keys of the returned value.
scheduled_jobs
scheduled_jobs(with_times=False)
(the returned value is a generator)
Fetches all the job IDs stored in the scheduler. This returns a list of IDs or a list of (job_id, timestamp) tuples if with_times is set to True.
This is useful for syncing jobs between the scheduler and a database, for instance.
Contributing
Create a local environment:
virtualen env source env/bin/activate pip install -e .
Run the tests:
python setup.py test
Or for all supported python versions:
tox
Hack, fix bugs and submit pull requests!
Changelog
0.2.2 (2013-07-10):
Fixed a typo that lead to AttributeError when retrieving some jobs.
0.2.1 (2013-07-03):
Allowed pending_jobs() to return non-unicode data if undecodable bytes are passed to schedule_job().
0.2 (2013-06-02):
Added limit kwarg to pending_jobs().
Allowed schedule_in to be a timedelta alternatively to a number of seconds.
Added job_details().
Numerical data attached to jobs is cast to int() when returned.
0.1 (2013-06-01):
Initial release
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file rache-0.2.2.tar.gz
.
File metadata
- Download URL: rache-0.2.2.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b09aeb31c8cf89a4e13045da8c91f3b38baf8e202e390b6634ca52de9d2b6ca4 |
|
MD5 | 464225f67e988a6975110dee90399459 |
|
BLAKE2b-256 | cc93af1fc684e388e484bff99849458a2ddd9898a9d0762f8d3596a3693f671a |