Tagged Questions

160
votes
22answers
148k views

How to deal with “java.lang.OutOfMemoryError: PermGen space” error

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 ...
8
votes
2answers
1k views

How do I programmatically find out my PermGen space usage?

I'm trying to diagnose a java.lang.OutOfMemoryError: PermGen Space error when running on Sun's Hotspot JVM, and would like to know how much PermGen space my program is using at various points. Is ...
7
votes
5answers
1k views

java.lang.OutOfMemoryError: PermGen space on web app usage

I am struggling with an outOfMemory PermGen issue that has been showing up recently. One of the log snippets that was saved when error appeared: java.lang.OutOfMemoryError: PermGen space at ...
4
votes
4answers
994 views

Track down PermGen problem with JRuby on Rails in Tomcat

We're running a small web application written JRuby on Rails running under Tomcat. We're using a Spring back-end that's shared with another production web application. Unfortunately, we keep running ...
2
votes
1answer
374 views

Locating code that is filling PermGen with dead Groovy code

We have had our glassfish instance go down every two weeks for a while with a java.lang.OutOfMemoryError: PermGen space. I increased the PermGen space to 512MB and startet dumping memory usage with ...
1
vote
2answers
466 views

Windows 7, java 1.6.0_24 or 25m eclipse helios -->java.lang.OutOfMemoryError: PermGen space

I have a problem that makes eclipse modeling helios SR2 with xtext 1.0.2, crash on startup if I have projects. If I try to update eclipse it crashes. When building workspace it crashes. An internal ...
1
vote
2answers
838 views

Do I have a JAXB classloader leak

I have an application deployed on Glassfish. Over time the number of loaded classes climbs into the millions and my permgen seems to rise. To help troubleshoot I added the following to my jvm ...
0
votes
2answers
529 views

Jetty 7: OutOfMemoryError: PermGen space on application redeploy

First time app starts correctly. Then I delete webapp/*.war file and paste new version of *.war. Jetty start deploying new war but error java.lang.OutOfMemoryError: PermGen space occurs. How can I ...
0
votes
3answers
2k views

PermGen space issue with Glassfish/Hibernate

I'm running a GWT+Hibernate app on Glassfish 3.1. After a few hours, I run out of Permgen space. This is without any webapp reloads. I'm running with –XX:MaxPermSize=256m –XmX1024m. I took the advice ...