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.
This commit is contained in:
Graham McIntire 2026-03-31 16:00:04 -05:00
parent ee6975bc39
commit 2da061201d
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59
2 changed files with 2 additions and 4 deletions

View file

@ -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}
]}
]

View file

@ -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}
]}
]