I've recently been playing around with django and celery. One annoying thing during development is the fact that I have to restart the celery daemon each time I modify a task. When I'm developing, I usually like to use 'manage.py runserver' which automatically reloads the django framework on modifications to my apps.

Is there a way to add a hook to the reloading process that runserver does so that it automatically restarts the celery daemon I have running?

Alternatively, does celery have a similar monitor-and-reload-on-change mode that I should be using for development?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Django-supervisor works very well for this purpose. You can have it start the Django server, Celery, and anything else you need, and have different configurations for development and production servers. It also knows to reload the celery daemon when your code changes. https://github.com/rfk/django-supervisor

link|improve this answer
feedback

Celery didn't have any feature for reload code or for auto restart when the code change, than you have to restart it manually.

There isn't a way for add an hook, and I think not worthwhile of edit the source code of django just for perform a restart. Personally while I'm developing i prefere to see the output shell of celery that is decorated with color instead of tail the logs, is more readable.

link|improve this answer
feedback

I believe you can set CELERY_ALWAYS_EAGER to true.

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.