Tagged Questions
33
votes
19answers
17k views
Which Java profiler is better: JProfiler or YourKit?
Which profiler is better for general purpose profiling and heap analysis? 90% of our apps are standalone command line programs with substantial database and numeric processing. The other 10% are ...
10
votes
2answers
495 views
Profiling Java running by JNI calls
I have a C++ code that upon execution:
Loads JVM (I have full control on how to load the JVM), and call Java methods (from loaded classes) using C JNI code. The Java code has no Main() and it is ...
4
votes
6answers
400 views
Profiling native methods in Java - strange results
I have been using Yourkit 8.0 to profile a mathematically-intensive application running under Mac OS X (10.5.7, Apple JDK 1.6.0_06-b06-57), and have noticed some strange behavior in the CPU profiling ...
3
votes
2answers
176 views
Does YourKit report ReentrantLocks?
I am trying to reduce the lock contention on a particular code-path in my application. To identify code with high lock contention, I connect YourKit to my application and use the "Monitor" tab and see ...
2
votes
2answers
134 views
tools similar to yourkit?
I've been using yourkit, it's a great tool. I normally use the CPU consumption level curve, and thread drill-down against time.
but recently I am suspecting that yourkit is causing the random ...
2
votes
3answers
310 views
How to measure I/O time for a java application running on ubuntu?
I would like to gather amount of time my application is waiting for I/O. I am running this java application on ubuntu/linux. I am using yourkit profiler. Suggest if there any other profiling tool for ...
1
vote
5answers
204 views
Profiled app with YourKit, still can't identify the CPU hog
I've got a Java application that is consuming 100% of the CPU most of the time (as indicated by cacti and top monitoring). We fired up YourKit (which confirms the CPU resource issue) and it identifies ...
1
vote
3answers
200 views
Java Profiling Tool for CPU consumption
I have used JProfiler, JProbe, AppSight, YourKit for the finding out what code is consuming CPU.
But YourKit looks better than others.
Is there anything better ?
1
vote
5answers
962 views
How do I connect to a Java command-line tool with the YourKit Java Profiler?
I've build a command-line tool in Java, which I would now like to profile with YourKit. I launch the command-line tool with something like:
$ java -classpath .:foo.bar.jar com.foobar.tools.TheTool ...
0
votes
2answers
74 views
I'm running an algorithm entirely from memory (no IO), yet my CPU use is below 25%. What may be the possible bottlenecks?
I've been running a single-threaded brute force version of the famous Traveling Salesman Problem, and YourKit is pinpointing me the fact that the CPU is being used at 25%, at most.
What's the reason ...
0
votes
0answers
32 views
YourKit is showing me that although my code makes use of 8 fixed threads, the JVM seems to be switching which 8 threads are actually being used. Why?
I'm running YourKit over a simple program I've wrote that tries to solve the Traveling Salesman Problem by brute force, running several threads at once (in the current case, 8).
As the below picture ...
0
votes
1answer
46 views
VisualVM and YourKit report different retained sizes for the same object
I'm using JVisualVM and YourKit to analyze a heap memory dump (created using jmap) and noticed that for the same object they report two very different retained sizes! Does anybody know what the cause ...
0
votes
2answers
118 views
Why does Yourkit 8.X is recommended to profile only java 5 applications?
When upgrading yourkit profiler I've noticed the following message at their web site:
YourKit Java Profiler 8.0.30
Use version 8.0 to profile Java 5
applications only. To profile Java 6
...
0
votes
2answers
98 views
Difficulty locating the objects in application mentioned in Java Profiler
I am using YourKit Java profiler for my web application which is hosted on Weblogic. I am investigating a memory leak currently. The profiler shows some quarter million char[] objects that are ...
0
votes
1answer
181 views
YourKit in Production
I have recently downloaded a trial version of YourKit and after playing with it for a while it looks great, but I am concerned about running it in the production environment. Previous profilers I have ...