Reference

Cron

Scheduled jobs and their cron expressions.
remy-admin cron

Scheduled jobs are methods that run on a cron expression, declared in the app and synced on deploy. list shows every job with its schedule and recent run history, plus a status (active, paused, or blocked) and a count of consecutive failures, so a job that has started failing is visible before it is noticed elsewhere. A run's id is its request-log id, so a failed run is one lookup away from its full stack trace.

run triggers a job immediately without touching its schedule. It returns a request id right away, and the job finishes in the background, so the result is read back from the request log rather than watched live in the terminal.

2 entries