Is it possible to configure Celery Workers to handle multiple queues with respective concurrency? #42899
-
Is it possible to configure Celery Workers to handle multiple queues with respective concurrency? Example: Worker 1:
I would like to avoid running multiple workers per queue if possible, if not all good! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
AFAIK, Celery doesn't natively support assigning different concurrency levels to each queue on the same worker out of the box. You would typically run multiple workers with specific concurrency settings for each queue. Check this thread. It might helps. |
Beta Was this translation helpful? Give feedback.
AFAIK, Celery doesn't natively support assigning different concurrency levels to each queue on the same worker out of the box.
You would typically run multiple workers with specific concurrency settings for each queue.
Check this thread. It might helps.