| 12345678910 |
- # IRDB scheduler — busybox crond schedule.
- #
- # Drives /internal/jobs/tick once a minute. The api dispatches whichever
- # periodic jobs are due (recompute-scores, cleanup-audit, enrich-pending,
- # refresh-geoip). job_locks mediates between replicas so duplicate ticks
- # are correct but wasteful.
- #
- # -m 280 caps the request below the 1-minute cadence so we never queue
- # overlapping ticks.
- * * * * * curl -sf -m 280 -X POST -H "Authorization: Bearer $INTERNAL_JOB_TOKEN" http://api:8081/internal/jobs/tick > /dev/null
|