* 17 schedules
Minute Intervals
* In Plain English
Schedules that run every N minutes — common for heartbeat monitoring and polling.
* Scheduling Guide
Minute-interval schedules are the shortest reliable cron granularity — standard cron has no seconds field, so one minute is the minimum. */5 * * * * fires every 5 minutes; */1 * * * * (or * * * * *) fires every minute. The key question before choosing a sub-five-minute interval is whether the job will reliably complete within that window: a job that takes 3 minutes to run on a */2 * * * * schedule will overlap with itself, potentially causing data corruption or resource exhaustion. Use a lock or a concurrency guard to prevent overlapping executions. For truly sub-minute work, cron is the wrong tool — consider a queue worker with a visibility timeout or a dedicated task scheduler that supports second-level precision.
15_0_ * _ * _ * Every 15 minutes past the hour, all day long
View details →*/10 * * * * Every 10 minutes, all day
View details →h/15 * * * * Every fifteen minutes throughout the day.
View details →*/15 * * * * Every 15 minutes, all day
View details →*/2 * * * * Every two minutes, all day
View details →*/20 * * * * Every twenty minutes, all day
View details →*/30 * * * * Every 30 minutes
View details →0 0/5 14 * * ? Every 5 minutes past 2 PM, every day
View details →rate(5 minutes) Every 5 minutes, all day
View details →*/5 * * * * Every 5 minutes, all day long
View details →cron(0 0/1 * * ? *) Every minute, all day long
View details →*/1 * * * * Every minute, all day long
View details →H * * * * Every minute, with a randomized hour each time
View details →H(0-29)/10 * * * * Every 10 minutes for the first 30 minutes of each hour
View details →*/20 9-17 * * 1-5 Every 20 minutes on weekdays from 9 AM to 5 PM
View details →H/15 * * * * Every 15 minutes, distributed across jobs
View details →0 0,12 * * * Twice every hour, at the start and 12 minutes past
View details →Related Topics
Report Generation
Schedules for generating and distributing automated reports and email digests.
1703 schedules
Monthly Schedules
Cron jobs that run once a month, typically for billing, reports, or archival.
980 schedules
Weekly Schedules
Cron jobs that run once a week on a specific day.
564 schedules