Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "MemoryAnalyzer/FAQ"

m (Problems Getting Heap Dumps)
m (Out of Memory Error while Running the Memory Analyzer)
(25 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
= Frequently Asked Questions =
 
= Frequently Asked Questions =
 
[[MemoryAnalyzer]], [http://www.eclipse.org/mat Home Page], [http://www.eclipse.org/newsportal/thread.php?group=eclipse.technology.memory-analyzer Forum]
 
[[MemoryAnalyzer]], [http://www.eclipse.org/mat Home Page], [http://www.eclipse.org/newsportal/thread.php?group=eclipse.technology.memory-analyzer Forum]
 +
 +
[[Category:Memory Analyzer]][[Category:FAQ]]
  
 
== Problems Starting the Memory Analyzer ==
 
== Problems Starting the Memory Analyzer ==
Line 8: Line 10:
 
The Memory Analyzer needs a '''Java 1.5''' VM to run (of course, heap dumps from JDK 1.4.2_12 on are supported).
 
The Memory Analyzer needs a '''Java 1.5''' VM to run (of course, heap dumps from JDK 1.4.2_12 on are supported).
 
If in doubt, provide the runtime VM on the command line:
 
If in doubt, provide the runtime VM on the command line:
<blockquote>MemoryAnalyzer.exe -vm &lt;path to 1.5 vm&gt;</blockquote>
+
<blockquote>MemoryAnalyzer.exe -vm &lt;path/to/java5/bin&gt;</blockquote>
 +
 
 +
Alternatively, edit the <code>MemoryAnalyzer.ini</code> to contain (on <strong>two lines</strong>):
 +
 
 +
<blockquote><code>-vm<br/>
 +
path/to/java5/bin</code></blockquote>
 +
 
 +
(This error happens because the MAT plug-in requires a JDK 1.5 via its manifest.mf file and the OSGi runtime dutifully does not activate the plug-in.)
 +
Memory Analyzer version 1.1 will give a better error message pop-up.
 +
<blockquote>
 +
Incompatible JVM
 +
<br/>
 +
Version 1.4.2 of the JVM is not suitable for this product. Version 1.5.0 or greater is required.
 +
</blockquote>
 +
 
 +
=== Out of Memory Error while Running the Memory Analyzer ===
 +
 
 +
Well, analyzing big heap dumps can also require more heap space. Give it some more memory (possible by running on a 64-bit machine):
 +
 
 +
<blockquote>MemoryAnalyzer.exe -vmargs -Xmx4g -XX:-UseGCOverheadLimit</blockquote>
 +
 
 +
Alternatively, edit the <code>MemoryAnalyzer.ini</code> to contain:
 +
 
 +
<blockquote>-vmargs<br/>
 +
-Xmx2g<br/>
 +
-XX:-UseGCOverheadLimit</blockquote>
 +
 
 +
As a rough guide, Memory Analyzer itself needs 32 to 64 bytes for each object in the analyzed heap, so -Xmx2g might allow a heap dump containing 30 to 60 million objects to be analyzed. Memory Analyzer 1.3 using -Xmx58g has successfully analyzed a heap dump containing over 948 million objects.
 +
 
 +
The initial parse and generation of the dominator tree uses the most memory, so it can be useful to do the initial parse on a large machine, then copy the heap dump and index files to a more convenient machine for further analysis.
 +
 
 +
For more details, check out the section [http://help.eclipse.org/juno/topic/org.eclipse.platform.doc.user/tasks/running_eclipse.htm Running Eclipse] in the Help Center. It also contains more details if you are running on Mac OS X.
 +
 
 +
If you are running the Memory Analyzer inside your Eclipse SDK, you need to edit the <code>eclipse.ini</code> file.
 +
 
 +
=== How to run on 64bit VM while the native SWT are 32bit ===
 +
 
 +
In short: if you run a 64bit VM, then all native parts also must be 64bit. But what if - like Motif on AIX - native SWT libraries are only available as 32bit version? One can still run the command line parsing on 64bit by executing the following command:
 +
 
 +
<blockquote><code>/usr/java5_64/jre/bin/java -jar plugins/org.eclipse.equinox.launcher_1*.jar -consoleLog -application org.eclipse.mat.api.parse path/to/dump.dmp.zip org.eclipse.mat.api:suspects org.eclipse.mat.api:overview org.eclipse.mat.api:top_components</code></blockquote>
 +
 
 +
or the latest version of Memory Analyzer has this <code>ParseHeapDump.sh</code> script, which relies on having java in the path.
 +
<pre><nowiki>
 +
#!/bin/sh
 +
#
 +
# This script parses a heap dump.
 +
# Adjust the path to java, version 5 or later, and the heap size as required.
 +
# Suitable for 64-bit and 32-bit Java, but a 64-bit Java is required
 +
# for larger heap sizes.
 +
#
 +
# Usage: ParseHeapDump.sh <path/to/dump.dmp.zip> [report]*
 +
#
 +
# The leak report has the id org.eclipse.mat.api:suspects
 +
# The top component report has the id org.eclipse.mat.api:top_components
 +
#
 +
 
 +
java -Xmx3072M -jar "`dirname "$0"`"/plugins/org.eclipse.equinox.launcher_1*.jar -consoleLog -application org.eclipse.mat.api.parse "$@"
 +
</nowiki></pre>
 +
 
 +
Using <code>plugins/org.eclipse.equinox.launcher_1*.jar</code> finds a version of the <strong>Equinox Launcher</strong> available in your installation without having to specify the exact name of the launcher file, as this version changes regularly!
 +
 
 +
The <code>org.eclipse.mat.api:suspects</code> argument creates a ZIP file containing the leak suspect report. This argument is optional.
 +
 
 +
The <code>org.eclipse.mat.api:overview</code> argument creates a ZIP file containing the overview report. This argument is optional.
 +
 
 +
The <code>org.eclipse.mat.api:top_components</code> argument creates a ZIP file containing the top components report. This argument is optional.
 +
 
 +
With Memory Analyzer 0.8, but not Memory Analyzer 1.0 or later, the IBM DTFJ adapter has to be initialized in advance. For parsing IBM dumps with the IBM DTFJ adapter you Memory Analyzer 0.8 should use this command:
 +
 
 +
<blockquote><code>/usr/java5_64/jre/bin/java -Dosgi.bundles=org.eclipse.mat.dtfj@4:start,org.eclipse.equinox.common@2:start,org.eclipse.update.configurator@3:start,org.eclipse.core.runtime@start
 +
-jar plugins/org.eclipse.equinox.launcher_*.jar -consoleLog -application org.eclipse.mat.api.parse path/to/mydump.dmp.zip org.eclipse.mat.api:suspects org.eclipse.mat.api:overview org.eclipse.mat.api:top_components</code></blockquote>
  
 
== Problems Getting Heap Dumps ==
 
== Problems Getting Heap Dumps ==
Line 23: Line 95:
  
 
If you are able to read the dump with other tools, please file a [https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MAT bug report].
 
If you are able to read the dump with other tools, please file a [https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MAT bug report].
 +
 +
=== Parser found N HPROF dumps in file X. Using dump index 0. See FAQ. ===
 +
 +
This warning message is printed to the log file, if the heap dump is written via the (obsolete and unstable) HPROF agent. The agent can write multiple heap dumps into one HPROF file. Memory Analyzer 1.2 and earlier has no UI support to decide which heap dump to read. By default, MAT takes the first heap dump. If you want to read an alternative dump, one has to start MAT with the system property MAT_HPROF_DUMP_NR=<index>.
 +
 +
Memory Analyzer 1.3 provides a dialog for the user to select the appropriate dump.
 +
 +
== Enable Debug Output ==
 +
 +
To show debug output of MAT:
 +
 +
1. Create or append to the file ".options" in the eclipse main directory the
 +
line:
 +
 +
<pre>
 +
org.eclipse.mat.parser/debug=true
 +
org.eclipse.mat.report/debug=true
 +
</pre>
 +
 +
2. Start eclipse with the -debug option. This can be done by appending -debug
 +
to the eclipse.ini file in the same directory as the .options file.
 +
 +
3. Be sure to also enable the -consoleLog option to actually see the output.
 +
 +
== Problems Interpreting Results ==
 +
 +
=== MAT Does Not Show the Complete Heap ===
 +
 +
''Symptom:'' When monitoring the memory usage interactively, the used heap size is much bigger than what MAT reports.
 +
 +
During the index creation, the Memory Analyzer removes unreachable objects
 +
because the various garbage collector algorithms tend to leave some garbage
 +
behind (if the object is too small, moving and re-assigning addresses is to
 +
expensive). This should, however, be no more than '''3 to 4 percent'''.
 +
If you want to know what objects are removed, enable debug output as explained here:
 +
[[MemoryAnalyzer/FAQ#Enable_Debug_Output]]
 +
 +
Another reason could be that the heap dump was not written properly. Especially older VM (1.4, 1.5) can have problems if the heap dump is written via jmap.
 +
 +
Otherwise, feel free to report a [https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MAT bug].
 +
 +
== How to analyse unreachable objects ==
 +
 +
By default unreachable objects are removed from the heap dump while parsing and will not appear in class histogram, dominator tree, etc. Yet it is possible to open a histogram of unreachable objects. You can do it:
 +
 +
1. From the link on the Overview page
 +
 +
2. From the Query Browser via '''Java Basics --> Unreachable Objects Histogram'''
 +
 +
This histogram has no object graph behind it(unreachable objects are removed during the parsing of the heap dump, only class names are stored). Thus it is not possible to see e.g. a list of references for a particular unreachable object.
 +
 +
But there is a possibility to keep unreachable objects while parsing. For this you need to parse the heap dump from the command line providing the argument '''-keep_unreachable_objects''', i.e. <code>ParseHeapDump.bat -keep_unreachable_objects <heap dump></code>
 +
 +
Memory Analyzer version 1.1 has a preference page option to select keep_unreachable_objects.

Revision as of 10:30, 26 June 2013

Frequently Asked Questions

MemoryAnalyzer, Home Page, Forum

Problems Starting the Memory Analyzer

java.lang.RuntimeException: No application id has been found.

The Memory Analyzer needs a Java 1.5 VM to run (of course, heap dumps from JDK 1.4.2_12 on are supported). If in doubt, provide the runtime VM on the command line:

MemoryAnalyzer.exe -vm <path/to/java5/bin>

Alternatively, edit the MemoryAnalyzer.ini to contain (on two lines):

-vm
path/to/java5/bin

(This error happens because the MAT plug-in requires a JDK 1.5 via its manifest.mf file and the OSGi runtime dutifully does not activate the plug-in.) Memory Analyzer version 1.1 will give a better error message pop-up.

Incompatible JVM
Version 1.4.2 of the JVM is not suitable for this product. Version 1.5.0 or greater is required.

Out of Memory Error while Running the Memory Analyzer

Well, analyzing big heap dumps can also require more heap space. Give it some more memory (possible by running on a 64-bit machine):

MemoryAnalyzer.exe -vmargs -Xmx4g -XX:-UseGCOverheadLimit

Alternatively, edit the MemoryAnalyzer.ini to contain:

-vmargs

-Xmx2g

-XX:-UseGCOverheadLimit

As a rough guide, Memory Analyzer itself needs 32 to 64 bytes for each object in the analyzed heap, so -Xmx2g might allow a heap dump containing 30 to 60 million objects to be analyzed. Memory Analyzer 1.3 using -Xmx58g has successfully analyzed a heap dump containing over 948 million objects.

The initial parse and generation of the dominator tree uses the most memory, so it can be useful to do the initial parse on a large machine, then copy the heap dump and index files to a more convenient machine for further analysis.

For more details, check out the section Running Eclipse in the Help Center. It also contains more details if you are running on Mac OS X.

If you are running the Memory Analyzer inside your Eclipse SDK, you need to edit the eclipse.ini file.

How to run on 64bit VM while the native SWT are 32bit

In short: if you run a 64bit VM, then all native parts also must be 64bit. But what if - like Motif on AIX - native SWT libraries are only available as 32bit version? One can still run the command line parsing on 64bit by executing the following command:

/usr/java5_64/jre/bin/java -jar plugins/org.eclipse.equinox.launcher_1*.jar -consoleLog -application org.eclipse.mat.api.parse path/to/dump.dmp.zip org.eclipse.mat.api:suspects org.eclipse.mat.api:overview org.eclipse.mat.api:top_components

or the latest version of Memory Analyzer has this ParseHeapDump.sh script, which relies on having java in the path.

#!/bin/sh
#
# This script parses a heap dump.
# Adjust the path to java, version 5 or later, and the heap size as required.
# Suitable for 64-bit and 32-bit Java, but a 64-bit Java is required
# for larger heap sizes.
#
# Usage: ParseHeapDump.sh <path/to/dump.dmp.zip> [report]*
#
# The leak report has the id org.eclipse.mat.api:suspects
# The top component report has the id org.eclipse.mat.api:top_components
#

java -Xmx3072M -jar "`dirname "$0"`"/plugins/org.eclipse.equinox.launcher_1*.jar -consoleLog -application org.eclipse.mat.api.parse "$@"

Using plugins/org.eclipse.equinox.launcher_1*.jar finds a version of the Equinox Launcher available in your installation without having to specify the exact name of the launcher file, as this version changes regularly!

The org.eclipse.mat.api:suspects argument creates a ZIP file containing the leak suspect report. This argument is optional.

The org.eclipse.mat.api:overview argument creates a ZIP file containing the overview report. This argument is optional.

The org.eclipse.mat.api:top_components argument creates a ZIP file containing the top components report. This argument is optional.

With Memory Analyzer 0.8, but not Memory Analyzer 1.0 or later, the IBM DTFJ adapter has to be initialized in advance. For parsing IBM dumps with the IBM DTFJ adapter you Memory Analyzer 0.8 should use this command:

/usr/java5_64/jre/bin/java -Dosgi.bundles=org.eclipse.mat.dtfj@4:start,org.eclipse.equinox.common@2:start,org.eclipse.update.configurator@3:start,org.eclipse.core.runtime@start -jar plugins/org.eclipse.equinox.launcher_*.jar -consoleLog -application org.eclipse.mat.api.parse path/to/mydump.dmp.zip org.eclipse.mat.api:suspects org.eclipse.mat.api:overview org.eclipse.mat.api:top_components

Problems Getting Heap Dumps

Error: Found instance segment but expected class segment

This error indicates an inconsistent heap dump: The data in the heap dump is written in various segments. In this case, an address expected in a class segment is written into a instance segment.

The problem has been reported in heap dumps generated by jmap on Linux and Solaris operation systems and jdk1.5.0_13 and below. Solution: use latest jdk/jmap version or use jconsole to write the heap dump (needs jdk6).

Error: Invalid heap dump file. Unsupported segment type 0 at position XZY

This almost always means the heap dumps has not been written properly by the Virtual Machine. The Memory Analyzer is not able to read the heap dump.

If you are able to read the dump with other tools, please file a bug report.

Parser found N HPROF dumps in file X. Using dump index 0. See FAQ.

This warning message is printed to the log file, if the heap dump is written via the (obsolete and unstable) HPROF agent. The agent can write multiple heap dumps into one HPROF file. Memory Analyzer 1.2 and earlier has no UI support to decide which heap dump to read. By default, MAT takes the first heap dump. If you want to read an alternative dump, one has to start MAT with the system property MAT_HPROF_DUMP_NR=<index>.

Memory Analyzer 1.3 provides a dialog for the user to select the appropriate dump.

Enable Debug Output

To show debug output of MAT:

1. Create or append to the file ".options" in the eclipse main directory the line:

org.eclipse.mat.parser/debug=true
org.eclipse.mat.report/debug=true

2. Start eclipse with the -debug option. This can be done by appending -debug to the eclipse.ini file in the same directory as the .options file.

3. Be sure to also enable the -consoleLog option to actually see the output.

Problems Interpreting Results

MAT Does Not Show the Complete Heap

Symptom: When monitoring the memory usage interactively, the used heap size is much bigger than what MAT reports.

During the index creation, the Memory Analyzer removes unreachable objects because the various garbage collector algorithms tend to leave some garbage behind (if the object is too small, moving and re-assigning addresses is to expensive). This should, however, be no more than 3 to 4 percent. If you want to know what objects are removed, enable debug output as explained here: MemoryAnalyzer/FAQ#Enable_Debug_Output

Another reason could be that the heap dump was not written properly. Especially older VM (1.4, 1.5) can have problems if the heap dump is written via jmap.

Otherwise, feel free to report a bug.

How to analyse unreachable objects

By default unreachable objects are removed from the heap dump while parsing and will not appear in class histogram, dominator tree, etc. Yet it is possible to open a histogram of unreachable objects. You can do it:

1. From the link on the Overview page

2. From the Query Browser via Java Basics --> Unreachable Objects Histogram

This histogram has no object graph behind it(unreachable objects are removed during the parsing of the heap dump, only class names are stored). Thus it is not possible to see e.g. a list of references for a particular unreachable object.

But there is a possibility to keep unreachable objects while parsing. For this you need to parse the heap dump from the command line providing the argument -keep_unreachable_objects, i.e. ParseHeapDump.bat -keep_unreachable_objects <heap dump>

Memory Analyzer version 1.1 has a preference page option to select keep_unreachable_objects.

Back to the top