Heap memory consumption

Hi

I checked performance for my application and I see the heap size is rather big:
HeapMemory

I do a heapdump with jmap and the file is 1,13 Gb.
I open heap.bin with Eclipse Memory Analyzer and it says the total memory is 90 Mb.

image

How much memory does the application really use?
Thank you

1 Like

Did you trigger Garbage Collection before checking memory size?

No, I did not know I have this option. I will test it tomorrow.
Kind regards

After Gabage Collection memory decreases close to the value showed in MAT, thank you!