Cron Expression: * * * * * *

Every second (only valid in 6-field cron flavors like Quartz / Spring / AWS EventBridge with seconds enabled).

Field Breakdown

FieldValue
Second*
Minute*
Hour*
Day of Month*
Month*
Day of Week*

Common Use Case

High-frequency polling - usually a sign you should use a queue or stream instead.

Equivalents in Popular Schedulers

crontab (Linux/macOS)

* * * * * * /path/to/your/script.sh

GitHub Actions (.github/workflows/*.yml)

on:
  schedule:
    - cron: '* * * * * *'

AWS EventBridge (cron format)

cron(* * * * * *)    # Note: AWS uses 6 fields with year

Kubernetes CronJob

spec:
  schedule: "* * * * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →