Hmm, maybe someone in here can help me since we are using Prefect Cloud currently.
Say I have 1000 flows that all share the same lib module that gets uploaded to our S3 storage block during the normal prefect deployment build/apply step.
Do I need to re-deploy every flow whenever the shared module changes (so we can track the versions)?
Is there a cleaner, prefect approved way to do this?:
https://prefect-community.slack.com/archives/C048ZHT5U3U/p1687204304186759
n
Nate
06/21/2023, 9:09 AM
in that case I'd probably want to publish the lib as a private package that can be specified as a dependency of any flow that should use it, then you just have to publish new versions of the package and the deployed flows will just install it
Nate
06/21/2023, 9:10 AM
many ways to go about it, but here's an example tutorial