Lambdacurry

Unslowable Linux


For the past week, I have tuned my linux installation to be unslowable - it honors my available RAM and swap and if memory goes low, any new processes terminate rather than thrash (inherently slowing down my system) There is a bit of tuning involved in this: the key parameters involved are  (in /etc/sysctl.conf

)

vm.overcommit_memory and vm.overcommit_ratio

These variables control the behavior of memory allocation and the amount of memory being legally allowed to be requested. overcommit_memory controls the behavior of memory allocation (which, at the end of the day happens through sbrk). Setting it to 2, indicates that if the system is out of memory, then malloc should return null.

Surprisingly, this is not the default behavior - it relies on the fact that a program may request 100mb but it is only using 50mb at any given time. Therefore a system has more memory than its swap + RAM.

This does not always play well with heavy loads on a machine - especially 20 tabs browser with flash + Ruby server processes + MySQL. This particular setting means that individual processes may terminate rather than hanging your machine, but you will never have an unresponsive system.

Setting this to 100 gives you exactly RAM + Swap. This is highly pessimistic, since it is true that a lot of processes demand more memory than they need. I have had best results on my machine (with 2GB RAM and 1GB swap) by setting it to 200.

overcommit_ratio is the amount of memory that can be requested by your system. With overcommit_memory as 2, this turns out to be:

CommitLimit = (RAM * (overcommit_ratio / 100)) + Swap

Using these settings, I can run a browser with multiple tabs, Ruby servers, MySQL and a few other processes. I will be playing with this number to account for heavy duty VirtualBox, etc. But essentially it tells me the point at which my system will slow down… the better solution is to add more RAM (which I cant in my old laptop… waiting for newer laptops with nVidia and USB 3.0 !) .. but that is a whole different story.


Lambdacurry

Unslowable Linux

Published

February 26, 2010

Find me on Twitter @sandeepssrin

Did i make any mistake? Please consider sending a pull request.