Cron

Cron for Every 30 Seconds (workaround)

Standard cron has no sub-minute resolution — this needs two entries a minute apart, or a scheduler that supports seconds.

* * * * *

Field by field

A cron expression has 5 fields, in order: minute, hour, day-of-month, month, day-of-week. * * * * * breaks down as: minute = *; hour = *; day-of-month = *; month = *; day-of-week = *

Want to build a different schedule, or check how a related expression behaves? Open this exact expression in the full Cron Expression Builder to edit it directly.

Related

Related