After stopping my web app, a significant amount of PermGen is not being released. The culprit seems to be the WebappClassLoader (in Tomcat, but it happens in Jetty too), which is kept in memory by references from a bunch of other objects. The following image shows that objects that refer to WebappClassLoader, and the things that refer to them, and so on.

alt text

One of the clingy objects seems to be an instance of net.lag.logging.Level$INFO$, to which a reference is stored in the static known array in java.util.logging.Level.

It appears that java.util.logging.Level keeps a static reference to all instances of itself. Bad, nasty java.util.logging.Level! Can I do anything about it? The java.util.logging framework is used by a third-party library, so I don't think I have the option of not using it.

link|improve this question

What unit is that, bytes? Logging is using up 8 bytes and you are worried about it? – bwawok Oct 19 '10 at 2:21
Yes, it's bytes, and no I don't care about 8 bytes. I do care that a reference to WebappClassLoader prevents it from being garbage collected; and it accounts for about 10 megabytes. – David Oct 19 '10 at 2:23
Which JVM are you using? – Dilum Ranatunga Oct 19 '10 at 2:31
Also, Level (as opposed to Logger) instances are a small, fixed set, e.g. INFO, FINER, etc. Is some web app creating a new subtype? Otherwise, why would the instance keep the webapp from being GC'd? – Dilum Ranatunga Oct 19 '10 at 2:34
1  
If it's any consolation, this has long been a known issue with the Level class, and Sun engineers were discussing filing bugs against the class... four years ago. – matt b Oct 19 '10 at 2:51
show 2 more comments
feedback

1 Answer

up vote 2 down vote accepted

Short of making Sun fix the Level implementation or changing your library to do away with its custom Level, the only way I can think of is moving the library out of the web application classloader and into the container (shared or common classloader).

If you do this, there will still be the custom instances of Level, but they will no longer be linked to the web application. So that if you bounce the webapp, it will keep recycling the same Levels (not leaking new ones).

Of course, this will affect the classloader for the library, and it might break. Some things need to be in the web application and cannot be moved to the container. Even if the library continues to work, it might itself keep similar references to other parts of the web application around, which would be the exact same problem again. Still, give it a try.

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.