dawarich/config/schedule.yml

42 lines
983 B
YAML
Raw Permalink Normal View History

# config/schedule.yml
bulk_stats_calculating_job:
cron: "0 */1 * * *" # every 1 hour
class: "BulkStatsCalculatingJob"
2024-10-03 09:27:30 -04:00
queue: stats
2024-07-24 14:25:16 -04:00
area_visits_calculation_scheduling_job:
2024-08-05 15:23:08 -04:00
cron: "0 0 * * *" # every day at 0:00
2024-07-24 14:25:16 -04:00
class: "AreaVisitsCalculationSchedulingJob"
2024-10-03 09:27:30 -04:00
queue: visit_suggesting
2024-08-05 15:23:08 -04:00
2025-03-09 15:07:39 -04:00
visit_suggesting_job:
cron: "5 0 * * *" # every day at 00:05
class: "BulkVisitsSuggestingJob"
queue: visit_suggesting
watcher_job:
cron: "0 */1 * * *" # every 1 hour
class: "Import::WatcherJob"
2024-10-03 09:27:30 -04:00
queue: imports
app_version_checking_job:
cron: "0 */6 * * *" # every 6 hours
class: "AppVersionCheckingJob"
queue: default
2024-12-06 10:52:36 -05:00
cache_preheating_job:
cron: "0 0 * * *" # every day at 0:00
class: "Cache::PreheatingJob"
queue: default
2025-07-22 14:25:44 -04:00
# tracks_cleanup_job:
# cron: "0 2 * * 0" # every Sunday at 02:00
# class: "Tracks::CleanupJob"
# queue: tracks
2025-07-12 05:21:38 -04:00
place_name_fetching_job:
cron: "30 0 * * *" # every day at 00:30
2025-07-12 05:30:51 -04:00
class: "Places::BulkNameFetchingJob"
2025-07-12 05:21:38 -04:00
queue: places