Cron Every 7 Minutes

Set up a cron job that runs every 7 minutes using */7 * * * *. Detailed field breakdown explaining prime-number interval behavior in cron scheduling.

Cron Expression

*/7 * * * *

Field Breakdown

FieldValueMeaning
Minute*/7Every 7th minute
Hour*Every hour (0–23)
Day of Month*Every day of the month (1–31)
Month*Every month (1–12)
Day of Week*Every day of the week (Sun–Sat)

Detailed Explanation

The cron expression */7 * * * * schedules a task to run at every minute that is divisible by 7, continuously throughout every day.

Field-by-field breakdown:

  • */7 (Minute): Every 7th minute, starting from minute 0. The step value /7 causes execution at minutes 0, 7, 14, 21, 28, 35, 42, 49, and 56 within each hour.
  • * (Hour): Every hour from 0 through 23. No restriction on which hour.
  • * (Day of Month): Every day from 1 through 31. No restriction on the day of the month.
  • * (Month): Every month from January through December. No restriction on the month.
  • * (Day of Week): Every day of the week from Sunday through Saturday. No restriction on the day.

This means your task will execute 9 times per hour (at minutes 0, 7, 14, 21, 28, 35, 42, 49, 56), with a shorter 4-minute gap between minute 56 and the next hour's minute 0. This results in approximately 216 executions per day. Using a prime number like 7 as a step value is a deliberate strategy: it reduces the chance of your task coinciding with other cron jobs that typically use round-number intervals like 5, 10, 15, or 30 minutes. This desynchronization technique can help distribute load more evenly across shared infrastructure. This expression is supported by standard cron on Linux/macOS, as well as cloud services like AWS CloudWatch, Google Cloud Scheduler, and GitHub Actions.

Use Case

Great for a cache invalidation job that uses a prime-number interval to avoid synchronizing with other periodic tasks and causing resource contention spikes.

Try It — Interactive Builder

Every 7 minutes

**/5*/10*/15*/300
**/2*/3*/6*/120
*1151,15*/2
*11,4,7,101,7
*1-50,615

Next 10 Executions

1.Sat, Aug 8, 2026, 07:49 AM
2.Sat, Aug 8, 2026, 07:56 AM
3.Sat, Aug 8, 2026, 08:00 AM
4.Sat, Aug 8, 2026, 08:07 AM
5.Sat, Aug 8, 2026, 08:14 AM
6.Sat, Aug 8, 2026, 08:21 AM
7.Sat, Aug 8, 2026, 08:28 AM
8.Sat, Aug 8, 2026, 08:35 AM
9.Sat, Aug 8, 2026, 08:42 AM
10.Sat, Aug 8, 2026, 08:49 AM

Ctrl+Shift+C to copy expression

Customize this expression