Cristhian Garcia
Cristhian Garcia
Yes, here is the code snippet with some other settings:  ```python CELERYD_CONCURRENCY = 2 # worker_concurrency CELERYD_MAX_TASKS_PER_CHILD = 100 # worker_max_tasks_per_child CELERYD_POOL = 'threads' # worker_pool ``` See https://celery-safwan.readthedocs.io/en/latest/userguide/configuration.html#new-lowercase-settings...
Some parameters cannot be added this way, like the queues but can be added to the command line args. But if we are going to add command line arguments and...
This is the POC: https://github.com/overhangio/tutor/pull/1131
### Customization I don't think we would need two filters, I think the lms and cms queues are already very similar, so we can just use one filter for it:...
I also imagine having multiple queues only on Kubernetes deployment, not in local installations
@regisb I've updated the POC to use the two new filters to define the celery command: https://github.com/overhangio/tutor/pull/1134 btw, one issue with the `--exclude-queue` setting is that it only excludes 1...
@regisb I'm working on improving celery defaults, here is the PR to include the without-gossip and without-single parameters and to increase the heartbeat interval from 2s to 60s. Are there...