DEV Community

Discussion on: Django Celery Beat: How to get the last time a PeriodicTask was run

Collapse
 
jheld profile image
Jason Held

Curious what is the scale of your tasks? Django celery beat was not necessarily built to handle load, though if you have separated this database to only be used for beat, that may help.

Collapse
 
vergeev profile image
Pavel Vergeev • Edited

My tasks are network-intensive, and are supposed to run for a month or so.

A separate database is a great idea for this kind of tasks, thanks!