Rust gRPC server memory grows ~1GB per request until OOM – how to diagnose?
Summary The issue at hand is a Rust gRPC server experiencing memory growth of approximately 1GB per request, leading to an eventual Out of Memory (OOM) error. This behavior is unexpected in Rust, given its focus on memory safety and lack of garbage collection. The goal is to diagnose and debug this memory growth issue. … Read more