jmap Questions

2

The java heap dumps generated in a Linux Machine (and most probably Unix machines as well) have restricted access. The heap can only be read by the owner of the process (ACL mask is set to 600). I ...
Woof asked 4/10, 2012 at 18:50

3

Solved

jmap -heap gives me output that says: New Generation Used 100%, Eden Space Used 100%, From Space Used 100%, To Space Used: 0%, Perm Generation Used: 38% Is this 100% of New, Eden, From space - a ...
Colemancolemanite asked 28/6, 2012 at 13:12

2

Solved

We have had our glassfish instance go down every two weeks for a while with a java.lang.OutOfMemoryError: PermGen space. I increased the PermGen space to 512MB and startet dumping memory usage with...
Nyssa asked 28/4, 2011 at 8:44

1

Solved

I'm using jmap to get a histogram of the heap. I'm not sure what the objects are that are referred to as "[C", "[S", "[I" and "[B". Anyone know? $ jmap -histo 3299 num #instances #bytes cl...
Pulverulent asked 27/10, 2011 at 9:3

3

Solved

What is difference between 'Shared Object Memory' and 'Heap Memory' in Java. Is it like 'Shared Object Memory' is superset of 'Heap Memory'? The source of this question is documentation of jmap. I...
Lhary asked 28/7, 2011 at 6:55

1

Solved

I've been experimenting with jmap -histo and jmap -dump today When run in this sequence jmap -dump:format=b,file=heap.1 [pid] jmap -dump:live,format=b,file=heap.2 [pid] jmap -dump:format=b,file=h...
Polysemy asked 20/6, 2011 at 22:0

1

Solved

Quick question Does the jmap heap dump include only the old generation, or also the young generation ? Long explanation I have 2 heap dump (jmap -heap:format=b 9999) : one of my server with ...
Stralsund asked 19/5, 2011 at 11:47

4

Solved

I know that it's possible to dump heap when an OutOfMemoryException is occuring on this JVM but is it possible to ask a live dump with tools like jmap or jconsole?
Tishtisha asked 10/12, 2010 at 7:1

2

I would like to find out what is the total heap size that is in use at a certain time by a Java process and I have to use jmap. The output of jmap -heap <pid> gives me something like this: A...
Lardy asked 24/2, 2010 at 8:25

4

Solved

I'm trying to track down a memory leak in a java process, using jmap and jhat. Every time I do this I see those weird notation for specific object types, like [S for string arrays and [C for Charac...
Platus asked 6/7, 2009 at 14:8

© 2022 - 2024 — McMap. All rights reserved.