Tagged Questions
161
votes
21answers
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 ...
13
votes
8answers
4k views
What can be done with 'PermGen out of space' exception in Tomcat-Spring-Hibernate web application?
We have an web application that uses Spring-Hibernate to persist registered users data in Oracle database. The application works fine in development environment, but when we copy it int live ...
12
votes
4answers
1k views
11
votes
5answers
446 views
Real Life, Practical Example of Using String.intern() in Java?
I've seen many primitive examples describing how String intern()'ing works, but I have yet to see a real-life use-case that would benefit from it.
The only situation that I can dream up is having a ...
10
votes
3answers
346 views
what, besides Class objects, is stored in Perm Gen Space (sun 1.6 VM)?
I am seeing 'java.lang.OutOfMemoryError: PermGen space' while running ~300 JUnit tests and using Spring context. Having a tough time figuring out what's eating up PermGen since:
in steady state the ...
8
votes
4answers
787 views
Tomcat on production server, PermGen and redeploys
It looks like
MemoryError: PermGen space
java.lang.OutOfMemoryError: PermGen space
is a common problem. You can Increase the size of your perm space, but after 100 or 200 redeploys it will be ...
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 ...
8
votes
8answers
9k views
What does PermGen actually stand for?
I know what PermGen is, what it's used for, why it fails, how to increase it etc.
What I don't know is what PermGen actually stands for. Permanent... Gen... something?
Does anyone know what PermGen ...
8
votes
8answers
3k views
How do I discover what is in the permanent generation
Given a heapdump or a running VM, how do I discover what the contents of the permanent generation is ? I know about 'jmap -permstat' but that's not available on Windows.
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 ...
7
votes
2answers
475 views
Use PermGen space or roll-my-own intern method?
I am writing a Codec to process messages sent over TCP using a bespoke wire protocol. During the decode process I create a number of Strings, BigDecimals and dates. The client-server access patterns ...
7
votes
3answers
3k views
Java HotSpot 1.6 VM, Garbage Collection - Scary PermGen
My app shows rising 'Old Generation'/'Tenured Generation' size, and when this reaches the max limit for 'Old Gen', then suddenly PermGen size increases.
Here are my generation sizings:
-Xmx1200m ...
6
votes
1answer
318 views
Java class size in PermGen space
There are lots of Q&A's about the size of a Java object, which is quite straightforward to understand. But I'm wondering about the size of a Java class in the PermGen space.
The reason I wonder ...
6
votes
6answers
4k views
What free JVM implementation has the best PermGen handling?
I'm running Tomcat6 in Sun's JRE6 and every couple deploys I get OutOfMemoryException: PermGen. I've done the Googling of PermGen solutions and tried many fixes. None work. I read a lot of good things ...
5
votes
1answer
193 views
When does the perm gen get collected?
I work on a Tomcat application which uses the CMS collector along with a memory bar to trigger GC. When I reload webapps I sometimes end up in a situation where the Old gen is full enough to trigger ...
5
votes
2answers
411 views
Solving a PermGen issue on redeploy with Jetty 7
After a couple of days of debugging I have managed to have a medium-to-large web application redeploy successfully on Tomcat 6.0.32 without any PermGen leaks. I saw the PermGen drop after it filled, ...
5
votes
3answers
346 views
Are Inner Classes lightweight?
Are inner classes more lightweight than normal classes, or in the end java compiles inner classes just like normal classes?
I know classes in java are not all very lightweight themselves, and they ...
5
votes
1answer
361 views
Is java PermGen space part of the total VM memory?
Assuming I start my java VM with the following parameters:
-Xms1024m -Xmx1024m -XX:PermSize=512m -XX:MaxPermSize=512m
Do the 512m PermGen space add to the 1024m memory or are they part of it? Or in ...
5
votes
2answers
419 views
Is permgen included in -Xmx?
My question is simple when i say -Xmx=1024m does this include permgen i.e -XX:MaxPermSize= is taken from these 1024m or it is seperate.
looking at
http://java.sun.com/docs/hotspot/gc1.4.2/
I felt ...
4
votes
4answers
346 views
String literals using 2x the expected amount of permanent generation space
This is Sun JDK 1.6u21, x64.
I have a class for the purpose of experimenting with perm gen usage which contains only a single large string (512k characters):
public class Big0 {
public String ...
4
votes
3answers
1k views
How to dump Permgen?
I wanted to take the dump of the Permgen of a application server.
I do not want to use -XX:+TraceClassLoading -XX:+TraceClassUnloading as i do not want to restart the server, Neither i want to use ...
3
votes
3answers
259 views
-XX:MaxPermSize with or without -XX:PermSize
We've run into a Java.lang.OutOfMemoryError: PermGen space error and looking at the tomcat JVM params, other than the -Xms and -Xmx params we also specify -XX:MaxPermSize=128m. After a bit of ...
3
votes
1answer
278 views
Why would I see only “dead” classloaders from jmap -permstat (except the bootstrap)?
We've been pushing the permgen memory space in our app higher and higher and I'm trying to find out if we have a leak of some sort eating into the permgen area. We don't do hot undeploy/redeploy ...
3
votes
2answers
124 views
How do you list the string that been internalized in a jvm? [closed]
Possible Duplicate:
Java - tell if a String is interned?
I would like to have a list of the string that have been internalized by a jvm, either because they are literal are because the ...
3
votes
3answers
118 views
will endless creation and running of Threads end up in a PermGen OOM?
In my process I continuously create a new Thread object (subclass of Thread actually) (up to several per second), run it and cleanly end.
I have noticed that when the process has been up for 25 ...
3
votes
3answers
893 views
jBoss 4.0.2 deploying same WAR multiple times causes jBoss to crash because of PermGem/Out-of-Memory Errors
I develop web applications and I use jBoss 4.0.2 and when I have redeployed my WAR several times with eclipse, jBoss will crash because it runs out of memory. And when I have to install new version to ...
2
votes
1answer
122 views
Saving PermGen space with several classloaders
We're writing a large GUI app in Scala with a lot of classes, and we've had to increase the PermGen space to be able to load all classes. The app itself shows a series of screen-based activities, each ...
2
votes
1answer
375 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 ...
2
votes
2answers
562 views
PermGen Out of Memory reasons
I constantly detect OOM in PermGen for my environment:
java 6
jboss-4.2.3
Not a big web-application
I know about String.intern() problem - but I don't have enough valuable usage of it.
Increasing ...
2
votes
3answers
3k views
java.lang.OutOfMemoryError: PermGen space
i'm getting the following error
"http-9000-5" java.lang.OutOfMemoryError: PermGen space
org.apache.catalina.core.ApplicationDispatcher invoke
SEVERE: Servlet.service() for servlet jsp threw exception
...
2
votes
2answers
563 views
Java: Is 'tenured' memory the same as permgen?
I am trying to gather information on an occasional issue we are having, where after a few weeks of operation the app slows down, works fine, slows down, works fine, with the intervals between being ...
2
votes
3answers
212 views
Is it still impossible to get rid of out of PermgenSpace exceptions when redeploying?
This is an old problem I've always had. I want to redeploy in development environment. After some deployments I run out of permgen and have to kill the server. Years ago I tried to find a solution to ...
2
votes
2answers
712 views
Tool to view objects in permgen
I have some problems with permgen overflow. What tools I can use to view what classes are now loaded into permgen and how much memory they use?
Thanks.
2
votes
3answers
501 views
Netbeans Java Debugger crashing with Out of Memory Errors
Recently, while working on a JSF web app, using Netbeans 6.8, I am constantly getting PermGen: Out Of Memory Errors. I have also noticed that this is not related to hot swapping the code, as some ...
2
votes
1answer
3k views
Increase permgen space
I am working with tomcat 6.0, and while I am indexing (not while i am starting tomcat), I have a permgen space error.
How could I increase that space??
Thanks
2
votes
4answers
2k views
Java server cpu usage at 100% after two days continous running with about 110 users
I have a tomcat 6.0.20, apr 1.2, jdk 1.6.0_15 with mysql 5.1.38 running on a rhel box with 4 GB ram. There is one simple jsp/servlet application on it with 5 users, one struts 1.2.0.9 with 64 users ...
1
vote
1answer
101 views
Determine size of single Java class definition in PermGen space?
How do I determine how large a single, specific class definition (not the instantiated object) is? Specifically, how much PermGen memory does a given class use? If it cannot be calculated, how roughly ...
1
vote
3answers
172 views
Can we avoid interning of strings in java?
Can we completely disable interning of strings. It might not be really helpful, but just a thought. I can think atleast one point where it could be helpful i.e. during jvm tuning, controlling the size ...
1
vote
1answer
249 views
Can a JNDI lookup in a Servlet cause a permgen memory leak?
Since JBoss 4.2 does not support @EJB injections, I am using a JNDI lookup to reference an EJB that is needed by a Servlet.
I am concerned that this type of lookup may be causing the Permgen non-heap ...
1
vote
3answers
460 views
How can I view the MaxPermSize in JVM?
I'm meeting the dreadful PermGen:Out of memory error when deploying a web-app on TomCat. I have tried many possible solutions, but they don't work out(sometimes it works, usually it doesn't). I wonder ...
1
vote
2answers
839 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 ...
1
vote
1answer
247 views
PermGen size not expanding to fill max space available
I have a java process running. With jstat I can see the the permgen utilisation and the capacity are almost identical. i.e. the current capacity is almost full but still well below the max permgensize ...
1
vote
4answers
3k views
How to analyze PermGen contents?
I want to get a dump of the PermGen to see why it is filling. Is there a way to analyze this? I already know about the common suspects like log4j, tomcat webapp reloading etc, but I have some custom ...
1
vote
1answer
968 views
How do you design a good permgen space string in Java?
I'm wondering how you would go about designing a good permgen space string in Java. Based on my research and understanding I've come up with the following:
example: JAVA_OPTS='-Xmx512m ...
0
votes
1answer
47 views
Struts2 PermGen Out of Memory error
I noticed this occurrence in big application where the front end server was gobbling up PermGen quite fast, worst part it kept on increasing on every request, sometimes it just keeps on increasing ...
0
votes
1answer
65 views
can a OOM be caused by not finding enough contiguous memory?
I start some java code with -Xmx1024m, and at some point I get an hprof due to OOM. The hprof shows just 320mb, and give me a stack trace:
at java.util.Arrays.copyOfRange([CII)[C (Arrays.java:3209)
...
0
votes
1answer
96 views
Forcing a Tomcat-handled DataSource to be eagerly initialised
After eliminating a couple of PermGen-related problems in a Java web application I have reached the following point:
the application runs in Tomcat 6.0.32 and uses a Tomcat-managed DataSource
the ...
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 ...
0
votes
1answer
240 views
Setting JMX attribute on VM as command line paramater
I've done some searching, but can't seem to find a way to do this.
We'd like to proactively monitor our permgen space via JMX. It seems the best way to do this is through the UsageThreshold ...
0
votes
2answers
421 views
What is wrong with runing app in tomcat server?
Recently I created a maven based web project and used tomcat as application server to debug ...
But tomcat is frequently dead (pergem error which means out of memery ) after run app from the Project ...