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

When a task timed it, it will kill the process and the task gets lost. It doesn't get to marking the test as failed and put it back in the...

Who might have rabbit-mq custom class broker example ?

Great to see someone is working to take on keeping `django_q` developed. I wanted to let you know of another fork, which may have code and fixes you might find...

Would you be open to adding the ability to pass in the custom error reporting class directly instead of having to use the entry_points / extras approach? I'm not suggesting...

I would need to filter down tasks depending on the string representation of their result / args. I tried the "result__icontains" but it's refused and Casting it as a Charfield...

Hi! I'm working on a project where I need to handle task timeout events and other unexpected errors. Is there any method that can execute a custom callback function when...

When starting qcluster the following happens: * `Cluster.start()` starts a new process, calls `Sentinel()` in it and waits until Sentinel emits `start_event` * `Sentinel()` instantiates the broker though `get_broker()` *...

It appears (from the DeprecationWarnings emitted) that django-q2 is mixing threads with os.fork(). Apparently, this is never safe to do and can lead to deadlocks (hence the DeprecationWarning): https://discuss.python.org/t/concerns-regarding-deprecation-of-fork-with-alive-threads/33555/2 Related,...

I set my settings to: `Q_CLUSTER = { 'workers': 1,}` But when seeing my logs, I see: `INFO Process-13e34c004f7246948616f2901f839ca5 processing ... INFO Process-68e7765c38374543a4e7f844f7534967 created task thirteen-skylark-east-tennessee from .... ` So...