If I want to run a flow every Saturday, would I us...
# prefect-server
k
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
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
gotcha, thanks!
👍 1