Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using weblogic 9.2, jdk1.5, and oracle 10g for my application and getting some memory issues

I have a report servlet for 4 different kinds of reports of millions of db records

Now my problem is this, that when I run the report one at a time (single user), no memory issue occurs say

when report was executing memory was 775 mb when report finish executing memory was 836 mb

Now

sooner the concurrent users request for the reports the memory leakage starts

even after the end of each report only few memory is reclaimed say

when reports was executing memory was 33 mb when reports finish executing memory was 86 mb

it stays on 86mb forever until next request gets java.lang.OutOfMemoryError

I have called System.gc after the end of each report execution but it only gets down to a 86mb

~ I am instantiating a report object inside servlet's post method for each request

share|improve this question
System.gc is rarely needed. It doesn't do anything that the GC won't do on its own. What's your heap max size set to? It would be in the -Xmx____M flag passed to the JVM. Are you using Entity Beans for your queries? – Jonathan Aug 17 '11 at 10:47

1 Answer

What is your Heap set to with Xmx and Xms

Looks like you are creating a lot of temporary objects when running your report which reside in the Eden space (within Young space). These can be tuned by changing values of Xms with respect to Xmx.

Maybe when concurrent users hitting your app are having resource contention to underlying database or whatever else.

I suggest you profile your application with VisualVM or YourKit. Also read Troubleshooting Memory Leaks

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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