Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I compile a jar file, and i write to the Log every half a minute to check threads and memory situation.

Attached are the start of the log, and the end of the day log, after this software was stuck, and stop working.

In the middle of the day several automatic operations happened. I received quotes about 40 per seconds, and finished to take care of every one of the quotes before the next came.

Plus, every 4 seconds i write a map with info to the DB.

Any ideas why heap size in increasing? (look at currHeapSize)

morning: enter image description here

evening: enter image description here

share|improve this question
1  
Have you tried to profile your application and check which objects use memory? – assylias Feb 11 at 10:36
i will try, thanks – user502967 Feb 11 at 17:40

1 Answer

up vote 1 down vote accepted

Any ideas why heap size in increasing?

These are classic symptoms of a Java storage leak. Somewhere in your application is a data structure that is accumulating more and more objects, and preventing them from being garbage collected.

The best way to find a problem like this is to use a memory profiler. The Answers to this Question explain.

share|improve this answer
thank u very much! – user502967 Feb 11 at 17:41

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.