I want to give celery a try. I'm interested in a simple way to schedule crontab-like tasks, similar to Spring's quartz.

I see from celery's documentation that it requires running celeryd as a daemon process. Is there a way to refrain from running another external process and simply running this embedded in my django instance? Since I'm not interested in distributing the work at the moment, I'd rather keep it simple.

link|improve this question

You are trying to find a way around launching with python manage.py celeryd using celery-django? I don't believe there's any such option. – cptphil Feb 19 at 17:57
...not to forget python manage.py celerybeat if you also care about your periodical tasks... – lazerscience Feb 19 at 22:27
feedback

1 Answer

Add CELERY_ALWAYS_EAGER=True option in your django settings file and all your tasks will be executed locally. Seems like for the periodic tasks you have to execute celery beat as well.

link|improve this answer
This makes it so that tasks happen synchronously, and just seems to lose the whole effect I was hoping for... But thanks! – abyx Feb 21 at 21:06
You could try to execute celeryd as a process together with runserver, for example, from your code, using manage.py functionality. – eviltnan Feb 22 at 1:21
feedback

Your Answer

 
or
required, but never shown

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