django-q
django-q copied to clipboard
A multiprocessing distributed task queue for Django
Django-q works but it fails only in this specific scenario: When I run it on my AWS (AWS Linux 2, Python 3.7) AND if I set my Django caching to...
For proper operation with Djongo Engine. I made some changes to some files. This change has been tested in both Linux and Windows.
Sorry if this is a silly question. I want to be able to determine from within my django app if there are any q clusters running. i.e. "is someone going...
On a fresh installation without altered configuration, the new warning pops up: ``` /usr/lib/python3.9/site-packages/django_q/conf.py:136: UserWarning: Retry and timeout are misconfigured. Set retry larger than timeout, failure to do so will...
Let's say I have a daily run for a task. If it missed several days, it would run that task 3 times. Is there a way to prevent that? I...
closes #582
``` Q_CLUSTER = { 'name': 'test', 'workers': 3, 'retry': 5, 'recycle': 500, 'timeout': 4, 'ack_failures': True, "max_attempts": 5, 'compress': True, 'save_limit': 250, 'queue_limit': 500, 'cpu_affinity': 1, 'label': 'Test', 'redis': {...
Getting this error "fromisoformat: argument must be str" when attempting to add a schedule. ```python schedule(make_task, 3, schedule_type=Schedule.MINUTES, minutes=1, repeats=3, next_run=arrow.utcnow()) ```
Daemon is not starting on this configuration. I understand that this python really old. I don't think this bug should be fixed. But I spend two days to understand what...