https://prefect.io logo
z

Zach

11/06/2020, 5:11 PM
Is there some sort of standard practice with event driven prefect flows? Say I have some sort of data-cleaning-flow in prefect that takes in a data file, cleans it, and stores the new file in cloud storage. I have two other flows, A and B, that I want to have triggered by the completion of the data-cleaning-flow. I want them to more-or-less subscribe to the data-cleaning-flow. Is there a prefect-esque way of doing this, or is my only option to create some external machinery that detects the successful completion of the data-cleaning-flow and keeps track of all the flows that I want to have triggerd by that flow.
You can use all of the Prefect workflow semantics to trigger new flows and even watch them run and trigger new flows based on that result!
👍 1
z

Zach

11/06/2020, 6:06 PM
Thank you!