On 7/29/2013 1:12 AM, Furkan KAMACI wrote: > When I look at my dashboard I see that 27.30 GB available for JVM, 24.77 > GB is gray and 16.50 GB is black. I don't do anything on my machine right > now. Did it cache documents or is there any problem, how can I learn it?
This is simple information from Java, and reflects how java memory allocation works. The 27.3 GB for the entire bar is the absolute max size of the java heap (-Xmx setting). The 24.77 GB gray section is the current maximum size of the heap - this is the amount of memory allocated from the operating system for the heap. The 16.5 GB dark gray section is the amount of heap memory currently in use by the java program. This number also includes all garbage accumulated by the program that hasn't been collected yet. Thanks, Shawn