Cron for every 3 minutes
*/3 * * * *Every 3 minutes, every hour, every day
What this schedule does
The expression */3 * * * * fires once every 3 minutes of every hour. Use it for health checks, queue drainers, and cache warmers that must stay fresh without a dedicated worker loop. On GitHub Actions the practical floor is five minutes; sub-five-minute jobs belong on crontab, Kubernetes, or a long-running process. Paste this into the builder to see the next ticks in your timezone.
Next 5 runs (UTC)
Times below are computed for UTC. Open the builder to preview another timezone.
- Thu, 20 Aug 2026, 17:39 UTC
- Thu, 20 Aug 2026, 17:42 UTC
- Thu, 20 Aug 2026, 17:45 UTC
- Thu, 20 Aug 2026, 17:48 UTC
- Thu, 20 Aug 2026, 17:51 UTC
Copy-paste snippets
GitHub Actions
UTC only. Quote the expression so YAML keeps the stars.
on:
schedule:
- cron: '*/3 * * * *'Kubernetes
CronJob spec.schedule. Kubernetes uses the timezone of the kube-controller-manager unless you set .spec.timeZone.
apiVersion: batch/v1
kind: CronJob
metadata:
name: job
spec:
schedule: "*/3 * * * *"
jobTemplate:
spec:
template:
spec:
restartPolicy: OnFailure
containers:
- name: job
image: busybox
args: ["echo", "run"]AWS EventBridge
Six fields: minutes hours day-of-month month day-of-week year. Use ? in either day-of-month or day-of-week.
cron(*/3 * * * ? *)Quartz
Quartz is seconds-first (6 or 7 fields). Day-of-week names are MON, TUE, … and ? is required in one of the day fields.
0 */3 * * * *Vercel Cron
{
"crons": [
{
"path": "/api/cron",
"schedule": "*/3 * * * *"
}
]
}crontab
*/3 * * * * /usr/local/bin/jobnode-cron
import cron from 'node-cron';
cron.schedule('*/3 * * * *', () => {
// job
});Spring @Scheduled
Spring uses 6 fields by default (seconds first) unless you set spring.task.scheduling.cron.expression.
@Scheduled(cron = "0 */3 * * * *")
public void run() {
// job
}