The jmap is a Java Hotspot VM command-line utility that prints memory related statistics for a running VM or core file.

learn more… | top users | synonyms

0
votes
1answer
17 views

Execute jmap inside java program to generate dumps for the same process

Is it possible to execute 'jmap' at different spots inside my java-programm to generate dump files. I guess one must get the own process ID and than execute the command via Runtime().exec() or ...
1
vote
0answers
74 views

unable to convert java core dump to hprof with jmap

When trying to convert java core dump with jmap to hprof, i get this exection: Attaching to core core.26045 from executable /usr/java/jdk1.6.0_21/bin/java, please wait... Debugger attached ...
0
votes
0answers
27 views

jmap -histo error message “Not enough memory”

When trying the command jmap -histo in servers, getting an error message "not enough memory to process this command". I know that taking -histo will give a small file. But its just giving the error ...
1
vote
1answer
79 views

jhat throwing unrecognized magic number

I am trying to analyse a heap dump taken from a java process that ran into memory issues. The dump was taken using jmap. I am using jhat on the dump file - I am getting java.io.IOException: ...
0
votes
2answers
69 views

JMap dump format specification

Are there any open specifications for jmap heap dump format? Thanks for help!
1
vote
1answer
70 views

Will Java memory leak always show up in old gen consumption?

I've been debugging what I was told was a "memory leak" but comparing the old gen graphs of the bad build and the good build, they look almost identical. Is it safe to call this as not a memory leak ...
1
vote
3answers
613 views

How to analyse the heap dump using jmap in java

I am creating heap dump using below command: jmap -dump:file=DumpFile.txt <process-id> I have opened the generated file - DumpFile.txt but it is not in readable format. So please let me know ...
1
vote
1answer
48 views

What is the meaning of “From Space” and “To Space” shown in jmap?

I understand the difference between new gen / old gen /perm gen, but I don't know what "To Space" and "From Space" are. I am seeing my "From Space" hitting 99.8% used while the "To Space" always seems ...
5
votes
1answer
89 views

Statistics of objects in old generation?

Is there any tool to view object statistics on the different generations of a JVM Heap? I'm looking into a potential memory leak and need some data over the different generations. The use case I have ...
0
votes
1answer
86 views

blazesds consuming huge memory

BlazeDS 4 is used to communicate with Flex4.6. When flex client invokes a remote call on blazeds server, server returns an arrayList containing POJOs. Assuming each POJO mem size is 12 bytes, I am ...
1
vote
1answer
122 views

JMAP dump size is 4.5 GB. Eclipse MAT is showing total heap of 415 MB, how do i analyze the remaining dump?

I am running a web application using Tomcat 6. We are using open JDK 6. Ours is AMD 64bit Ubuntu 11.04 server. Memory dump is taken by this command jmap ...
1
vote
1answer
151 views

JMapFrame and GUI [Java]

Ok,hello everyone, First I'll show what I have: I have this code: public static void main(String[] arg) throws IOException { map = new DefaultMapContext(); map.setTitle("Visualizador UD - ...
1
vote
0answers
230 views

Unable to convert coredump to hprof

I have a core.31690 file which I want to convert to hprof. I tried: jmap -dump:format=b,file=mydump.hprof /usr/bin/java core.31690 but I got the following: Attaching to core core.31690 from ...
7
votes
5answers
424 views

Why GC doesn't collect my objects?

I have a java program which keeps calling java.util.zip to compress/decompress data. It runs out of memory within a few seconds. I had a memory dump with jmap and I'm viewing it with jhat. Finalizer ...
4
votes
1answer
642 views

How to interpret the output from “jmap -permstat”?

I'm trying to troubleshoot a permgen leak, and wanted to ask you folks for your opinions on how to interpret the output from jmap -permstat. Let's say that I have a jmap -permstat report, like this: ...
0
votes
1answer
46 views

jmap and object size

I run jmap on my JVM to try to understand some memory leaks and I discovered something strange : the java.lang.Long use 24 bytes instead of 8 !!! Can some tell me where is my mistake ? num ...
4
votes
2answers
249 views

Java Heap dump permissions

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 ...
0
votes
1answer
81 views

How can I analyze what objects are in which generation?

I have a long-running (multiple days) application with objects that I expect to stay around for varying lengths of time before they can be garbage collected. Let's say there's four categories: Very ...
0
votes
0answers
480 views

Heap Dump button disabled

The Heap Dump Button is disabled in the production weblogic server(VisualVM). Also when tried generating heap dump using JConsole it is throwing error "Unsupported Operation Exception" When tried ...
2
votes
2answers
229 views

Can jmap -histo trigger full garbage collection?

We know that jmap -histo:live triggers a full gc in order to determine live objects: Does jmap force garbage collection when the live option is used? Since jmap -histo considers all objects in the ...
1
vote
3answers
2k views

Java: New Generation Used 100%, Eden Space Used 100%, From Space Used 100%

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 ...
0
votes
1answer
231 views

JMAP -dump not excuted on java: runtime.exec() [closed]

i have tried to execute the 'jmap -dump:format =b; file" command in runtime.exec(), but it wont execute where other commands like date, pwd are working fine. can anyone know why? public static void ...
2
votes
2answers
3k views

Core dump taken with gcore, jmap conversion to hprof file format fails with Error message

We recently had one of our JVM's crash, leaving behind a core dump file produced by the gcore command. We want to have a look at the contents of the file and find out exactly what caused the crash. ...
1
vote
0answers
185 views

jmap -histo:live output is empty

Sometimes when I execute a command: "$JAVA_HOME/bin/jmap -histo:live " + pid + " > " + fileName I get an empty(blank) file. Why this may happen? P.S. This is using in autotest (test on memory ...
0
votes
2answers
74 views

Can I set up profiles like jhat or jmap to take snapshots at regular intervals or whenever exception is detected

So basically in our case the server goes down mysteriously and we often restart it and it starts to work fine. Till now we haven't been able to establish a pattern. Looking at thread dump did help but ...
0
votes
1answer
291 views

Basics of Jmapping?

I've done some search out there but couldn't find too much really helpful info on it, but could someone try to explain the basic of Java memory maps? Like where/how to use it, it's purpose, and maybe ...
0
votes
2answers
237 views

Want to confirm heap size that tomcat is using

I'm on ubuntu, and I need to confirm the heap size setting is being used by tomcat. How can I do that? I tried jmap but that doesn't seem to be on the server, can I download it individually somehow? ...
0
votes
0answers
576 views

Zend google maps and Jquery

I am working with Zend fw and I have tried to implement a Google map application in one of my pages without success. Map does not show. I have tried the Zend way using this tutorial: ...
8
votes
1answer
2k views

What are these objects in the jmap histogram?

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 ...
12
votes
3answers
534 views

'Shared Object Memory' vs 'Heap Memory' - Java

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. It ...
3
votes
1answer
1k views

Why would I see only “dead” classloaders from jmap -permstat (except the bootstrap)?

We've been pushing the permgen memory space in our app higher and higher and I'm trying to find out if we have a leak of some sort eating into the permgen area. We don't do hot undeploy/redeploy ...
9
votes
1answer
2k views

Does jmap force garbage collection when the live option is used?

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 ...
0
votes
1answer
416 views

jdk1.6 JMAP.EXE: Remote thread failed for unknown reason

I get this error when using the following batch file to take a core dump of a Java service running in a Windows console shell: The parent directory name of this script is: MyDIR Install dir is: ...
3
votes
1answer
2k views

Jmap heap dump, does it include young generation?

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 no ...
5
votes
2answers
2k views

Locating code that is filling PermGen with dead Groovy code

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 ...
1
vote
2answers
327 views

What is the Java class for a Tomcat session?

I made a JVM heap dump of my tomcat server with jmap, and I'd like to figure out what is the size of all the sessions in memory. As such I would like to know what type of object I should be looking ...
1
vote
2answers
960 views

is JVM stopped while executing jmap?

does my java application continue running while jmap is taking its memory dump? thanks
0
votes
1answer
430 views

get jmap-like (i.e. heap usage) information programmatically?

I'd like to get the following information (particularly the current usage) programmatically so I can display it in a "health status" page in the application (and yes, I know it changes frequently). ...
0
votes
2answers
226 views

I found what kind of objects are causing a memory leak, now what?

Using the jmap -histo command on a running process, every 30 minutes or so, I found one kind of object that is obviously a memory leak (in a desktop app). The object responsible for the leak (I.e. ...
2
votes
4answers
1k views

Is there a way to do a live heap dump with ibm-jdk for linux?

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?
0
votes
1answer
96 views

Using JMAP on Sun WebServer 6.1 Instance

I have a webapp running on Sun One WebServer and I would like to use jmap to dump the heap space memory. When I list the processes running on my server, no java processes are listed, but only webservd ...
0
votes
2answers
1k views

Can't dump heap on java process

Hi I have a java process which I want to debug. The problem with it is that it has too many open connections, so running jmap fails because it can't connect to process. Running jmap -F produces the ...
3
votes
2answers
8k views

Find current heap size with jmap

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: ...
3
votes
2answers
971 views

Best Tool to collect Java process statistics and Explanation of JMAP

I am looking at collecting more detailed java statistics (in plain text format) i.e. statistics that the jstat command emits - like garbage collection data etc. Can anyone please suggest me the best ...
9
votes
4answers
3k views

What do those strange class names in a java heap dump mean?

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 Character ...