Hi, I use prefect for flow recurring at a interval...
# ask-community
m
Hi, I use prefect for flow recurring at a interval using deployments. But now I have a list of thousands of specific times e.g. 2025/3/25 at 112312:303 and I need to schedule a flow to run at those exact times. Is this somehow possible? Thank you for your advice.
j
hey, if you know all the times you'd like to run I would recommend using
run_deployment
and passing a start interval to do this (or the CLI equivalent
prefect deployment run <name> --start-at ...
)
Schedules for deployments are more for regularly recurring intervals like you mentioned