Alex Furrier
06/01/2021, 8:13 PMtest-flow-of-flows:
@echo 'Running flow A'
@python flows/flow_a.py \
param1=foo \
param2=bar
@python flows/flow_b.py \
param1=foo \
param2=bar
@python flows/flow_c.py \
param1=baz \
param2=bar
I would like to combine those into a single Flow run with shared parameters passed to the flow runs. That seems to be what's described in this documentation. That mentions registering flows using the orchestration API to specific projects. So far I've been running flows without that. Is there any way to create a flow of flows with local importing of flows or do they have to be registered with the orchestration API to do so?Kevin Kho
StartFlowRun
task that the main flow will use to call Flows that are already registered. I think the way you have right now would be the only way, or if you had a python script that did the same thing by calling the shell commands. You’re aware that Prefect Cloud gives 10000 task runs for free each month right?Alex Furrier
06/01/2021, 8:25 PMKevin Kho
ShellTask
Prefect has to start thesr scripts