Tagged Questions
A java heap/CPU profiling tool
8
votes
1answer
238 views
running hprof from sbt
How do I run hprof from sbt?
Are there different options to profile the CPU vs. the heap?
7
votes
2answers
207 views
Please help me understand these Clojure Hprof traces
I have some Clojure code that is simulating and then processing numerical data. The data are basically vectors of double values; the processing mainly involves summing their values in various ways. ...
6
votes
2answers
114 views
Profiling scala for loops using hprof
Word on the street is that for loops in scala are slower than while loops.
Slow:
for (i <- 0 until 10000) {
f(i)
}
Fast:
var i = 0
while (i < 10000) {
f(i)
i += 1
}
How do I use ...
4
votes
3answers
219 views
Java profiling: java.lang.Object.hashCode takes half of the CPU time but never explictly called
I have been benchmarked my multihreaded program using -agentlib:hprof=cpu=samples
and was surprised to find the following line in the results:
rank self accum count trace method
1 52.88% ...
4
votes
4answers
4k views
HPjmeter-like graphical tool to view -agentlib:hprof profiling output
What tools are available to view the output of the built-in JVM profiler? For example, I'm starting my JVM with:
-agentlib:hprof=cpu=times,thread=y,cutoff=0,format=a,file=someFile.hprof.txt
This ...
3
votes
1answer
162 views
How to define tasks to run with hprof from sbt 0.10
How do I define "run" and "test:run" tasks to run with hprof on forked JVM.
in build.sbt
fork in run := true
javaOptions in run += "-agentlib:hprof"
This setting makes both run tasks work with ...
3
votes
2answers
210 views
Is there a way to have an Android process produce a heap dump on an OutOfMemoryError?
The sun JVM supports a -XX:+HeapDumpOnOutOfMemoryError option to dump heap whenever a java process runs out of heap.
Is there a similar option on Android that will make an android app dump heap on an ...
3
votes
1answer
880 views
hprof file format
Does anyone know a reference for the .hprof (binary heap dumps) file format?
Does anyone know libraries that handle .hprof files? I know that hat does that and also VisualVM through a NetBeans ...
3
votes
2answers
1k views
Can I compare hprof/jmap dumps with VisualVM?
VisualVM crashes when I try to profile our application with it, but if I could load the jmap memory dumps I've done from our application into VisualVM, I could probably get the answers I need without ...
2
votes
1answer
129 views
why would an hprof file have a much smaller size than the amount of memory given to the jvm
Our code runs with -XX:+HeapDumpOnOutOfMemoryError flag so we get an hprof file on OOM.
Recently I got such a file from an installation, I opened it with Eclipse memory analyzer (MAT) and I can see ...
2
votes
3answers
2k views
Can I generate an HPROF file at will?
I have a java process which is acting dubiously. I'd like to see what's up using the various HPROF analysis tools.
How do I generate one on the fly?
2
votes
2answers
2k views
-XX:+HeapDumpOnOutOfMemoryError not creating hprof file in OOM
I start my java code (1.6.0_16 in Vista) with the following params (among others) -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=../logs. I run the code and I can see in the logs there are two OOM.
...
2
votes
2answers
903 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 ...
2
votes
1answer
122 views
Java: why are multiple objects showing up with runhprof output?
I was curious about the runhprof output? I am mainly concerned about the memory section. It looks like there are multiple entries of the same class. Why would that be.
Is there a way to get hprof ...
1
vote
2answers
168 views
Android: Memory Analyzer eclipse plugin(1.1) doesn't launch automatically when pressing ddms “hprof dump”
The older version 1.0 used to work fine. However after updating to 1.1 it gives an option to save hprof file. How can I open that file in eclipse?
Eclipse version is Helios 3.6.2
1
vote
0answers
43 views
hprof profiler output doesn't include line numbers regardless of `lineno` value
I'm running
java -cp some:jars:out \
-agentlib:hprof=cpu=times,format=a,file=java.hprof.txt,lineno=y,doe=y com.foo.Benchmark \
< /dev/null
and in the output I get stack frames without line ...
1
vote
0answers
55 views
Starting the Java HPROF profiler on-the-fly programmatically
I am trying to selectively monitor/profile a Java application when certain runtime conditions are met. I am already able to dump the heap on-the-fly using the HotSpotDiagnosticMXBean, which has been ...
1
vote
1answer
289 views
OQL syntax for counting objecs matching criteria
how can I count objets in Eclipse MAT using OQL syntax?
This doesn't work :
SELECT count(a) FROM org.hibernate.engine.EntityEntry a WHERE (toString(a.entityName)="my.pojo")
(I want to count the ...
1
vote
1answer
532 views
Why can't I get an HPROF dump from certain devices?
As has been detailed by many helpful sites, one way to analyze memory usage of Android apps is to execute a "kill -10 [PID]" to trigger an HPROF dump. This seems to work on some devices, and the ...
1
vote
1answer
374 views
Getting Hprof dump for other processes from application code
In my application , i have an option to capture the hprof dump. I
used
android.os.Debug.dumpHprofData (String fileName)
Initially i though the hprof data generated by the method above is for
the ...
1
vote
2answers
307 views
Memory dump much smaller than available memory
I have a Tomcat Application Server that is configured to create a memory dump on OOM, and it is started with -Xmx1024M, so a Gigabyte should be available to him.
Now I found one such dump and it ...
1
vote
3answers
401 views
How to gather profiling information for a Java 1.4 application?
A Java application I support that runs on JRE 1.4.2_12 is hanging near midnight every night. I'd like to try and record as much profiling information as I can to discover if there is an issue in the ...
0
votes
1answer
205 views
Android hprov-dump giving me Error: expecting 1.0.3
I've used the Dump HPROF File option in eclipses DDMS and made my hprof file called in.hprof, but when I try to do the hprov-conf in.hprof out.hprof from the command line it gives me the error "Error: ...
0
votes
0answers
97 views
-XX:+HeapDumpOnOutOfMemoryError in Eclipse Indigo with MAT (Not getting HPROF file)
I'm using MAT 1.1 in Eclipse Indigo, trying to debug an application I'm developing (using jnetpcap, for what it's worth). I've never used MAT before, but thought I had followed the directions, ...
0
votes
1answer
82 views
Stack trace for thread causing an OOM
I have a java application which is getting an OutOfMemoryError, for heap space. I've enabled -XX:HeapDumpOnOutOfMemoryError, and have the resultant hprof file.
The dump, however, shows that there is ...
0
votes
0answers
156 views
Why does ddms heap size not match HPROF?
I'm doing memory profiling on my Xoom application. DDMS says my heap size is "96.133M" and that I have "89.136M" allocated. I did a HPROF dump, ran hprof-conv, and then loaded the .hprof file into ...
0
votes
2answers
597 views
How do I get multiple hprof dumps in a Java WebStart (JNLP) application?
Working with a Java console application, I can do this:
java -agentlib:hprof=heap=dump,format=b MyClass
Then I can hit ctrl-\ (or ctrl-break on Windows) any time I would like to take a snapshot of ...
0
votes
2answers
304 views
How to measure cpu over-head introduced by the hprof profiler attached to a jvm
I'm running IBM's jvm (jdk 5.0) with the options -XrunHprof:format=b
I'm aware that instrumenting jvm with hprof involves a performance penality. I would like to quantify that penality. I know that ...
0
votes
3answers
361 views
Using hprof on a running application in Sun Java 5
We have an enterprise java application(ear - few ejb's and a webapp) deployed on to weblogic 10 and using Sun java 5. The response time , CPU and memory usage is fine under few users of load but if we ...
0
votes
2answers
591 views
What do these HPROF errors mean?
I'm seeing the following errors in my console logs:
HPROF ERROR: unable to resolve a method id
HPROF ERROR: got NULL trace in obj_alloc
HPROF ERROR: duplicate obj_id in object_alloc
HPROF ERROR: ...
0
votes
1answer
747 views
Way to convert java.hprof.txt to binary hprof format?
I have a java.hprof.txt file (automatically generated after an OutOfMemoryError) which I would like to convert to the binary hprof format. Is there any easy way to do this?