Kartik
11/11/2025, 2:24 PMMarvin
11/11/2025, 2:24 PMMarvin
11/11/2025, 2:27 PMschedules:
- cron: "30 7 * * *"
timezone: "UTC"
active: true
Option B — Every 24 hours anchored at 07:30 UTC (interval)
schedules:
- interval: 86400
anchor_date: "2025-09-09T07:30:00Z"
timezone: "UTC"
active: true
Quick notes:
- If you want a different time of day, I can adjust the cron (e.g., “0 0 * * *” for midnight) or the anchor date.
- With UTC, DST isn’t a concern. In DST-observing timezones, prefer cron to keep a consistent local clock time.
Docs for reference:
- Schedules concepts (Prefect 3)
- prefect.yaml and schedules
Would you like this to run at 07:30 UTC each day, or a different time?Kartik
11/11/2025, 2:28 PMKartik
11/11/2025, 2:30 PMMarvin
11/11/2025, 2:30 PMMarvin
11/11/2025, 2:30 PMschedules:
- cron: "0 0 * * *"
timezone: "UTC"
active: true
If you want 07:30 UTC each day:
schedules:
- cron: "30 7 * * *"
timezone: "UTC"
active: true
What time should it run each day in UTC?
Refs:
- Schedules concepts
- prefect.yaml and schedules