https://prefect.io logo
Title
m

martin hablak

06/29/2022, 8:38 AM
šŸ‘‹ Hello, team! I would like to get recommendation. I’m attracted to use prefect but not so much to run jobs on agent but as general programming model to create reusable task which are then in turn orchestrated in flows. Problem I have is that I would like to run flow like this:
flow_run_reference = flow.run()
for result in flow_run_reference.task_results:
    yield result.json()
basically stream tasks result using say fastapi as soon as it finishes not waiting until whole flow finish
āœ… 1
a

Anna Geller

06/30/2022, 11:53 AM
I'd recommend checking Prefect 2.0 - you can run your flows from anywhere and do a lot on top of that, plus the entire orchestration engine is all already based on FastAPI
šŸ‘€ 1
m

martin hablak

06/30/2022, 3:04 PM
thank you Anna, I will check it
šŸ™Œ 1