fix: revert prop-grid-rs memory limit to 3Gi after OOM at 1.5Gi
Some checks failed
Build and Push / Build and Push Docker Image (push) Failing after 5m50s

This commit is contained in:
Graham McIntire 2026-08-01 12:24:05 -05:00
parent 959f3a3f69
commit b01757b9e3
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -139,11 +139,12 @@ spec:
# After the dense-grid rewrite (commit 63f25a96) the
# per-task grid footprint dropped from ~200-400 MB of
# nested HashMaps to ~18 MB of dense f32 planes.
# PARALLELISM went 1 → 3 in the same commit. The remaining
# large term is the f00 native-level decode (~530 MB GRIB2
# + wgrib2 working set). 1.5Gi leaves headroom for three
# concurrent chain steps plus one analysis step.
memory: 1.5Gi
# PARALLELISM went 1 → 3 in the same commit. 1.5Gi was
# attempted (commit db57b3a1) but the pod OOMed within
# ~20s at that limit — the f00 native-level decode still
# carries a ~530 MB GRIB2 + wgrib2 working set. Hold at
# 3Gi until RSS is profiled at steady state.
memory: 3Gi
securityContext:
allowPrivilegeEscalation: false
runAsNonRoot: true