Cron expression for every 7 minutes

The cron expression to run a job every 7 minutes is */7 * * * *. See the next run times in your timezone, plus the uneven-interval gotcha this schedule hides.

*/7minute
*hour
*day
*month
*weekday

*/7 does not divide the minute range evenly

Steps restart each cycle, so the gap between 56 and the next run is 4, not 7. Use an explicit list for an even spacing.

In Plain English

What your cron expression actually means.

Every 7 minutes, every hour, every day

Upcoming Executions

Preview the next 50 times this schedule will trigger.

Calculating…

About */7 * * * *

*/7 * * * * is the usual answer for "every 7 minutes", but it isn't evenly spaced. Steps restart at the top of every hour, so the last run of one hour and the first of the next are closer together than 7 minutes. The warning below shows the exact gap.

Cron reads the five fields as minute hour day month weekday. For this schedule that breaks down as:

  • */7 minute
  • * hour (every value)
  • * day of month (every value)
  • * month (every value)
  • * day of week (every value)

Repeating intervals

Build a custom cron expression →