Hello! I have a few flows that take dataframe as i...
# prefect-community
p
Hello! I have a few flows that take dataframe as input and return a transformed dataframe. I would like to create an orchestrator flow that calls the flows using
run_deployment
. What would be the most efficient way of passing the dataframes around?
j
My first thought is to use
<http://df.to|df.to>_parquet
as you go to save out the file in compressed form and read it in at later steps.
1
p
thanks!