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 Ce
You can use something like this (Support in 3.0 )
g = group(compute_for_user.s(user.id) for user in users) g.apply_async()