Alex Souvannakhot
05/26/2021, 8:33 AMemre
05/26/2021, 10:47 AMStartFlowRun
is a good fit, You could trigger job B from job A, and pass parameters to job B. Since this starts a new flow, these jobs can easily spread out to your worker cluster.
3. Scaling Out - Prefect runs on Dask, which is designed to support distributed computing. If you choose to do so, each individual flow can run on a cluster of workers. Prefect has a good amount of options here, including running on an existing cluster or starting a temporary cluster on a cloud provider just for that flow.
4. Serve - That is not the responsibility of prefect, it isn't designed to continuously run and serve based on requests. However, setting up a serving layer, and feeding the serving layer on a schedule / trigger is very much viable.emre
05/26/2021, 10:53 AM