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

A multiprocessing distributed task queue for Django

Results 143 django-q issues
Sort by recently updated
recently updated
newest added

I start up a cluster, wait a minute, then kill the worker processes. New workers are incarnated, but the cluster refuses to process new jobs (though it processed them just...

Language fix in logging warning message.

The example code for running a schedule every 5 minutes, starting at 6pm for 2 hours is not working actually. The error code is `TypeError: expected string or bytes-like object`...

Setting max_attempts to 0 means it will have infinite retries, no? I noticed there is"ack_failures" setting, but I didn't quite understand how it works. > When set to True, also...

I think I've found the cause of https://github.com/Koed00/django-q/issues/218 and https://github.com/Koed00/django-q/issues/200. Django Q generally cycles through which worker gets the next task. If the next worker in that cycle gets killed,...

Instead of checking if the django-q logger has any handlers directly, use the [hasHandlers](https://docs.python.org/3/library/logging.html#logging.Logger.hasHandlers) method, which will check if any parent loggers have handlers as well. This fixes a bug...

Currently, Django-q does not run with Cockroach Labs as a database backend. Steps to repeat: 1. Setup a Cockroach Labs database, and new Django app: https://www.cockroachlabs.com/docs/stable/build-a-python-app-with-cockroachdb-django.html 2. Install django-q as...

First, this is a great product. I have used django celery beat. This is more straight forward approach. My question is : I am running this on the new app...