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:
parent
ee6975bc39
commit
2da061201d
2 changed files with 2 additions and 4 deletions
|
|
@ -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}
|
||||
]}
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
]}
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue