eclipse memory analyzer sees small part (363,2MB) of entire heap dump (8GB)
I was trying to investigate java.lang.OutOfMemoryError: GC limit exceeded which occurs at high load of our web app deployed in tomcat. Heap size was set to 8GB ( -Xms2048m -Xmx8192m ) At some point in time our application become unresponsive due to GC activity overhead. I could see in logs that Full GC was occurring multiple times in a row. So I took heap dump with following command ( jmap -F -dump:format=b,file=/root/dump2.hprof 4963 ). File containing dump was 9GB in size. After dump was taken (app was frozen for about 45minutes), multiple full GCs occured till OutOfMemoryError was thrown.