From 2da061201dec95f5699bb6ab6da9d78884ddfb52 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Tue, 31 Mar 2026 16:00:04 -0500 Subject: [PATCH] Disable ASOS adjustment cron, rely solely on HRRR hourly scoring ASOS re-scoring was upserting 458K records every 10 min while losing the refractivity gradient (the key ducting indicator). HRRR hourly provides all surface variables plus vertical profile data. --- config/config.exs | 3 +-- config/runtime.exs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/config/config.exs b/config/config.exs index f09ea41c..eea5e9b5 100644 --- a/config/config.exs +++ b/config/config.exs @@ -53,8 +53,7 @@ config :microwaveprop, Oban, {"0 8 * * *", Microwaveprop.Workers.SolarIndexWorker}, {"*/30 * * * *", Microwaveprop.Workers.QsoWeatherEnqueueWorker}, {"*/5 * * * *", Microwaveprop.Commercial.PollWorker}, - {"5 * * * *", Microwaveprop.Workers.PropagationGridWorker}, - {"*/10 * * * *", Microwaveprop.Workers.AsosAdjustmentWorker} + {"5 * * * *", Microwaveprop.Workers.PropagationGridWorker} ]} ] diff --git a/config/runtime.exs b/config/runtime.exs index 41193c66..b2642675 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -75,8 +75,7 @@ if config_env() == :prod do crontab: [ {"0 8 * * *", Microwaveprop.Workers.SolarIndexWorker}, {"*/5 * * * *", Microwaveprop.Commercial.PollWorker}, - {"5 * * * *", Microwaveprop.Workers.PropagationGridWorker}, - {"*/10 * * * *", Microwaveprop.Workers.AsosAdjustmentWorker} + {"5 * * * *", Microwaveprop.Workers.PropagationGridWorker} ]} ]