Add :narr Oban queue to dev and runtime configs
Concurrency 6 in both dev and prod. NARR fetches are network-bound (byte-range GETs to NCEI) so high concurrency is fine — same shape as the iemre queue in dev. Required for NarrFetchWorker (added in the previous commit) to actually pick up jobs.
This commit is contained in:
parent
7c33af7278
commit
e44d7043e5
2 changed files with 2 additions and 0 deletions
|
|
@ -82,6 +82,7 @@ config :microwaveprop, Oban,
|
||||||
terrain: 4,
|
terrain: 4,
|
||||||
commercial: 2,
|
commercial: 2,
|
||||||
iemre: 10,
|
iemre: 10,
|
||||||
|
narr: 6,
|
||||||
backfill_enqueue: 1
|
backfill_enqueue: 1
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
|
|
|
||||||
|
|
@ -168,6 +168,7 @@ if config_env() == :prod do
|
||||||
hrrr: 1,
|
hrrr: 1,
|
||||||
terrain: 3,
|
terrain: 3,
|
||||||
iemre: 3,
|
iemre: 3,
|
||||||
|
narr: 6,
|
||||||
# ERA5 queues are TEMPORARILY PAUSED while we diagnose the
|
# ERA5 queues are TEMPORARILY PAUSED while we diagnose the
|
||||||
# zero-ingestion pipeline. Every poll in prod has been hitting
|
# zero-ingestion pipeline. Every poll in prod has been hitting
|
||||||
# either CDS-rejected or long-running states; no `ERA5Batch:
|
# either CDS-rejected or long-running states; no `ERA5Batch:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue