- Run
rqworker
with--sentry_dsn=""
to disable Sentry integration. Thanks @Bolayniuss! - Support for
SSL
Redis kwarg. Thanks @ajknv! rqworker
andrqscheduler
management commands now uses RQ's built insetup_loghandlers
function. Thanks @Paulius-Maruska!- Remove the use of deprecated
admin_static
template tag. Thanks @lorenzomorandini!
- Added support
redis-py
>= 3 andRQ
>= 0.13. Thanks @selwin! - Use
Worker.count(queue=queue)
to speed up the process of getting the number of active workers. Thanks @selwin! - Added an option to requeue job from the admin interface. Thanks @seiryuz!
- Improve Sentinel support. Thanks @pnuckowski!
- Supports Python 3.7 by renaming
async
tois_async
. Thanks @Flimm! UnpickleError
is now handled properly. Thanks @selwin!- Redis Sentinel support. Thanks @SpeedyCoder!
- Fixed some admin related bugs. Thanks @seiryuz!
- More Django 2.0 compatibility fixes. Thanks @selwin and @koddr!
- Custom
Job
andWorker
classes are now supported. Thanks @skirsdeda! SENTRY_DSN
value insettings.py
will now be used by default. Thanks @inetss!
- Django 2.0 compatibility fixes.
- Minor bug fixes
- You can now view worker information
- Detailed worker statistics such as failed/completed job count are now shown (requires RQ >= 0.9.0). Thanks @seiryuz!
rqstats
management command now allows you to monitor queue stats via CLI. Thanks @seiryuz!- Added
/stats.json
endpoint to fetch RQ stats in JSON format, useful for monitoring purposes. Thanks @seiryuz! - Fixed a crash when displaying deferring jobs. Thanks @Hovercross!
- Added
sentry-dsn
cli option torqworker
management command. Thanks @efi-mk! - Improved performance when requeueing all jobs. Thanks @therefromhere!
- More Django 1.10 compatibility fixes. Thanks @dmwyatt!
- Improves performance when dealing with a large number of workers. Thanks @lucastamoios!
- Fixed view paging for registry-based job lists. Thanks @smaccona!
- Fixed an issue where multiple failed queues may appear for the same connection. Thanks @depaolim!
rqworker
management command now closes all DB connections before executing jobs. Thanks @depaolim!- Fixed an argument parsing bug
rqworker
management command. Thanks @hendi!
- Added a
--pid
option torqscheduler
management command. Thanks @vindemasi! - Added
--queues
option torqworker
management command. Thanks @gasket! - Job results are now shown on admin page. Thanks @mojeto!
- Fixed a bug in interpreting
--burst
argument inrqworker
management command. Thanks @claudep! - Added Requeue All feature in Failed Queue's admin page. Thanks @lucashowell!
- Admin interface now shows time in local timezone. Thanks @randomguy91!
- Other minor fixes by @jeromer and @sbussetti.
- Support for Django 1.10. Thanks @jtburchfield!
- Added
--queue-class
option torqworker
management command. Thanks @Krukov!
- Added
-i
and--queue
options to rqscheduler management command. Thanks @mbodock and @sbussetti! - Added
--pid
option torqworker
management command. Thanks @ydaniv! - Admin interface fixes for Django 1.9. Thanks @philippbosch!
- Compatibility fix for
django-redis-cache
. Thanks @scream4ik! - Backwards incompatible: Exception handlers are now defined via
RQ_EXCEPTION_HANDLERS
insettings.py
. Thanks @sbussetti! - Queues in django-admin are now sorted by name. Thanks @pnuckowski!
- Support for Django 1.9. Thanks @aaugustin and @viaregio!
rqworker
management command now accepts--worker-ttl
argument. Thanks pnuckowski!- You can now easily specify custom
EXCEPTION_HANDLERS
insettings.py
. Thanks @xuhcc! django-rq
now requires RQ >= 0.5.5
- You can now view deferred, finished and currently active jobs from admin interface.
- Better support for Django 1.8. Thanks @epicserve and @seiryuz!
- Requires RQ >= 0.5.
- You can now use StrictRedis with Django-RQ. Thanks @wastrachan!
- Added
rqenqueue
management command for easy scheduling of tasks (e.g via cron