14

I tried to find an interpretation of the memory segments of the sun java vm, which would also be 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?

Balder
  • 8,623
  • 4
  • 39
  • 61
Mauli
  • 16,863
  • 27
  • 87
  • 114

5 Answers5

26

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

basZero
  • 4,129
  • 9
  • 51
  • 89
A_M
  • 7,693
  • 6
  • 33
  • 37
  • 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
  • Funny thins is that how I got here. Someone rejected another user's edit/fixes. I guess, because they removed the deadlinks instead of replacing them -- Thanks basZero – Sully Feb 05 '14 at 12:26
6

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.

matt b
  • 138,234
  • 66
  • 282
  • 345
  • I especially like the whitepaper, but as I said above, nothing suitable for a non-programmer. – Mauli May 15 '09 at 13:07
4

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

cadrian
  • 7,332
  • 2
  • 33
  • 42
2

Also, please see these JavaOne sessions for JVM GC. (including video playback)

UPDATE:

Oracle changed JavaOne contents as paid one. Please see this article for G1 garbage collector instead.

Wonil
  • 6,364
  • 2
  • 37
  • 55
1

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.

Leigh
  • 4,268
  • 1
  • 27
  • 17