No description
Root cause of the "81,980 / 81,994" display that wouldn't advance: 14 contacts had pos1 inside the HRRR CONUS grid but pos2 or the great-circle midpoint landed outside it (50°N+ into Canada, mid- Atlantic, Pacific, Caribbean, Alaska). The Rust hrrr-point-worker silently returns no profile for OCONUS points, so `hrrr_data_fully_present?/1` never evaluated true and the contact sat `:queued` forever. The existing ContactWeatherEnqueueWorker.mark_hrrr_status!/3 already flips to `:unavailable` on empty job lists via NarrClient.in_coverage? + Grid.contains?(pos1), but those checks only considered pos1 — not the full contact_path_points list. When pos1 was in-grid but a downstream point was not, the contact entered `:queued` and the reconciler couldn't rescue it. `reconcile_hrrr_statuses/0` now sweeps `:queued` contacts into two buckets: - ANY path point OCONUS → `:unavailable` (matches what the enqueuer would emit had it known about the downstream points); - else, all points present → `:complete`. Applied once in prod to 14 stuck contacts; cron path picks up any new occurrences going forward. |
||
|---|---|---|
| .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 | ||
| LICENSE | ||
| 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