Tomcat memory usage grows until crash with no GC run

configurationmemory usagetomcat

I'm administrating a server running Tomcat that is getting a lot of traffic lately.

If I monitor memory usage in Task Manager I can see the memory usage growing and eventually tomcat crashes around the 1GB mark.

Here's the memory relevent bits I've set in Tomcat Properties (this is a Windows Server):

Intial memory pool: 1024 MB
Maximum memory pool: 1024 MB
-XX:MaxPermSize=256M

The weird thing is since these problems arose I've deployed Lambda Probe to the Tomcat instance and the memory usage values I see there are much lower, for example Task Manager might show 467MB used while the "Total" used in Probe is 212 MB. Also, the Maximum Total listed in Probe is 1.29GB, when I would have expected 1GB, the maximum memory set above.

If I force the garbage collector to run using Probe, I can keep Tomcat from crashing for a while (indefinitely, AFAIK). So why doesn't the GC run automatically and stop Tomcat from crashing?

Thanks.

Best Answer

Phil,

You need to tune your JVM configuration. Take a look to the JMV configuration I'm using in my Tomcat server that is behaving very well under heavy traffic:

http://acevedoalberto.wordpress.com/2009/01/16/hello-world/

Alberto

Related Topic