is it possible to pass result data between prefect...
# prefect-community
a
is it possible to pass result data between prefect tasks that are run on different agents? Or does this require stashing the intermediate data in something like a file on S3
e.g. I have a parent flow that calls two child flows.
ChildFlowOne
runs on
Agent1
. The results of that should then be ingested by
ChildFlowTwo
, which gets triggered by
Agent2
r
Hey Aaron!! I believe something like this is possible using different run configs for each of the child flows. This Discourse post has more detail and a 1.0 example that I think could be helpful for your use case: https://discourse.prefect.io/t/can-i-run-a-flow-of-flows-that-triggers-each-child-flow-on-a-different-machine/180
👀 1