Tagged Questions

14
votes
4answers
3k views

From what Linux kernel/libc version is Java Runtime.exec() safe with regards to memory?

At work one of our target platforms is a resource constrained mini-server running Linux (kernel 2.6.13, custom distribution based on an old Fedora Core). The application is written in Java (Sun JDK ...
1
vote
1answer
192 views

Return code when OOM killer kills a process

I am running a multiprogrammed workload (based on SPEC CPU2006 benchmarks) on a POWER7 system using SUSE SLES 11. Sometimes, each application in the workload consumes a significant amount of memory ...
1
vote
2answers
320 views

After “OOM Killer”, is there a “Resurrector”?

I understand that on Linux there is a kernel functionality referred to as "OOM Killer". When the OOM (Out-Of-Memory) condition subsides, is there such a thing as a "Process Resurrector" ? I ...
0
votes
0answers
101 views

JVM process killed by OS

I've implemented a web service using Camel's Jetty component through Akka (endpoint) which forwards received messages to an actor pool with the setup of: def receive = _route() def lowerBound = ...
0
votes
2answers
152 views

Java XmX = Do I have to set it to prevent Linux OOM

just my complete Linux box crashed with OOM (OOM Killer Process killed the wrong processes), due to a java application consumed too much memory and there was no memroy left. My question is, if I use ...
0
votes
2answers
213 views

Program is Killed During Testing

When I run my program I get the message Killed with some information about the script. After doing some research on the problem, I found out that I wasn't deleting my dynamically allocated variables ...
0
votes
2answers
336 views

linux OOM (out of memory) killer email notification?

This answer describes the out of memory killer on Linux. Is there a way to get notified when the OOM killer has killed something? Email is preferable. One might do this with a watchdog, but I ...