What if I have a workflow that looks like this?
- Fetch the number of objects
- For each object, enqueue one processing job
- After all objects have been processed, run one final job
Is this something that's supported? A practical example is processing all of a user's Github repos. You don't know how many there are in advance, and you want to be able to let individual jobs fail independently.
It doesn't seem like defining superworkers is the right pattern.