From b4012baf89ffb3d2a09cfbaf84f2ecde2c875fbc Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 3 Apr 2026 09:15:04 -0500 Subject: [PATCH] Increase Oban queue concurrency for backfill throughput --- config/runtime.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index c12d17e0..4a3c4cd7 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -117,7 +117,7 @@ if config_env() == :prod do # Production Oban: live scoring, polling, and on-demand QSO enrichment (no cron backfill) config :microwaveprop, Oban, - queues: [propagation: 1, commercial: 2, solar: 1, weather: 5, hrrr: 5, terrain: 2, iemre: 5], + queues: [propagation: 1, commercial: 2, solar: 1, weather: 10, hrrr: 10, terrain: 5, iemre: 10], plugins: [ {Oban.Plugins.Pruner, max_age: 3600 * 24}, {Oban.Plugins.Lifeline, rescue_after: 30 * 60 * 1000},