Limit CPU / Stack for Java method call? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T10:32:24Zhttp://stackoverflow.com/feeds/question/1081466http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081466/limit-cpu-stack-for-java-method-call1Limit CPU / Stack for Java method call?Kevin Peterson2009-07-04T04:09:10Z2009-11-11T20:42:28Z
<p>I am using an NLP library (Stanford NER) that throws OOM errors for rare input documents.</p>
<p>I plan to eventually isolate these documents and figure out what about them causes the errors, but this is hard to do (I'm running in Hadoop, so I just know the error occurs 17% through split 379/500 or something like that). As an interim solution, I'd like to be able to apply a CPU and memory limit to this particular call.</p>
<p>I'm not sure what the best way to do this would be. My first though is to create a fixed thread pool of one thread, and use the timed get() on Future. This would at least give me a wall clock limit which would likely help somewhat.</p>
<p>My question is whether there is any way to do better than this with a reasonable amount of effort.</p>
http://stackoverflow.com/questions/1081466/limit-cpu-stack-for-java-method-call/1081889#10818892Answer by Brian Agnew for Limit CPU / Stack for Java method call?Brian Agnew2009-07-04T09:38:52Z2009-07-04T09:38:52Z<p>I'm not familiar with Hadoop, but don't forget that your JVM will have an implicit upper memory boundary imposed on it (64Mb for a server, if my memory is correct). I would check what memory configuration your JVM is running with (options <a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp" rel="nofollow">here</a>)</p>
<p>You can override this by specifying the upper memory limit thus:</p>
<pre><code>java -Xmx512m
</code></pre>
<p>to (say) set the limit to 512Mb.</p>
<p>Setting CPU allocation is outside the remit of the JVM, and will be an OS-specific mechanism (if you can do it at all)</p>
<p>If you're dispatching these jobs in parallel from a JVM then running a single-thread (or limited thread) threadpool may well help you. However (again) this is dependent upon your implementation and more details are required. </p>
http://stackoverflow.com/questions/1081466/limit-cpu-stack-for-java-method-call/1082629#10826290Answer by James Ring for Limit CPU / Stack for Java method call?James Ring2009-07-04T17:29:12Z2009-07-04T17:29:12Z<p>If all you're trying to do is figure out which documents are crashing, you should put logging around the call to the NLP library, "about to map document x". When you see the OOM, the logs for the mapper will contain the document of doom. Like you said, you should then determine what characteristics of that document cause the library to crash.</p>
<p>In my experience, especially if the documents were created by people on the Internet, you will find some crazy huge document somewhere. At that point you have to decide what to do with such documents; either to ignore them, maybe truncate them.</p>
http://stackoverflow.com/questions/1081466/limit-cpu-stack-for-java-method-call/1717919#17179191Answer by Ken Bloom for Limit CPU / Stack for Java method call?Ken Bloom2009-11-11T20:42:28Z2009-11-11T20:42:28Z<p>Just catch the OutOfMemoryError, log which document you were on, then move on to the next one. The garbage collector will make sure you have enough memory for the next document.</p>
<p>(This is one of the strategies I use with the Stanford dependency parser to move on to the next sentence if one sentence is too long or convoluted to parse.)</p>