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 seem to be getting this error from my django-q worker on multiple tasks intermittently. Eventually the process fails and restarts and doesn't happen again for a while. No clue...

It's going to be awesome when we could rate limit our Broker by simply putting some configuration in our Cluster?

### Operating System: Linux ip-10-2-4-177 5.3.0-1008-aws #9-Ubuntu SMP Fri Nov 15 07:13:59 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux ### Versions: Python 3.7.5 django-q==1.3.3 psycopg2-binary==2.8.5 ### Setting: Q_CLUSTER = { 'name':...

I have been using django_q for my background processing. and i want to deploy it to heroku now. Skimming through documentation , i did not found nay guidelines on how...

For proper operation with CONN_MAX_AGE is > 0 we have to make sure that connection objects are no shared between parent and child processes. Proposed change is to replace db.connection.close()...

I have a very simple deployment of Django-Q with the supervisor and .sh script and I'm using SQS as the queue server. All kind of tasks works fine but the...

Something odd has been happening recently: tasks pile up in Django-Q (Queued tasks table) while some of them still get processed (successful). The hardware is Amazon Linux 2 on arm64....

Fixes #658 Includes test which failed with previous version of cluster.py, and passes with the new version.

This is a duplicate of #613, which was closed without a fix. Running async_task (in async mode) passing in a method argument (e.g. self.run) causes a problem after the function...

Django logging configuration (in settings module) is ignored because `django_q.conf` overrides it: ``` # logger logger = logging.getLogger('django-q') # Set up standard logging handler in case there is none if...