Hi! I want to use prefect2 to execute a flow and t...
# ask-community
j
Hi! I want to use prefect2 to execute a flow and then wait for an irregular amount of time before executing it again. Is there a way to implement this?
1
c
With pre-built tooling in prefect? Not really - you can create schedules , or you can create flow runs dynamically. If you want to be random, you would need to run a flow and randomize a future start time
This contains rrules and schedules documentation
j
Ok, thank you very much.