When running multiple engine instances, the kv adapter does not provide reliable distributed locking — the same cron job may execute on every instance simultaneously. Use the redis adapter for multi-instance deployments.
Built-in adapter using process-local locks. Suitable for single-instance deployments.
Cron expression defining the schedule. Accepts 6-field (second minute hour day month weekday) or 7-field (second minute hour day month weekday year) format — the year field is optional.
* * * * * * [*]│ │ │ │ │ │ ││ │ │ │ │ │ └── Year (optional, * for any)│ │ │ │ │ └──── Day of week (0–7, Sun=0 or 7)│ │ │ │ └────── Month (1–12)│ │ │ └──────── Day of month (1–31)│ │ └────────── Hour (0–23)│ └──────────── Minute (0–59)└──────────── Second (0–59)
Both "0 0 * * * *" (6-field) and "0 0 * * * * *" (7-field) are valid and equivalent.