Hi, quick question about this workflow, from the d...
# ask-community
r
Hi, quick question about this workflow, from the diagram it appears flow B and C are running 'in-parallel' but when I run this flow B and C are actually one after other with C running after they both complete. The flow of flows works great but does not appear to run the flow in true parallel... https://docs.prefect.io/core/idioms/flow-to-flow.html#scheduling-a-flow-of-flows
k
Hi @Rob Landis, this should run in parallel if you use the
LocalDaskExecutor
. The default executor is just sequential and single-threaded
🙌 1
We’d welcome a PR or note in the docs for that if you are interested. I think that is the second time I’ve seen this question 😆
r
Will do and testing it now!