简体   繁体   中英

What does “retained size” mean in jVisualVM's memory inspector?

Jvisualvm heap dump on summary tab has functionality to inspect bigest objects by retained size.

What does retained really mean? How size of an object tree is calculated and shown here?
In case I can see here object (10M) and it's member object (5M) how should I calculate heap impact. Does both of them took 10M or 15M of the heap?
Why I can't see none of our facade huge application objects?

Thanks.

What does retained really mean?

How big it would be after a full gc. Eg a WeakHashMap with a large number of entries could be empty after a GC.

How size of an object tree is calculated and shown here?

The JVM determines this using an internal API.

In case I can see here object (10M) and it's member object (5M) how should I calculate heap impact. Does both of them took 10M or 15M of the heap?

The total is 10 MB. If this is your biggest problem, wouldn't worry about it unless you have a machine with only a few 100 MB. (In which case I would upgrade it)

Why I can't see none of our facade huge application objects?

Perhaps they are not as big in memory as you think?? eg they may be expensive to load, but that doesn't make them huge.

BTW: VisualVM is a nice free memory profiler but its only useful for finding obvious problems. I would try a commercial profiler like YourKit (which you can get a free eval license for) for comparison.

In case I can see here object (10M) and it's member object (5M) how should I calculate heap impact. Does both of them took 10M or 15M of the heap?

I think it actually took 15M of the heap, object retained size 10M means, 10M will be free when this object(10M) is swept. The member object(5M) is still referenced by other object, and still in the heap. Member object's retained size can be larger than object itself.

I think the best definition for "Retained" in the VisualVM is the amount of memory that will remain after garbage collection.

In some cases it can be bigger than the "Size" since it reference other objects (or collections) directly or indirectly.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM