fix(metrics): stop vmbackup being OOMKilled at 256Mi #23
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/vmbackup-oom"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Follow-up to #22, caught during verification. The sidecar landed with
limits.memory: 256Miand was OOMKilled 5 times before a run completed - each restart redoing the whole upload.vmbackup buffers whole parts, and this data set has single parts near 500 MB (
data/indexdb/2026_08/*/items.bin). The first backup is also the worst case - a full 11.87 GiB upload - because later runs are incremental against the same-dst.Raises limit to 1Gi, request to 128Mi. The backup did finally report
backup OK, so this is a stability fix rather than a correctness one.