↧
Answer by 2ps for How to route tasks to queues while using Docker
The issue is with the startup command. You've essentially started each worker serially, so celery -A app worker -l info -Q parser-n worker2 won't execute until after worker1 exits. The easiest way to...
View ArticleHow to route tasks to queues while using Docker
I’m setting up multiple workers which execute tasks based on given queues with in a docker environment. I'm unable to see queues that I have declared in settings.py I've seen that the worker command...
View Article