From d63653e9a1a79f2eb185e6b7aa5c5a7d6c8c3cb6 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 6 Apr 2026 17:04:11 -0500 Subject: [PATCH] Bump terrain queue concurrency to 3 per pod --- config/runtime.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index 0dc1d9b2..384d6ff8 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -132,7 +132,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: 5, terrain: 2, iemre: 3, backfill_enqueue: 1], + queues: [propagation: 1, commercial: 1, solar: 1, weather: 3, hrrr: 5, terrain: 3, iemre: 3, backfill_enqueue: 1], plugins: [ {Oban.Plugins.Pruner, max_age: 3600 * 24}, {Oban.Plugins.Lifeline, rescue_after: 10 * 60 * 1000},