https://prefect.io logo
k

kevin

01/04/2021, 9:18 PM
If I want to run a flow every Saturday, would I use an
IntervalClock
or a
CronClock
? Which is more in line with what Prefect expects?
c

Chris White

01/04/2021, 9:20 PM
whenever you have a fixed day or time that you want something to run, I recommend the
CronClock
- it’s easier to reason about vs. the
IntervalClock
that is based on duration elapsed from a fixed
start_date
and is harder to update / validate
k

kevin

01/04/2021, 9:22 PM
gotcha, thanks!
👍 1
2 Views