vote up 3 vote down star

I need to determine which locks are the most-contended-for in my application code. What free tools can I use to determine this ?

flag

67% accept rate

5 Answers

vote up 2 vote down check

you can use jconsole or jstack both in the bin directory of your JDK. The jconsole in particular allows you to connect to your process and monitor the threads including which resources they have locked, and it can help you identify a deadlock state.

link|flag
I think the question relates to some statistics about the lock contention during the application run - which are the hot locks in the system. – kd304 Jun 25 at 13:43
vote up 2 vote down

VisualVM (Part of Java 1.6) (see)

link|flag
Doesn't VisualVM require a separate plugin for that? – kd304 Jun 25 at 13:19
vote up 1 vote down

The JDK has some built-in support - under unix, kill -3 the process, under windows, ctrl-break. This will display a complete thread dump, followed by any deadlocks detected. Plus, in the thread dusmp you can see what threads own what locks, and compare them to each other.

link|flag
vote up 1 vote down

You can also view this in eclipse's debugger. In the Debug view, use the little down-triangle menu on the view toolbar to turn on "Java->Show Monitors".

When you suspect a deadlock, pause the application (select the application in the debug view and press the pause button on the debug view toolbar) and if there's a deadlock, the blocking threads will turn red. If you expand those threads you can see the lock contention.

link|flag
vote up 1 vote down

If you own the code, you could create/look for a Lock implementation which gathers contention statistics. If not, try the tools suggested in the other posts.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.