I'm running celeryd as a daemon, but I sometimes have trouble stopping it gracefully. When I send the TERM signal and there are items in the queue (in this case service celeryd stop) celeryd will stop taking new jobs, and shut down all the worker processes. The parent process, however, won't shut down.

I've just ran into a scenario where I had celeryd running on two separate worker machines: A and B. With about 1000 messages on the RabbitMQ server, I shut down A, and experienced the situation I've explained above. B continued to work, but then stalled with about 40 messages left on the server. I was however, able to stop B correctly.

I restarted B, to see if it would take the 40 items off the queue, but it would not. Next, I hard killed A, after which B grabbed and completed the tasks.

My conclusions is that the parent process has reserved the 40 items from our RabbitMQ server for its children. It will reap the children correctly, but will not release the items back to RabbitMQ unless I manually kill it.

Has anyone experienced something similar?

I'm running Celery 2.2.2

link|improve this question

most probably some children processes are still hanging on IO operations, I've had similiar issues when trying to stop celeryd when there was an I/O operation - process stuck and only kill -9 helped. not sure if this may help, but I'll suggest to experimnt if running celeryd with gevent or Eventlet (celeryd -P eventlet) as threads will work for you. – Jerzyk Mar 22 '11 at 14:22
feedback

1 Answer

up vote 2 down vote accepted
+100

I believe this is related to:

https://github.com/ask/celery/issues#issue/264

Setting

CELERY_DISABLE_RATE_LIMITS = False

in your settings.py file should work.

link|improve this answer
Whoa! How'd you figure that out? – Zach Mar 28 '11 at 14:04
feedback

Your Answer

 
or
required, but never shown

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