https://prefect.io logo
Title
r

Ruslan

01/15/2021, 10:09 AM
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

Greg Roche

01/15/2021, 10:22 AM
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

Ruslan

01/15/2021, 10:28 AM
LocalDaskExecutor helped, thank you very much!
šŸ‘ 1