Tagged Questions
The jhat tag has no wiki summary.
17
votes
12answers
19k views
How to find a Java Memory Leak
How do you find a memory leak in Java (using for example JHat)? I have tried to load the heap dump up in JHat to take a basic look. However I do not understand how I am supposed to be able to find the ...
11
votes
2answers
3k views
What does the class class [B represents in Java?
I am trying out a tool jhat here to test my java memory usage. It reads in a heap dump file and prints out information as html. However, the tables shows as follows:
Class Instance Count Total Size
...
5
votes
3answers
367 views
Better ways to identify objects not getting garbage collected?
In a nutshell
I have a program that is gradually using more and more memory over time. I am using jmap and jhat to try and diagnose it but am still not quite there.
Background
The program is a ...
5
votes
4answers
2k views
Loading a large hprof into jhat
I have a 6.5GB Hprof file that was dumped by a 64-bit JVM using the -XX:-HeapDumpOnOutOfMemoryError option. I have it sitting on a 16GB 64-bit machine, and am trying to get it into jhat, but it keeps ...
3
votes
1answer
497 views
OQL query to find all instances and sub-instances of a given class refered to from a session
I'm trying to use jhat/OQL to trace a memory leak in our Tomcat container. The question I want to ask is:
"Show me all the instances (and sub-instances) of foo.bar.Cacheable class that are reachable ...
2
votes
3answers
698 views
How to analyze the heap dump using jhat
I ran the jhat on the heap dump, it has generated the reports. How do i use the report to analyze the heap.I couldn't understand completely other than the instance count. Is there any references or ...
2
votes
2answers
909 views
Why doesn't the -baseline option of jhat work?
How come every object appears to be marked new, instead of just objects that are in the second snapshot but not in my baseline snapshot? Looking around online, I see some suggestions that I need to ...
1
vote
1answer
58 views
Why is usage of javascript within visualvm (jhat?) oql sometimes confusing?
I am interested in knowing why visualvm OQL has a problem with the following statement:
select filter(heap.objects("java.util.HashMap"), isTrue(it));
function isTrue(object) {
return true;
}
...
1
vote
0answers
63 views
What is the memory overhead for analyzing a heap with jhat?
jhat is a great tool for analyzing Java heap dumps, but for large heaps its easy to waste a lot of time. Give jhat a runtime heap too small, and it may take 15 minutes to fail and run out of memory.
...
1
vote
1answer
112 views
Trouble with OQL 'unique' function of 'jhat' in Java 1.6.0_24
this is my first posted question. I have a fairly complicated OQL query which lists static fields of classes loaded in our packages. One problem I'm seeing with running the query against 'jhat' of ...
1
vote
1answer
265 views
JHAT cannot analyze a memory dump
I have a Memory Dump file and JHAT gives the following message and I cannot analyze anything (as no data is displayed.
Resolving 0 objects...
WARNING: hprof file does not include ...
1
vote
1answer
51 views
Is there any basic gc generation size and ratios for application in production
How much should be the initial size of the young generation?
How much should be -XX:+NewRatio?
-XX:+SurvivourRatio?
What should be the ratio between perm and old generation.?
0
votes
0answers
6 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
16 views
jhat OQL AND in where clause
How to do a conjunction [AND] in jhat OQL where clause?
I want do this:
select s from sun.security.x509.X500Name s where s.canonicalDn !=null and
/tiberium/(s.canonicalDn.toString())
That is- ...
0
votes
0answers
12 views
Is heap dump normal? Lots of Tomcat ResourceEntry instances
My heap dump (which I'm analyzing with jhat) shows the class:
org.apache.catalina.loader.ResourceEntry
as having the most instances. Is this normal or the sign of a leak?
All the instances have ...
0
votes
0answers
32 views
Using Jhat heap built-in object
Can anybody show an example of how to use heap.heapForEachClass in a select statement?
It would be great if you could provide some links with different examples of queries (other than those in the ...
0
votes
3answers
611 views
Huge heap dump (11GB) - Jhat failed & Eclipse MAT needed help
We got a memory error in our EA and we used -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/path/to/some/dir to dump the heap at the time of OOM.
We had a heap memory of 12GB and perm gen of 256MB.
...
0
votes
2answers
1k views
OQL for finding new objects only in heap dumps?
Does anyone know the OQL syntax for finding new objects only in a heap output? I can't find good documentation on OQL options, sun even has an example of new-only output without sample syntax of the ...