We're implementing a workflow with Celery. First we need to run some tasks in parallel, and when they are all finished we need to run a single task.
It seems we can use chord, or group and chain:
chord(tasks, task)
vs
group(tasks) | task
What is the exact difference between those two? They seem to do the same thing.