Hello! I wanted to try and see if anyone has suggestions/experience with this problem.
Let's say I have workflows that are called through a deployment, and the output of these workflows is a bunch of files all collected in a folder. What is the best way to pass on these files as the persisted result of the run to successive flows that are not run on the same machine? We specifically use S3. Initially, the dimplest solution was to just put these files in a bucket and pass the URI to the folder, but this is not fully reliable, as the folder might be deleted while Prefect still sees the cached result for the URI of the deleted folder, thus not repeating the operations and effectively bugging the workflow. Are there better strategies to achieve this? Thank you! :)