django-rq icon indicating copy to clipboard operation
django-rq copied to clipboard

A simple app that provides django integration for RQ (Redis Queue)

Results 120 django-rq issues
Sort by recently updated
recently updated
newest added

Hi, I see rq support redis cluster from https://github.com/rq/rq/pull/741, but django-rq does not provide doc or details for using redis cluster. I see code from https://github.com/rq/django-rq/blob/v1.0.1/django_rq/queues.py#L65-L107 ```python def get_redis_connection(config, use_strict_redis=False):...

In my setup, there are multiple workers with hierarchies for different queues, launched like below (oversimplified for sake of example): **Workers A,B,C,D** (I have 4 running): `manage.py rqworker --worker-class rq.SimpleWorker...

``` queue = django_rq.get_queue('low') def update_experience(image): """ i am saving the image to database""" def fun(request): """ some more logic not related """ for x in range(1, 4): title =...

Hello. Is there a way how to change/increase timeout of failed jobs? My jobs fail with exception: ``` rq.timeouts.JobTimeoutException: Task exceeded maximum timeout value ``` so I increased the ``DEFAULT_TIMEOUT``...

There are three models and meta-job function: ``` class ModelA(models.Model): child = models.ForeignKey(ModelB) class ModelB(models.Model): child = models.ForeignKey(ModelC) class ModelC(models.Model): name = models.CharField() child = None def func(obj): if obj.child...

The [Configuring Logging](https://github.com/ui/django-rq/blob/master/README.rst#configuring-logging) section of the README currently says: > Please configure Raven to use sync+https:// or requests+https:// transport in settings.py [...] But that configuration produces a deprecation warning: >...

Currently when using Sentinel the password from the config is not passed through to the Sentinel class which results in a NOAUTH when connecting. This patch passes through the same...

I wonder why the `Failed` jobs column isn't shown in the cli command `rqstats`? There is `queue["failed_jobs"]` available in the `queue` object for that command, and I can add it...

Currently the get_scheduler call supports only these arguments: name, queue, and interval. But when instances a new scheduler it takes the job_class from queue.job_class. If you want to change the...

I've noticed that the `/stats.json/` endpoint actually includes the plain-text password in the `connection_kwargs` key for each queue listed. Would you be opposed to a setting that would instead return...