What’s the best practice to provide input files to a Prefect run?
Should I simply upload to e.g. S3 / Azure Files and then pass a URI to the flow (a workflow parameter)?
Or perhaps the
prefect
CLI has support for doing both in the same command?
✅ 1
n
Nate
05/18/2023, 5:16 PM
do you mean just interacting with the files from the flow run?
bc if so, then yeah passing a reference to the blob in question as a flow run param sounds like the way to go
o
Ofir
05/18/2023, 5:30 PM
Yeah, sending input data (e.g. a CSV / Parquet file) to a Prefect Workflow
n
Nate
05/18/2023, 5:44 PM
yep ok I would send the reference as a parameter then 👍