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.
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 ...
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 ...