A database backed job scheduler for Django RQ with Django
Project description
Django RQ Scheduler
A database backed job scheduler for Django RQ. Based on original django-rq-scheduler - Now supports Django 4.0.
This allows remembering scheduled jobs, their parameters, etc.
Installation
-
Use pip to install:
pip install django-rq-scheduler
-
In
settings.py
, adddjango_rq
andscheduler
toINSTALLED_APPS
:INSTALLED_APPS = [ ... 'django_rq', 'scheduler', ... ]
-
Configure Django RQ. See https://github.com/ui/django-rq#installation
Add at least one Redis Queue to your
settings.py
:RQ_QUEUES = { 'default': { 'HOST': 'localhost', 'PORT': 6379, 'DB': 0, 'PASSWORD': 'some-password', 'DEFAULT_TIMEOUT': 360, }, }
-
Run migrations.
./manage.py migrate
Usage
Making a method in your code a schedulable job to be run by a worker.
See http://python-rq.org/docs/jobs/ or https://github.com/ui/django-rq#job-decorator
An example:
myapp.jobs.py
from django_rq import job
@job
def count():
return 1 + 1
Scheduling a Job
Scheduled Job
-
Sign in to the Django Admin site, http://localhost:8000/admin/ and locate the Django RQ Scheduler section.
-
Click on the Add link for Scheduled Job.
-
Enter a unique name for the job in the Name field.
-
In the Callable field, enter a Python dot notation path to the method that defines the job. For the example above, that would be
myapp.jobs.count
-
Choose your Queue. Side Note: The queues listed are defined in the Django Settings.
-
Enter the time the job is to be executed in the Scheduled time field. Side Note: Enter the date via the browser's local timezone, the time will automatically convert UTC.
-
Click the Save button to schedule the job.
Repeatable Job
-
Sign in to the Django Admin site, http://localhost:8000/admin/ and locate the Django RQ Scheduler section.
-
Click on the Add link for Repeatable Job
-
Enter a unique name for the job in the Name field.
-
In the Callable field, enter a Python dot notation path to the method that defines the job. For the example above, that would be
myapp.jobs.count
-
Choose your Queue. Side Note: The queues listed are defined in the Django Settings.
-
Enter the time the first job is to be executed in the Scheduled time field. Side Note: Enter the date via the browser's local timezone, the time will automatically convert UTC.
-
Enter an Interval, and choose the Interval unit. This will calculate the time before the function is called again.
-
In the Repeat field, enter the number of time the job is to be run. Leaving the field empty, means the job will be scheduled to run forever.
-
Click the Save button to schedule the job.
Advanced usage using jobs with args
django-rq-scheduler supports
from django_rq import job
@job
def job_args_kwargs(*args, **kwargs):
func = "test_args_kwargs({})"
args_list = [repr(arg) for arg in args]
kwargs_list = [k + '=' + repr(v) for (k, v) in kwargs.items()]
return func.format(', '.join(args_list + kwargs_list))
Schedule job with custom arguments to be calculated when scheduling
-
Sign in to the Django Admin site, http://localhost:8000/admin/ and locate the Django RQ Scheduler section.
-
Click on the Add link for Scheduled Job.
-
Enter a unique name for the job in the Name field.
-
In the Callable field, enter a Python dot notation path to the method that defines the job. For the example above, that would be
myapp.jobs.job_args_kwargs
-
Choose your Queue. Side Note: The queues listed are defined in the Django Settings.
-
Enter the time the job is to be executed in the Scheduled time field. Side Note: Enter the date via the browser's local timezone, the time will automatically convert UTC.
-
Click the Save button to schedule the job.
-
Add arguments to the job, pick argument type.
-
Add arguments with keys to the job, pick argument type and value.
Reporting issues or Features requests
Please report issues via GitHub Issues .
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_rq_scheduler-2022.12.0.tar.gz
.
File metadata
- Download URL: django_rq_scheduler-2022.12.0.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8dcacf3b1a73c38990da44a09312a5699b9b2ce50d6deb4e9ad3b6cd1d10194 |
|
MD5 | 7d43d658e7af234764f76c7a5adb3b40 |
|
BLAKE2b-256 | 9fe37946637544df5a7c7d380a4f02bfa237384be41a8071eb44a3d5b40bbd26 |
File details
Details for the file django_rq_scheduler-2022.12.0-py3-none-any.whl
.
File metadata
- Download URL: django_rq_scheduler-2022.12.0-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fac112e2900335cb4ef50cafcf1bf7d402dc7d431f8928e909e95e5c473a0f3 |
|
MD5 | 6fb1e34e901b9e7c84acf1ee67571ca4 |
|
BLAKE2b-256 | 6be6b0be0f8d4fc5bf90565b73dcf75dd973af4df5ecec1547580ebc16f491cc |