Open
Description
- I want to run an one-off task at a certain datetime.
- Celery has
eta
, but does not recommend using it for scheduling a lot of tasks. - So, using db-backed beat with clocked schedule seems to be the best option.
So why does every clocked task require creating a row in database using ClockedSchedule
model? That's seems like waste of resources to me since I'm planning on scheduling some hundreds of thousands of tasks.
PeriodicTask
already has start_time
attribute, why don't we use that?
Whats the best way to schedule one-off tasks that will run at specified time?
Metadata
Metadata
Assignees
Labels
No labels