Hi! Iā€™m using cloud version. Made simple flow with...
# prefect-server
r
Hi! Iā€™m using cloud version. Made simple flow with 10 tasks inside. But the starting one by one. It is cloud restrictions or how to make tasks working in parallel inside flow?
g
The default executor (
LocalExecutor
) doesn't run tasks in parallel. Have you set the executor for your flow to a Dask executor? https://docs.prefect.io/orchestration/tutorial/flow_config.html#enable-parallel-execution If you've done that and the tasks still aren't running in parallel then you probably also need to change your flow's logic, most likely by mapping over the tasks: https://docs.prefect.io/core/concepts/mapping.html
šŸš€ 2
upvote 1
šŸ‘€ 1
r
LocalDaskExecutor helped, thank you very much!
šŸ‘ 1