Paul Gierz
03/07/2022, 5:22 PMKevin Kho
03/07/2022, 5:23 PMPaul Gierz
03/07/2022, 5:28 PMKevin Kho
03/07/2022, 5:29 PMPaul Gierz
03/07/2022, 5:30 PMKevin Kho
03/07/2022, 5:36 PMflow
is a decorator in Orion but context manager in Prefect 1. Anyway, it is just
with Flow(..) as flow:
...
flow.executor = DaskExecutor(..)
or
with Flow(..., executor=DaskExecutor()):
...
and you can find more info here
There is no register for Orion because Deployments is the replacement which is not 1:1 with registrations of Flows. You can find more info here . But yes, still not production readyPaul Gierz
03/07/2022, 5:55 PMKevin Kho
03/07/2022, 5:57 PM