|
| Re: memory growth exceeding -Xmx value, what does this mean? |
 |
Mon, 21 Apr 2008 00:03:11 -070 |
Hello m_preston,
Comparing your two memusage reports, the obvious areas of growth are:
1) Heap growing from 2 to 4 GB (no surprise there)
2) Various class related data structures growing due to number of loaded classes
increasing from 18802 to 63793
So it looks like your application is leaking memory by constantly generating new
classes that are not getting GCed. A class can not be GCed if there are any live
instances of it on the heap.
|
| Post Reply
|
|
|
|
|
|
|
|
|
|