Pedro Machado
05/04/2020, 6:39 PMexecution_date
.
I am trying to figure out how I could implement this in Prefect. It seems to me that I could have a single parametrized flow but I am not sure how the parameters would be provided and the flow scheduled. Thanks!Kyle Moon-Wright
05/04/2020, 7:10 PMparameter_defaults
kwarg on each clock. This can potentially consolidate your flows based on similar schedules/parameters. Furthermore, you can change your parameters in the UI under the Flow’s Run tab to configure on the fly, rather than changing the parameter in the code.
I think your migrated Prefect workflow can be as similar/different from your Airflow workflow as you like, but using the parameters values on each clock in this way is definitely Prefect-forward.Pedro Machado
05/04/2020, 7:57 PMKyle Moon-Wright
05/04/2020, 9:10 PM