Sales | Support:1-888-96LINUX

Why are RSS limits more important than VSS limits?


Limiting RSS memory (physical memory) is more important than limiting VSS memory (virtual memory). RSS is the memory actually used by a process/user as opposed to what the application requests (VSS).

There is a minor downside to RSS limiting: Because RSS memory allocations are on-demand and asynchronous with tasks, applications can’t intercept them, requiring the kernel to kill the application when limits are exceeded. VSS limiting avoids this by having the kernel return an error when a limit-exceeding memory request is made, allowing the application to handle the error.

VSS limiting, however, has a much more significant problem: Applications’ memory requests are grossly inaccurate. They routinely exaggerate their memory needs. For example, a Java virtual machine (JVM) can allocate 4GB of virtual memory and then use only 1MB. This can leave VSS limits with little practical meaning.

In summary, RSS limiting is generally a far more effective limiting practice than VSS limiting.



Was this answer helpful?

Add to Favourites Add to Favourites

Print this Article Print this Article

Also Read
What is RSS memory? (Views: 1244)

Copyright © 2011 BetterLinux.com. All rights reserved.