Can I bucket tasks together for the purposes of pa...
# prefect-community
j
Can I bucket tasks together for the purposes of parallel execution with a Dask Executor? For example, Tasks 1-9 are dependent (3 depends on 2, 2 depends on 1) while Task 10 can be run simultaneous with the entire group of tasks 1-9.
k
I know the intent but I think the answer is not easily. Like you could make a generic task with an if-else and then just fork to do the different functions and that would work
👍 1