msabatier
msabatier
Hi, Are you running with CONN_MAX_AGE > 0 in django setttings ? If yes please check https://github.com/Koed00/django-q/pull/604 It could easily be the same issue that can translate in a variety...
Hi, For issue 1 how are you defining your tasks, with the function name or the function as an object (see https://django-q.readthedocs.io/en/latest/tasks.html) ? In the later case the definition of...
@GDay I think there could ba an issue with that implementation, according to python docs signal.SIGALRM availability is Unix only. Also, there is the risk that the task itself redefines...
May be you could try to intercept the normal SIGTERM in the worker and do a clean shutdown there ? One issue is that `process.terminate()` does not send SIGTERM on...
If you don't have any strong task delay constraint you can increase the `poll` setting (default 200ms) to reduce the idle load. You can also increase `guard_cycle` (default 500ms), but...