What */20 * * * * does
The */20 in the minute field is a step value. It means 'starting at minute 0, then every 20 minutes'. The four remaining asterisks mean every hour, every day of the month, every month and every day of the week — so the job runs continuously, all year.
Within any given hour it fires at :00, :20, :40, giving 3 runs per hour and 72 per day.
The mistake people make
Dropping the */ changes the meaning completely. 20 * * * * runs once an hour, at minute 20 — not every 20 minutes. The slash is what turns a value into an interval.
Every 20 minutes gives 3 runs per hour, at :00, :20 and :40.
Frequently asked questions
What is the cron expression for every 20 minutes?
*/20 * * * *. The */20 step in the minute field fires the job every 20 minutes, starting at minute 0 of each hour.
How many times does */20 * * * * run per day?
72 times — 3 per hour, 24 hours a day.
Related cron expressions
Browse the full cron expression reference, or build your own expression from scratch.