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

As seen in the Monitor for memory diagram (http://i.stack.imgur.com/sBKzO.png), around 4:35PM is when I started VisualVM Profiler and it caused memory usage to drop by ~7G which is quite significant. Why did this happen? It is as if starting the profiler allowed many more memory objects to be reclaimed -- but why weren't they garbage collected in the many GC rounds before that?

(Around 4:49 is when I clicked "Snapshot" in Profiler and there was a similar drop but to a lesser extent.)

I am quite confused and would greatly appreciate if anyone can shed some light on this behavior. Thanks!

share|improve this question
Attaching a profiler can cause more full GCs to be triggered, that would reduce the memory used briefly. – Peter Lawrey Jun 20 '11 at 17:36
Ahh that makes sense, I think that is indeed what's happening here, thanks a lot Peter! – welkin Jun 21 '11 at 15:13
Added as an answer so you can accept it. ;) – Peter Lawrey Jun 21 '11 at 15:15

1 Answer

up vote 0 down vote accepted

Attaching a profiler can cause more full GCs to be triggered, that would reduce the memory used briefly.

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.