From 89ade2e8cc8a52a47140de973e263c25cf9592f4 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 6 Apr 2026 10:54:44 -0500 Subject: [PATCH] Bump HRRR queue concurrency from 1 to 5 per pod 15 concurrent HRRR fetches across 3 pods to process the 16,870 contacts that need fresh HRRR data from NOAA. --- config/runtime.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index f1122b97..bbf8b4d7 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -118,7 +118,7 @@ if config_env() == :prod do # Production Oban: live scoring, polling, and on-demand QSO enrichment (no cron backfill) config :microwaveprop, Oban, # Per-pod concurrency (×3 pods = effective cluster total) - queues: [propagation: 1, commercial: 1, solar: 1, weather: 3, hrrr: 1, terrain: 2, iemre: 3, backfill_enqueue: 1], + queues: [propagation: 1, commercial: 1, solar: 1, weather: 3, hrrr: 5, terrain: 2, iemre: 3, backfill_enqueue: 1], plugins: [ {Oban.Plugins.Pruner, max_age: 3600 * 24}, {Oban.Plugins.Lifeline, rescue_after: 10 * 60 * 1000},