Pattern
JSON Load OOM From Memory
json-load-oom-memory-materialization
Large JSON payloads trigger out-of-memory because json.load() materializes the entire JSON array/tree in memory at once, so backup or batch scripts get SIGKILL; streaming parsers can process incrementally.