up vote 7 down vote favorite
10
share [g+] share [fb]

I tried to find a interpretation of the memory segments of the sun java vm, which would also understandable by an administrator. It should explain what heap / non-heap memory is and the significance of the different memory pools.

If it would somehow relate to the jconsole view, it would be a bonus.

Is there somewhere a website with such an explanation?

link|improve this question

40% accept rate
feedback

5 Answers

Here's a list of resources I had noted down. Some of these explain how the heap/garbage collection works and some have details on how to configure everything.

IBM

Sun

Other

link|improve this answer
+1 for good collections – grayger May 13 '09 at 16:20
I like the list, but there is not one explanation which would be suitable for a non-programmer. – Mauli May 15 '09 at 13:04
I don't know what it is you are after then. A really high level, non-technical overview? This stuff is very technical in nature, but you don't have to be a programmer to understand it (although it helps). I've added a JavaWorld article which gives some pictures of how the heap is broken down. I'm sure you'd find more stuff like this if you Google for some of the terms used in this article, e.g. Eden Space, New Generation, Old Generation, Survivor Space, Tenured, etc. – A_M May 15 '09 at 15:12
feedback

This article from Sun on Tuning Garbage Collection with the 5.0 Java Virtual Machine should have pretty good definitions and explanations of everything you are looking for; I don't believe a ton has changed on this subject between 5.0 and 6.0

There is also this whitepaper on Memory Management in the Java HotSpot Virtual Machine.

More Sun documentation, technical articles, and whitepapers.

link|improve this answer
I especially like the whitepaper, but as I said above, nothing suitable for a non-programmer. – Mauli May 15 '09 at 13:07
feedback

A fairly recent one: http://www.ibm.com/developerworks/java/library/j-nativememory-linux/

link|improve this answer
feedback

I find that Sun's Memory Management Whitepaper offers a good overview.

The final section offers useful links to delve deeper into areas of particular interest.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.