No description
Hot pods were running weather/narr/rtma/nexrad/contact_import alongside LiveView and the hourly propagation chain. The weather queue in particular hammers IEM with ASOS backfills; each Req retry against a 429 stacks an in-worker Process.sleep, and enough concurrent retries saturated the Ecto pool. Once DB checkouts started queueing past 15 s the cascade was always the same: Postgrex client timeouts → Oban.Notifier/Peer 5 s health checks failing → /health readiness timeout → kubelet flipping the pod out of the service endpoint set. One hot replica accumulated 11 restarts over 16 h. Split the shared queue block: anything that's truly per-QSO enrichment on demand (terrain, iemre, radar, mechanism, gefs, ionosphere, space_weather, admin, exports, backfill_enqueue) stays on both tiers, while weather/narr/rtma/nexrad/contact_import run only on prop-backfill. The hot pods mark those as paused so the queue entries still exist cluster-wide (Oban Pro's Smart engine rejects `limit: 0`). Cluster capacity for the backfill queues is unchanged; they just execute on the dedicated t620. |
||
|---|---|---|
| .forgejo/workflows | ||
| .github | ||
| assets | ||
| bin | ||
| config | ||
| docs | ||
| k8s | ||
| lib | ||
| lib_ml | ||
| notebooks | ||
| priv | ||
| rel | ||
| rust/prop_grid_rs | ||
| scripts | ||
| test | ||
| vendor | ||
| .credo.exs | ||
| .dockerignore | ||
| .formatter.exs | ||
| .gitignore | ||
| .tool-versions | ||
| AGENTS.md | ||
| algo.md | ||
| app.json | ||
| CLAUDE.md | ||
| Dockerfile | ||
| elevation.md | ||
| mix.exs | ||
| mix.lock | ||
| prediction.md | ||
| README.md | ||
| tail_logs.sh | ||
| updates.md | ||
Microwaveprop
To start your Phoenix server:
- Run
mix setupto install and setup dependencies - Start Phoenix endpoint with
mix phx.serveror inside IEx withiex -S mix phx.server
Now you can visit localhost:4000 from your browser.
Ready to run in production? Please check our deployment guides.
Learn more
- Official website: https://www.phoenixframework.org/
- Guides: https://hexdocs.pm/phoenix/overview.html
- Docs: https://hexdocs.pm/phoenix
- Forum: https://elixirforum.com/c/phoenix-forum
- Source: https://github.com/phoenixframework/phoenix