Tagged Questions

In the Java Virtual Machine, the permanent generation (or permgen) is used for class definitions and associated metadata.

learn more… | top users | synonyms

159
votes
22answers
147k 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

Significance of PermGen Space

What is the significance of PermGen space in java?
11
votes
5answers
443 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
340 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
1answer
228 views

Doesn't Clojure consume too much perm-gen space?

I'm new to Cojure, but I read that when using AOT compilation a class is generated for each function. Wouldn't that mean a whole lot of classes that consume perm-gen space? Aren't there any issues ...
8
votes
4answers
782 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
316 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
187 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
1answer
153 views

Effect of Scala class definitions on perm gen space

A standard pattern used in Scala class library is definition of classes within classes and traits. And most of the operations of objects of parent classes result in objects of those inner classes ...
5
votes
2answers
405 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
414 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
345 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 ...
4
votes
4answers
991 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 ...
4
votes
3answers
313 views

Can First-class functions in Scala be a concern for allocating a large PermGen Space in JVM?

Regarding first-class functions in Scala, it is written in the book Programming by Scala: A function literal is compiled into a class that when instantiated at run-time is a function value. ...
3
votes
3answers
251 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
2answers
94 views

Is there any way to prevent Grails permgen leaking on redeploy in production mode on tomcat despite JVM flags

It's a familiar old problem but I really want to put it to bed once and for all! I've got the following JVM flags set: -XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled ...
3
votes
1answer
275 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
2answers
213 views

Is there a way to run multiple Grails apps on the same web server without running into PermGen errors?

We're developing a few Grails applications, and deploying the WARs on Jetty. When we run each of the applications one at a time, they hover at around 200 - 300 MB of memory, which is perfectly ...
3
votes
3answers
891 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
54 views

Will child JVM “inherit” max heap size and perm gen size when forked?

If I specify a given max heap size and perm gen size in an exported shell variable i.e. JAVA_OPTS or MAVEN_OPTS and the Maven build forks the JVM, will the child JVM "inherit" or attempt to access the ...
2
votes
1answer
120 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
369 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
555 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
2k 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
558 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
708 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
500 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
1answer
829 views

Is is possible to have a clean undeploy in Glassfish?

I realized that any application which uses hibernate, fails to undeploy completely in Glassfish 2.1.1. Many classes remain in memory after the undeployment process, you can check it using jmap and ...
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
0answers
64 views

Permgen growing while deploying web applications on Jboss 6

Am porting web applications which were earlier on Jboss 4.2.3 onto Jboss 6. There are about 12 web applications totally and out of which only 4 are deployed as of now. These web applications are ...
1
vote
1answer
98 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
2answers
122 views

Adding a library to java web app causes java.lang.OutOfMemoryError: PermGen space?

When I try to add a library (in this case: iText-2.0.8.jar) to my java web app (JSF) and restart Tomcat, everything seems fine. The login page also renders. When I login however, the application ...
1
vote
2answers
461 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
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 2