hi I am a little confused over celeryd and celeryd_multi - what is the difference between this two? I mean, so far I have been using python manage.py celeryd, but i came across celeryd_multi today and couldn't find any explanation. According to the docs, -c indicates Number of child processes processing the queue, so if thats the case, whats celeryd_multi's usage?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

celeryd command launches single celery worker. celeryd_multi command manages multiple celery workers. With celeryd_multi you can start/stop/restart multiple celery workers.

celeryd_multi can be used to manage multiple celeryd workers listening to different queues:

$ celeryd-multi start image video data -c 3

This command is equivalent to:

$ celeryd -n image.myhost -c 3
$ celeryd -n video.myhost -c 3
$ celeryd -n data.myhost -c 3
link|improve this answer
feedback

I don't know the answer but I found this to help shed some light. http://hustoknow.blogspot.com/2011/01/celeryd-multi.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.