Hello How do I get around this error? 'Flow run pa...
# prefect-cloud
m
Hello How do I get around this error? 'Flow run parameters must be less than 512KB when serialized.'
n
hi @Michael Michael
'Flow run parameters must be less than 512KB when serialized.'
i think the error is likely pretty descriptive in this case, are you passing large flow run parameters? if so, you may want to consider passing a reference like
blob_path="<s3://my-bucket/my-biiig-data>"
to your flow and then loading the actual data in your flow
👍 1