2024-04-02 11:37:38 -04:00
|
|
|
# config/schedule.yml
|
|
|
|
|
|
2024-10-24 10:59:15 -04:00
|
|
|
bulk_stats_calculating_job:
|
2024-12-06 11:32:45 -05:00
|
|
|
cron: "0 */1 * * *" # every 1 hour
|
2024-10-24 10:59:15 -04:00
|
|
|
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
|
2024-10-03 09:12:19 -04:00
|
|
|
|
|
|
|
|
watcher_job:
|
|
|
|
|
cron: "0 */1 * * *" # every 1 hour
|
|
|
|
|
class: "Import::WatcherJob"
|
2024-10-03 09:27:30 -04:00
|
|
|
queue: imports
|
2024-10-29 06:52:23 -04:00
|
|
|
|
|
|
|
|
app_version_checking_job:
|
|
|
|
|
cron: "0 */6 * * *" # every 6 hours
|
|
|
|
|
class: "AppVersionCheckingJob"
|
|
|
|
|
queue: default
|
2024-12-05 11:37:50 -05:00
|
|
|
|
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-09 15:25:56 -04:00
|
|
|
|
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
|
2025-09-08 14:46:30 -04:00
|
|
|
|
|
|
|
|
daily_track_generation_job:
|
|
|
|
|
cron: "0 */4 * * *" # every 4 hours
|
|
|
|
|
class: "Tracks::DailyGenerationJob"
|
|
|
|
|
queue: tracks
|
2025-09-18 12:29:46 -04:00
|
|
|
|
|
|
|
|
nightly_reverse_geocoding_job:
|
|
|
|
|
cron: "15 1 * * *" # every day at 01:15
|
|
|
|
|
class: "Points::NightlyReverseGeocodingJob"
|
2025-09-29 16:27:07 -04:00
|
|
|
queue: reverse_geocoding
|