A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

How to make Celery to perfectly handle long-time tasks?

Best Answers

Hi. these are few considerations. 1) You can use celerybeat to schedule periodic tasks . Read this http://celery.readthedocs.org/en.... 2) Have two queues , lets say short_jobs, long_jobs and then have two or more workers , few listen to small_jobs and others listen to long_jobs. read more

The Celery worker process will log all activity, so monitor it for errors (usually /var/logs/celeryd.log). Try to make sure task functions gracefully handle errors, so that no data is ever lost. The celery-django package manges your Celery commands and configuration, adds an admin tool, and discovers tasks.py automatically in all your apps. read more

Encyclopedia Research

Wikipedia:

Related Facts

Related Types