Tagged Questions
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.
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 ...
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 ...
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 ...
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 ...
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 ...
0
votes
1answer
54 views
how to increase vm memory for NetBeans plug-in started from NB
I couldn't find info on how to do it. Increasing memory settings for NetBeans itself is the matter of updating /Applications/NetBeans/NetBeans 7.0.1.app/Contents/Resources/NetBeans/etc/netbeans.conf ...
0
votes
1answer
239 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 ...