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

A multiprocessing distributed task queue for Django based on Django-Q

Results 65 django-q2 issues
Sort by recently updated
recently updated
newest added

Ref: https://github.com/django-q2/django-q2/pull/184#issuecomment-2095835134

If the cluster is full of tasks that schedule other tasks, and wait for the results, can it lead to a situation where all workers have a task that is...

Reason for closing connection is to prevent `async()` errors from unusable connections. https://github.com/Koed00/django-q/issues/124 This causes a connection error when scheduling tasks in a multi db setup which happens in a...

Hi, Im facing the behaviour that every time I run an function wrapped inside "async_task", its just getting executed /called when i have the config sync: True inside my Q_Cluster...

How to capture the clusters and workers logs displayed in CMD ? Examples of logs I would be interested to capture (and put in a file) : - Startup INFO...

Broker is created without the cluster / list_key arg and passed down: https://github.com/django-q2/django-q2/blob/efa0d6d9e4d9b6ea9d8d0af7cb82e8c0f856383e/django_q/tasks.py#L493-L494 Which is inconsistent with: https://github.com/django-q2/django-q2/blob/efa0d6d9e4d9b6ea9d8d0af7cb82e8c0f856383e/django_q/tasks.py#L57 This causes a bug where the `cluster` kwarg is not respected for...

Team, pulling literal hairs out of my beard here with this one. I have THE MOST vanilla qcluster setup on my project. ``` Q_CLUSTER = { 'retry': 60, 'timeout': 30,...

## Setting affected Django Q2 provides a [`catch_up` setting](https://django-q2.readthedocs.io/en/master/configure.html#catch-up), which is global and it affects all of the Schedules, as it can be seen in the following code: https://github.com/django-q2/django-q2/blob/v1.7.2/django_q/scheduler.py#L76-L81 ##...

Our unit tests are failing after upgrading to 1.7.2. Each one throws the following error: `KeyError: 'ack_id' Could not save task result Traceback (most recent call last): File "/app/.venv/lib/python3.12/site-packages/django_q/monitor.py", line...