In Prefect 2 (self hosted), Is it possible to sche...
# ask-community
d
In Prefect 2 (self hosted), Is it possible to schedule a flow to run at extremely specific times each day? For example:
Copy code
9:30am
11:15am
1:30pm
2:05pm
3:07pm
etc… This used to be possible in Prefect 1 using the
clocks
attribute of a
schedule
by providing a list of
CronClock
but in Prefect 2 with only
interval
,
cron
, and
rrule
schedules being available, I can’t see any way to do this in a single deployment. Unless you can somehow add multiple schedules to a Deployment.
b
Just create multiple deployments with different schedules. Same thing.
👍 1