vote up 19 vote down star
7

Recently I ran into this error in my web application:

java.lang.OutOfMemoryError: PermGen space

It's a typical Hibernate/JPA + IceFaces/JSF application running on Tomcat 6 and JDK 1.6.

Apparently this can occur after redeploying an application a few times.

flag

10 Answers

vote up 15 vote down

The solution was to add these flags to JVM command line when Tomcat is started:

-XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled

You can do that by shutting down the tomcat service, then going into the Tomcat/bin directory and running tomcat6w.exe. Under the "Java" tab, add the arguments to the "Java Options" box. Click "OK" and then restart the service.

Source: orx's comment on Eric's Agile Answers.

link|flag
The article below suggests -XX:+UseConcMarkSweepGC and -XX:MaxPermSize=128m as well. my.opera.com/karmazilla/blog/… – Taylor L May 27 at 18:51
You sir are a king - this problem's been bugging me for ages. Thanks muchly! – Chris Harcourt Nov 12 at 14:01
vote up 5 vote down

use the command line parameter -XX:MaxPermGen=128m for a Sun JVM. (obviously substituting 128 for whatever size you need)

link|flag
The only issue is that you're just delaying the inevitable- at some point you'll run out of headroom there too. It's a great pragmatic solution, but it doesn't solve it permanently. – Tim Howland Sep 18 '08 at 3:35
same thing occurs in Eclipse and any time you have lots of dynamic class loading. the classloaders aren't disposed of and live in the permanent generation for all eternity – Matt Sep 22 '08 at 20:48
3  
Actually I think the correct switch is -XX:MaxPermSize – matt b May 20 at 18:41
vote up 2 vote down

Alternatively, you can switch to JRockit which handling permgen differently then sun's jvm. It generally has better performance as well.

http://www.bea.com/jrockit/

link|flag
vote up 2 vote down

You better try -XX:MaxPermSize=128M rather than -XX:MaxPermGen=128M.

I can not tell the precise use of this memory pool, but it have to do with the number of classes loaded into the JVM. (Thus enabling class unloading for tomcat can resolve the problem.) If your applications generates and compiles classes on the run it is more likely to need a memory pool bigger than the default.

link|flag
vote up 1 vote down

JRockit resolved this for me as well; however, I noticed that servlet restart times were much worse, so while it was better in production, it was kind of a drag in developemnt.

link|flag
vote up 0 vote down

I still keep getting the error despite trying the

-XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled

I have also tried

-XX:MaxPermGen=128m

Nothing seems to work on my Sun JDK 1.6.0_12, Any clue? Should move to Jrockit JVM

link|flag
I believe that these flags only delay the inevitable, they don't cure the problem. – matt b Mar 10 at 18:23
vote up 0 vote down

Try -XX:MaxPermGen=256m and if it persists, try -XX:MaxPermGen=512m

link|flag
vote up 0 vote down

The configuration of the memory depends on the nature of your app.

What are you doing?

What's the amount of transactions precessed?

How much data are you loading?

etc.

etc.

etc

Probably you could profile your app and start cleaning up some modules from your app.

Apparently this can occur after redeploying an application a few times

Tomcat has hot deploy but it consumes memory. Try restarting your container once in a while. Also you will need to know the amount of memory needed to run in production mode, this seems a good time for that research.

link|flag
vote up 0 vote down

I have a combination of Hibernate+Eclipse RCP, tried using -XX:MaxPermSize=512m and -XX:PermSize=512m and it seems to be working for me.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.