I am using celery-django to queue tasks on my site backend. I am trying to create a setup where I have two queues named "low" and "high" and two workers W1 and W2. I want them to consume the tasks from the queue in the following way:
W1 <-- low, high
W2 <-- high
Normally it can be done like this.
Open terminal 1 and enter
$celery worker -n W1 -Q low,high
Open terminal 2 and enter
$celery worker -n W2 -Q high
However I am trying to do the same via celeryd daemon.
I am following the steps given in the link: http://celery.readthedocs.org/en/latest/tutorials/daemonizing.html#example-configuration But the available options don't seem enough to fit the requirement.
Please help me with some configs that I am unaware of which could make it possible. I would prefer not to run multiple daemons or use additional tools like supervisord unless really necessary (Maybe you could advice me on this as well).