Top "Permgen" questions

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

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 …

java tomcat out-of-memory permgen redeploy
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 …

java memory-leaks profiling permgen jmap
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 …

java jvm permgen
Is permgen included in -Xmx?

When I say -Xmx=1024m, does this include permgen i.e -XX:MaxPermSize= is taken from these 1024m or it …

java permgen
Large Permgen size + performance impact

We are running a liferay portal on tomcat 6. Each portlet is a contained web application so it includes all libraries …

java tomcat6 liferay portal permgen
How to interpret the output from "jmap -permstat"?

I'm trying to troubleshoot a permgen leak, and wanted to ask you folks for your opinions on how to interpret …

java permgen jmap
Is permanent generation part of the heap or does it lies in a different space of itself in jvm

I have seen multiple comments regarding this question - some say yes and some say no, and many of the …

jvm heap permgen