django-rq
django-rq copied to clipboard
A simple app that provides django integration for RQ (Redis Queue)
Hi guys, I hope this PR finds you all well! During my daily usage on local environment faced situations that this command could help a lot - actually I'm already...
https://github.com/rq/rq/pull/1874
I am not able to use DEBUG logging, as described in the README file. The logger always uses INFO level logging by default.
https://github.com/rq/django-rq/blob/e05eb8a21853ac3946815291d22b4e975e91035d/django_rq/queues.py#L113-L123 There are couple errors in `Sentinel` connection creating. 1. According to official [Python redis docs](https://redis.readthedocs.io/en/stable/connections.html#redis.sentinel.Sentinel), you should call Sentinel with passing **dicitonary** to parameter `sentinel_kwargs`, not parameters from this...
Let's suppose a context manager exists inside a function which is being run as part of the job. If the job times out, the cleanup `__exit__` code isn't executed and...
@selwin, Would you like me to add the option to provide a work_horse_killed_handler in django-rq (the same way the exception handlers are implemented)? Thanks!
Hi, I was wondering if django-rq provides a way to "terminate" a running job. For Jobs that take hours, deleting the job would not make the trick. or is it...
Hi, I'd like to know, now that the user of workers --with-scheduler if it's a good Idea to add a column for "Scheduler active" for each row (queue). I might...
hi there, apologies in advance if this is not appropriate or not related to this project itself. today we had a minor outage caused by a redis restart: all workers...
Similar to #216 , My worker sometimes loose the connection and must be restarted ``` [...] cursor = self.connection.cursor() psycopg2.InterfaceError: connection already closed ``` My env : ``` python==3.8.13 Django==3.2.16...