PermGen exhaustions in combination with ThreadLocal are often caused by classloader leaks.
An example:
Imagine an application server which has a pool of worker threads.
They will be kept alive until application server termination.
A deployed web application uses a static ThreadLocal in one of its classes in order to store some thread-local data, an instance of another class (lets call it SomeClass) of the web application. This is done within the worker thread (e.g. this action originates from a HTTP request).
Important:
By definition, a reference to a ThreadLocal value is kept until the "owning" thread dies or if the ThreadLocal itself is no longer reachable.
If the web application fails to clear the reference to the ThreadLocal on shutdown, bad things will happen:
Because the worker thread will usually never die and the reference to the ThreadLocal is static, the ThreadLocal value still references the instance of SomeClass, a web application's class - even if the web application has been stopped!
As a consequence, the web application's classloader cannot be garbage collected, which means that all classes (and all static data) of the web application remain loaded (this affects the PermGen memory pool as well as the heap).
Every redeployment iteration of the web application will increase permgen (and heap) usage.
=> This is the permgen leak
One popular example of this kind of leak is this bug in log4j (fixed in the meanwhile).
转载于:https://www.cnblogs.com/Guoyutian/p/5058598.html
本文探讨了在应用服务器中,结合使用PermGen和ThreadLocal可能导致的类加载器泄漏问题。具体案例分析了一个Web应用程序如何因未能清理ThreadLocal引用而引发PermGen内存泄漏,每次重新部署都会增加PermGen和堆内存的使用。
1666

被折叠的 条评论
为什么被折叠?



