Sergey Moskvin
01/28/2025, 5:43 PMMarvin
01/28/2025, 5:43 PMprefect.yaml
file. This ensures that your flows are scheduled at precise intervals.
2. Flow Execution Control: Prefect does not natively skip "late" runs directly, but you can manage flow execution by controlling the concurrency and scheduling intervals. You might consider using conditional logic within your flow to check the current time against the expected schedule time and decide whether to proceed with execution.
3. Deployment Configuration: When deploying a flow, you can specify execution parameters that might help in managing concurrent runs or preventing overlaps.
For further details, you can explore the scheduling documentation here.
If you're looking for a more programmatic solution, you might need to implement custom logic within your flow to check against the current schedule and decide whether to execute based on the current time.