how to choose the jvm heap size ? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T00:30:25Zhttp://stackoverflow.com/feeds/question/1651225http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size5how to choose the jvm heap size ? LB http://stackoverflow.com/users/805302009-10-30T17:27:29Z2009-10-30T18:03:16Z
<p>Hi,</p>
<p>What i usually do concerning the jvm heap size is setting the max value really high to avoid the infamous OutOfMemoryException. </p>
<p>However, this strategy (or lack of strategy) doesn't seem to be really smart. :-).</p>
<p>My question is how to choose the min and max values, and the difference between the two (should max-min be small or big?).
For instance, from <a href="http://download.oracle.com/docs/cd/E13188%5F01/jrockit/geninfo/diagnos/tune%5Fstartup.html" rel="nofollow">here</a>:</p>
<blockquote>
<p>if the initial heap is too small, the
Java application startup becomes slow
as the JVM is forced to perform
garbage collection frequently until
the heap has grown to a more
reasonable size. For optimal startup
performance you should set the initial
heap size to the same as the maximum
heap size.</p>
</blockquote>
<p>thanks.</p>
http://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size/1651237#16512371Answer by Robert Greiner for how to choose the jvm heap size ? Robert Greinerhttp://stackoverflow.com/users/1100882009-10-30T17:29:31Z2009-10-30T17:29:31Z<p>The right answer is: <strong>there is no right answer</strong> each project is different and you will have to fine-tune your heap size configuration on a per-project basis. I would start small and gradually increase the heap size until your application is running as intended.</p>
<p>You are right, setting a huge max value is not a good idea.</p>
http://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size/1651245#16512453Answer by Xepoch for how to choose the jvm heap size ? Xepochhttp://stackoverflow.com/users/1993052009-10-30T17:31:56Z2009-10-30T17:37:30Z<p>You should enable GC logging and check to see where your OOM is ocurring.</p>
<pre><code>-verbose:gc
-Xloggc:gc.log
-XX:+PrintGCTimeStamps
-XX:+PrintGCDetails
</code></pre>
<p>You may be experiencing perm space limits, adjust via <code>-XX:MaxPermSize=YYYm</code></p>
<p>Anyway to answer your question, I start with no minimums and set the maximum relatively high. I then graph the gc log and find out where my stead state is; visually choose an above-average size for the various generations. Read it like a financial chart, you'll want to see good spread in the new generations and a consistent growth and collection in the tenured generation. As mentioned also graph your perm space to make sure you're not constantly increasing.</p>
<p>GC tuning is an art, in no way a science.</p>
http://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size/1651296#16512961Answer by RMorrisey for how to choose the jvm heap size ? RMorriseyhttp://stackoverflow.com/users/1668502009-10-30T17:40:27Z2009-10-30T17:40:27Z<p>If you are experiencing an OOME, I would actually start by increasing the max memory as much as you can, and see if that resolves the issue. Let your machine soak up the performance problem, first. If the problem persists, then you can look into performance diagnostics to identify bottlenecks and work on those areas where your app might be leaking or might be hogging the most memory.</p>
<p>Jeff Atwood has a nice article on CodingHorror that explains this attitude; the most cost-effective solution to a performance problem is to throw hardware (or in this case, increased memory resources) at the problem, before investing developer time in troubleshooting:</p>
<p><a href="http://www.codinghorror.com/blog/archives/001198.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001198.html</a></p>
http://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size/1651361#16513611Answer by Pascal Thivent for how to choose the jvm heap size ? Pascal Thiventhttp://stackoverflow.com/users/706042009-10-30T17:54:26Z2009-10-30T17:54:26Z<p>Indeed, setting a huge max value blindly is not really a good idea (measure, don't guess) and this strategy will lead to very long "stop the world" major GCs which might not be desirable from a user experience point of view (always keep in mind that "the bigger the heap, the longer the major GC").</p>
<p>That said, there is no generic answer to your question, every application has different needs. Actually, I'd suggest to profile <strong>your</strong> application and tune the heap to find a good compromise between (major) GC frequency and (major) GC duration while minimizing the response time to the end user. I warmly suggest to read this great <a href="http://kirk.blog-city.com/advice%5Fon%5Fjvm%5Fheap%5Ftuning%5Fdont%5Ftouch%5Fthat%5Fdial.htm" rel="nofollow">blog post</a> (and all others) from Kirk Pepperdine for further details.</p>
<p>Just to answer the min and max value part, I always use the same values (for better startup performances and better reproducibility).</p>
http://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size/1651404#16514043Answer by Bob Cross for how to choose the jvm heap size ? Bob Crosshttp://stackoverflow.com/users/58122009-10-30T18:03:16Z2009-10-30T18:03:16Z<blockquote>
<p>My question is how to choose the min
and max values, and the difference
between the two (should max-min be
small or big?)</p>
</blockquote>
<p><strong>Short answer:</strong> don't guess, profile your application.</p>
<p><a href="http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html#LowMemoryDetection" rel="nofollow">jconsole can give you useful high-level data</a> such as a feeling for the main resident set vs. the transient data that we normally allocate and garbage collect. What you'll see if you look at the memory tab of that display is usually something like a sawtooth. The lower corner of the sawteeth is about where I would normally set the heap minimum whereas I would use the peak or slope of the sawteeth to experiment with a heap maximum. If your teeth are very steep, you might consider a big heap just to delay the garbage collection. However, if they aren't, you could try a smaller heap maximum to see if that might leave more resources for other processes on your machine (for example).</p>
<p>You should also consider the <a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp" rel="nofollow">server VM</a> as that will cause different garbage collection behavior.</p>
<p>All that said, you should also use a more detailed tool such as <a href="http://java.sun.com/javase/6/docs/technotes/guides/visualvm/profiler.html" rel="nofollow">jvisualvm to profile the memory usage of your process</a>. It's possible that you have a memory leak or greedy allocator that you could tune or eliminate. That would completely change your heap needs.</p>