Tagged Questions

10
votes
3answers
342 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 ...
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
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 ...
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
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
253 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 ...
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
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 ...
1
vote
0answers
66 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
3answers
456 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
1answer
966 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
0answers
171 views

PSOLDGen full server crashing even after increasing permgen

The J2ee application that I have is crashing on Oracle application server 10g and my heap settings are as follows. VM Arguments: jvm_args: -verbose -verbose:gc -Xmx1024M -Xms1024M ...