79770093

Date: 2025-09-20 04:57:15
Score: 1.5
Natty:
Report link

Although there's no direct correlation between PVC and Memory limits, you have to consider how linux deals with file caching in memory. By using a PVC, we can infer that your application has frequent file access. if you're seeing that you are constantly maxing out or close-to-max on your memory limit, but you aren't getting OOMKilled, then you're fine. If you're finding you are getting OOMKilled, then you may need to consider the memory needs of the application + overhead for file caching. apps that use mmap to improve file access speeds are most susceptible to this since those cannot be easily reclaimed in memory by the operating system.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bobby V