This plugin for Eclipse Memory Analyzer allows to query heap dump via SQL
While MAT does have a query language, it does NOT allow to join, sort and group results. MAT Calcite plugin allows all the typical SQL operations (joins, filters, group by, order by, etc)
Query engine is implemented via Apache Calcite See Calcite SQL reference
Note for Memory Analyzer 1.7.0: you must disable "Eclipse Oxygen" update site before installing plugins otherwise your MAT installation will get broken.
To disable Eclipse Oxygen in MAT 1.7.0, perform the following:
- Open MAT Settings
- Open
Install/Update
,Available Software Sites
- Uncheck
Eclipse Oxygen
- Click
Ok
TL;DR: use the following update repository to install the latest released version: https://dl.bintray.com/vlsi/eclipse/updates/
To install Calcite SQL plugin, perform the following:
- Open
Help
,Install New Software...
- For MAT 1.7.0: in case you have not disabled Eclipse Oxygen update site, click
Available Software Sites
and disable Oxygen there - Click
Add
, it will open aAdd Repository
window - Type
Calcite SQL plugin site
to theName
field - Type
https://dl.bintray.com/vlsi/eclipse/updates/
to theLocation
field - Click
Ok
- All the checkboxes can be left by default (
Show only latest version
,Group items by category
, ...) - Check
SQL for Memory Analyzer
category - Click
Next
(Available Software) - Click
Next
(Installation Details) - Accept License
- Click
Finish
and restart MAT
The following update site can be used to get development builds: https://dl.bintray.com/vlsi/eclipse-test/updates/
Query that lists duplicate URLs:
select toString(file) file_str, count(*) cnt, sum(retainedSize(this)) sum_retained, sum(shallowSize(this)) sum_shallow
from java.net.URL
group by toString(file)
having count(*)>1
order by sum(retainedSize(this)) desc
To get an explain plan, use "explain plan for select ...":
EnumerableSort(sort0=[$2], dir0=[DESC])
View (expr#0..3=[{inputs}], expr#4=[1], expr#5=[>($t1, $t4)], proj#0..3=[{exprs}], $condition=[$t5])
EnumerableAggregate(group=[{0}], cnt=[COUNT()], sum_retained=[$SUM0($1)], sum_shallow=[$SUM0($2)])
View (expr#0=[{inputs}], expr#1=[0], expr#2=[GET_SNAPSHOT($t1)], expr#3=[GET_IOBJECT($t2, $t0)], expr#4=['file'], expr#5=[RESOLVE_REFERENCE($t3, $t4)], expr#6=[toString($t5)], expr#7=[TO_REFERENCE($t3)], expr#8=[retainedSize($t7)], expr#9=[shallowSize($t7)], file=[$t6], $f1=[$t8], $f2=[$t9])
GetObjectIdsByClass (class=java.net.URL)
select u.this, retainedSize(s.this)
from "java.lang.String" s
join "java.net.URL" u
on s.this = u.path
Here's execution plan:
View (expr#0..2=[{inputs}], expr#3=[retainedSize($t2)], this=[$t0], EXPR$1=[$t3])
HashJoin (condition=[=($1, $2)], joinType=[inner])
View (expr#0=[{inputs}], expr#1=[0], expr#2=[GET_SNAPSHOT($t1)], expr#3=[GET_IOBJECT($t2, $t0)], expr#4=[TO_REFERENCE($t3)], expr#5=['path'], expr#6=[RESOLVE_REFERENCE($t3, $t5)], this=[$t4], path=[$t6])
GetObjectIdsByClass (class=java.net.URL)
View (expr#0=[{inputs}], expr#1=[0], expr#2=[GET_SNAPSHOT($t1)], expr#3=[GET_IOBJECT($t2, $t0)], expr#4=[TO_REFERENCE($t3)], this=[$t4])
GetObjectIdsByClass (class=java.lang.String)
heap (default schema)
+- java (sub-schema name)
+- util (sub-schema name)
+- HashMap (table name).
This "table" would return all the instances of java.util.HashMap without subclasses
+- instanceof
+- java
+- util
+- HashMap (table name).
This would return HashMap instances as well as subclass instances (e.g. LinkedHashMap)
+- "java.util.HashMap" (table name)
This can be used as alternative.
+- ThreadStackFrames (table name)
Returns thread stack traces and local variable info
For instance: "java.lang.Object", "java.lang.String" Note: you need to use double quotes to quote identifiers Note: it is assumed that classes sharing the same name have the same fields
The fields become columns.
The following special columns are added:
this | reference to current object
The following functions can be used to work with column which represents reference:
getId | internal object identifier for referenced object
getAddress | memory address for referenced object
getType | class name of referenced object
toString | textual representation of referenced object
shallowSize | shallow heap size of referenced object
retainedSize | retained heap size for referenced object
length | length of referenced array
getSize | size of referenced collection, map or count of non-null elements in array
getByKey | extracts value for given string representation of key for referenced map
getField | obtains value of field with specified name for referenced object
The following table functions are supported
getValues(ref) | returns all values of a Java collection
getRetainedSet(ref) | returns the set of retained objects
getOutboundReferences(ref) | returns outbound references (name, this) pairs
getInboundReferences(ref) | returns inbound references (this)
CROSS APPLY
and OUTER APPLY
might be used to call table functions:
select u.this, refs.name, refs.this reference
from java.net.URL u
cross apply table(getOutboundReferences(u.this)) refs
Java 1.8 as a build JDK. The code should still be Java 1.7 compatible. Memory Analyzer Tool 1.5 or higher
Eclipse plugin cannot depend on jars from maven repository. It has to be a OSGi bundle, however Calcite is easier to reach via maven. So we use two-phase approach: bundle the dependencies in a single jar, then use this jar in eclipse project.
-
Build dependencies.jar
cd MatCalciteDependencies mvn install
This will create a jar with all the dependencies in
dependencies/target
folder. You do not need to touch/move/copy the jar. -
Build the plugin
mvn install # from the top-level folder
Note: this will copy
MatCalciteDependencies
toMatCalcitePlugin/MatCalcitePlugin/target/dependency
so Eclipse can find it.The final repository (aka "update site") with the plugin will be created in
eclipse-repository/target/eclipse-repository-1.0.0-SNAPSHOT.zip
It is not yet clear how to run the plugin via maven.
To launch via Eclipse, just open Eclipse project, double-click plugin.xml
, then click Launch an Eclipse application
.
- enhance heap schema
- context menu support
- heap-related filtering operators (instance of, dominator of, etc)
- interoperation with mat queries (histogram, retained set, etc)
- support external data providers (e.g. allow to join heapdump objects with csv file)
- projection support (do not compute unnecessary columns)
- optimizer rules
This library is distributed under terms of Apache 2 License
Vladimir Sitnikov sitnikov.vladimir@gmail.com