django-q
                                
                                 django-q copied to clipboard
                                
                                    django-q copied to clipboard
                            
                            
                            
                        A multiprocessing distributed task queue for Django
It would be nice if the docs contained a brief comparison with similar libs or motives behind django-q. Right now, celery is the go to system for most django developers...
From reading the docs and a quick look at the code, it seems like 1 minute is the shortest possible interval between tasks. Are there any external obstacles to using...
It appears the last change was in June 2021. Is there intent to continue to maintain this project? Do people have alternatives to move away from this project?
Django ORM broker can list the tasks in queued state. For redis broker, task status is known only with the task is executed with success/failure through Task model. Is there...
Hi, guys. Every time I run ```python manage.py qcluster``` to start the queue. The error will come out. I need you guys to advise. Thanks. ```shell Process Process-1:4: Traceback (most...
I use Django Channels to manage websockets. I have configured Django-Q to use Django ORM as a broker. In the WS message handler I store some data in DB, then...
I'd like to switch from Redis broker to SQS for increase the reliability of my task queue. After reading [the source code](https://github.com/Koed00/django-q/blob/master/django_q/brokers/aws_sqs.py#L99) I noticed that the broker will create a...
Wasted a lot of time to figure out the fact, that bulk queue insertions DO NOT save anything to database, including failed jobs and errors. You could've at least documented...
redis-py through 4.5.3 and 4.4.3 leaves a connection open after canceling an async Redis command at an inopportune time (in the case of a non-pipeline operation), and can send response...