django-q
django-q copied to clipboard
A multiprocessing distributed task queue for Django
as described in the issue #652 django-q queries a lot for tasks and schedules. to keep django-q on a different db, preferably on a no-sql db while the main app...
This may be related to PR https://github.com/Koed00/django-q/pull/470. My project has `USE_TZ = False` and `Conf.CATCH_UP = False`. Schedules are generally entered in local time. This means that, if a Schedule...
Is there any way to prevent a Schedule from triggering before it's run? ``` timer = timezone.now() + timedelta(seconds=10) schedule( MY_TASK, arg_1, schedule_type=Schedule.ONCE, next_run=timer, repeats=-1, user_id=user.id, ) ``` In this...
Hello, I am using `Django-Q 1.3.9` with `Django 3.2.8` and I wish to override `result` field in success tasks to show only a part of the result since I store...
I notice that deleting a Schedule before it triggers doesn't stop it from triggering. I'm guessing to prevent it from triggering I need to remove it from the broker as...
I am trying to setup django-q on a separate db as my default db has high load and using redis as a broker. doing this throws an error > 10:46:02...
I want to establish like a job based structure, which are running by schedule or manually. So ideally I would say I can use a task and schedule the task...
Hello all, I already built an image which includes Django framework, djano-q and other function needed packages. For me now, If I only run Django web service and then go...
Hi @Koed00 ! I packaged django-q 1.3.9-2 in Debian, and realized that text_max_rss consistently fails in armhf architectures: ``` _________________________________ test_max_rss _________________________________ broker = monkeypatch = @pytest.mark.django_db def test_max_rss(broker, monkeypatch):...
Fix #245 (may able to #439, #339).