task

Celery task that runs more tasks

Celery task that runs more tasks Question: I am using celerybeat to kick off a primary task that kicks of a number of secondary tasks. I have both tasks written already. Is there a way to easily do this? Does Celery allow for tasks to be run from within tasks? My example: @task def compute(users=None): …

Total answers: 4