Set OOM killer adjustment for process on startup?

Solution 1:

I think you best bet would be to add a separate script as part of your init.d. In it, you will want to do something like this

echo 15 > /proc/`pidof APP_NAME`/oom_adj

The pidof APP_NAME will retrieve the process ID of the app with that name. Writing 15 to /proc/{pid}/oom_adj ups the "badness" of process {pid}, making it more likely to be killed by OOM killer.

The article Taming the OOM killer from LWN.net also hints at some other ideas that were suggested to allow specification of an "oom_victim", but I am not sure any of them are actually in the kernel.

BTW: The best solution would be to avoid having to use the OOM Killer in the first place. Remember Micro$oft's unwritten motto: There's no problem more RAM can't fix.

[Note: If there could be more than one of these processes, you may want to revise the code a bit.]