I have a java process running. With jstat I can see the the permgen utilisation and the capacity are almost identical. i.e. the current capacity is almost full but still well below the max permgensize specified.

Is this standard or should I expect to see a degree of headroom space allocated?

Standard Sun 1.5 JVM

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

permgen is something precious, so java will not allocate more than it needs to. Keep in mind that it is non-heap, so once used it will not be returned to the system until the VM dies.

So while its a good thing to have less PermGen used then MaxPermGen permits, its fine and welcome if the capacity (currently allocated) and utilisation (used part of that allocation) are close to each other.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.