I want to create multiple periodic tasks by a loop, but only the last of the list was created.For example:
@app.on_after_finalize.connect
def setup_periodic_tasks(sender, **kwargs):
a = [1,3,4,7,8,10]
for i in a:
sender.add_periodic_task(crontab(hour=i), task.s())
In the task schedule when I run celery beat -A tasks - l debug, I see only the task executed at 10 o'clock. Why?
The tasks are stored in a dictionary by key. The key is given by the
name
argument or therepr()
of thesig
argument. Here thesig
argument istask.s()
and it is the same for every loop. So as it goes through the loop it overwrites the same key for each schedule. To fix provide a unique name:Here is the relevent source from
celery
:edit: As pointed out by @GharianiMohamed the docs state that the
hour
argument ofchrontab
can be "a (list of) integers from 0-23 that represent the hours of a day of when execution should occur." So a better way of handling this to remove the loop entirely: