Leon Kozlowski
01/13/2023, 4:46 PMparameter_defaults
(example below)
abc = IntervalClock(
start_date=pendulum.datetime(2022, 1, 12, 3, 30, 0, tz="America/New_York"),
interval=datetime.timedelta(hours=24),
parameter_defaults={"mart": "abc"},
)
xyz = IntervalClock(
start_date=pendulum.datetime(2022, 1, 12, 3, 30, 0, tz="America/New_York"),
interval=datetime.timedelta(hours=24),
parameter_defaults={"mart": "xyz"},
)
Is there a way have a flow use multiple schedules + to pass parameter_defaults
to a schedule in prefect 2.0?Nate
01/13/2023, 8:06 PMabc
and another with xyz
, each of which get their own default parametersLeon Kozlowski
01/13/2023, 8:06 PM