I have a cluster of three machines. I want to run celery beat on those. I have a few related questions.
- Celery has this notion of a persistent scheduler. As long as my schedule consists only of crontab entries and is statically defined by
CELERYBEAT_SCHEDULE, do I need to persist it at all? - If I do, then do I have to ensure this storage is synchronized between all machines of the cluster?
- Does
djcelery.schedulers.DatabaseSchedulerautomatically take care of concurrent beat daemons? That is, if I just run three beat daemons withDatabaseScheduler, am I safe from duplicate tasks? - Is there something like
DatabaseSchedulerbut based on MongoDB, without Django ORM? Like Celery’s own MongoDB broker and result backend.