Deadlock in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T01:05:43Z http://stackoverflow.com/feeds/question/217113 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/217113/deadlock-in-java 7 Deadlock in Java israkir 2008-10-19T22:54:21Z 2009-11-02T13:20:16Z <p>Long time ago, I saved a sentence from a Java reference book: <em>"Java has no mechanism to handle deadlock. it won't even know deadlock occurred." (Head First Java 2nd Edition, p.516)</em></p> <p>So, what is about it? Is there a way to catch deadlock case in Java? I mean, is there a way that our code understands a deadlock case occurred?</p> http://stackoverflow.com/questions/217113/deadlock-in-java/217127#217127 3 Answer by Steve K for Deadlock in Java Steve K 2008-10-19T23:03:13Z 2008-10-19T23:03:13Z <p><a href="http://java.sun.com/javase/6/docs/technotes/guides/management/jconsole.html" rel="nofollow">JConsole</a> is able to detect deadlocks in a running application.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/217130#217130 1 Answer by Paul Tomblin for Deadlock in Java Paul Tomblin 2008-10-19T23:04:17Z 2008-10-19T23:04:17Z <p>Not exactly what you asked, but when a deadlock <em>does</em> occur, you can do a "kill -3" on the process id and it dumps a thread dump to stdout. Also, the 1.6 jvm has some tools to do the same thing in a gui manner.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/217135#217135 1 Answer by Paul Croarkin for Deadlock in Java Paul Croarkin 2008-10-19T23:09:56Z 2008-10-19T23:09:56Z <p>If you are running from the command-line and you suspect that you are deadlocked, try ctrl+break in windows (ctrl+\ in unix) to get a thread dump. See <a href="http://java.sun.com/javase/6/webnotes/trouble/TSG-VM/html/gbmps.html" rel="nofollow">http://java.sun.com/javase/6/webnotes/trouble/TSG-VM/html/gbmps.html</a></p> http://stackoverflow.com/questions/217113/deadlock-in-java/217179#217179 6 Answer by luke for Deadlock in Java luke 2008-10-19T23:47:31Z 2008-10-30T00:58:14Z <p>In general java does not offer deadlock detection. The synchronized keyword and built in monitors make it somewhat more difficult to reason about deadlock than in languages with explicit locking.</p> <p>I would suggest migrating to using java.util.concurrent.Lock locks and the like in order to make your locking schemes easier to reason about. In fact you could easily make your own implementation of the lock interface with deadlock detection. The algorithm is to basically traverse the lock dependency graph and look for a cycle. </p> http://stackoverflow.com/questions/217113/deadlock-in-java/217440#217440 3 Answer by Alex Miller for Deadlock in Java Alex Miller 2008-10-20T03:19:30Z 2008-10-20T03:19:30Z <p>JDK 5 and 6 will dump held lock information in a full thread dump (obtained with kill -3, jstack, jconsole, etc). JDK 6 even contains information about ReentrantLock and ReentrantReadWriteLock. It is possible from this information to diagnose a deadlock by finding a lock cycle: Thread A holds lock 1, Thread B holds lock 2, and either A is requesting 2 or B is requesting 1. From my experience, this is usually pretty obvious.</p> <p>Other analysis tools can actually find potential deadlocks even if they don't occur. Thread tools from vendors like OptimizeIt, JProbe, Coverity, etc are good places to look.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/217453#217453 1 Answer by wondersofcomputing for Deadlock in Java wondersofcomputing 2008-10-20T03:26:05Z 2008-10-20T03:26:05Z <p>Dr. Heinz Kabutz of JavaSpecialists has written an entertaining and informative <a href="http://www.javaspecialists.eu/archive/Issue160.html" rel="nofollow">newsletter issue on Java deadlocks</a> and describes something called a ThreadMXBean in <a href="http://www.javaspecialists.eu/archive/Issue130.html" rel="nofollow">another newsletter issue</a>. Between those, you should get a good idea of the issues and some pointers to doing your own instrumentation.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/217558#217558 1 Answer by paxdiablo for Deadlock in Java paxdiablo 2008-10-20T05:06:13Z 2008-10-20T05:06:13Z <p>Deadlocks can be avoided if you follow a simple rule: have all threads claim and release their locks in the same order. In this way, you never get into a situation where a deadlock can occur.</p> <p>Even the dining philosophers problem can be seen as a violation of this rule as it uses relative concepts of left and right spoon which result in different threads using different allocation orders of the spoons.</p> <p>In my opinion, prevention is better than cure.</p> <p>This is one of the two guidelines I like to follow to ensure threads work properly. The other is ensuring each thread is <strong>solely</strong> responsible for its own execution as it's the only one fully aware of what it's doing at any point in time.</p> <p>So that means no <code>Thread.stop</code> calls, use a global flag (or message queue or something like that) to tell another thread you want action taken. Then let that thread do the actual work.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/217693#217693 1 Answer by WMR for Deadlock in Java WMR 2008-10-20T07:03:28Z 2008-10-20T07:03:28Z <p>If you are on Java 5 you can call the method <code>findMonitorDeadlockedThreads()</code> on the ThreadMXBean which you can get through a call of <code>java.lang.management.ManagementFactory.getThreadMXBean()</code>. This will find deadlocks caused by object monitors only. On Java 6 there's <code>findDeadlockedThreads()</code> which will also find deadlocks caused by "ownable synchronizers (for example <code>ReentrandLock</code> and <code>ReentrantReadWriteLock</code>). </p> <p>Be aware that it will probably be expensive to call these methods, so they should be used for troubleshooting purposes only.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/217701#217701 10 Answer by staffan for Deadlock in Java staffan 2008-10-20T07:11:24Z 2008-10-20T07:11:24Z <p>Since JDK 1.5 there are very useful methods in the <code>java.lang.management</code> package to find and inspect deadlocks that occurs. See the <code>findMonitorDeadlockedThreads()</code> and <code>findDeadlockedThreads()</code> method of the <code>ThreadMXBean</code> class.</p> <p>A possible way to use this is to have a separate watchdog thread (or periodic task) that does this.</p> <p>Sample code:</p> <pre><code> ThreadMXBean tmx = ManagementFactory.getThreadMXBean(); long[] ids = tmx.findDeadlockedThreads(); if (ids != null) { ThreadInfo[] infos = tmx.getThreadInfo(ids, true, true); System.out.println("The following threads are deadlocked:"); for (ThreadInfo ti : infos) { System.out.println(ti); } } </code></pre> http://stackoverflow.com/questions/217113/deadlock-in-java/222281#222281 1 Answer by Scott Stanchfield for Deadlock in Java Scott Stanchfield 2008-10-21T15:23:39Z 2008-10-21T15:23:39Z <p>If you're debugging in eclipse, you can pause the application (select the app in the debug view and the little || button on the debug toolbar) and then it can report deadlocks.</p> <p>See <a href="http://runnerwhocodes.blogspot.com/2007/10/deadlock-detection-with-eclipse.html" rel="nofollow">http://runnerwhocodes.blogspot.com/2007/10/deadlock-detection-with-eclipse.html</a> for an example.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/1661294#1661294 0 Answer by Dave Griffiths for Deadlock in Java Dave Griffiths 2009-11-02T13:20:16Z 2009-11-02T13:20:16Z <p>Note that there is a type of deadlock using the concurrent package that is very hard to debug. That is where you have a ReentrantReadWriteLock and one thread grabs the read lock and then (say) tries to enter a monitor held by some other thread that is also waiting to grab the write lock. What makes it especially hard to debug is that there is no record of who has entered a read lock. It is simply a count. The thread might even have thrown an exception and died leaving the read count non-zero.</p> <p>Here is a sample deadlock that the findDeadlockedThreads method mentioned earlier won't get:</p> <pre><code>import java.util.concurrent.locks.*; import java.lang.management.*; public class LockTest { static ReentrantReadWriteLock lock = new ReentrantReadWriteLock(); public static void main(String[] args) throws Exception { Reader reader = new Reader(); Writer writer = new Writer(); sleep(10); System.out.println("finding deadlocked threads"); ThreadMXBean tmx = ManagementFactory.getThreadMXBean(); long[] ids = tmx.findDeadlockedThreads(); if (ids != null) { ThreadInfo[] infos = tmx.getThreadInfo(ids, true, true); System.out.println("the following threads are deadlocked:"); for (ThreadInfo ti : infos) { System.out.println(ti); } } System.out.println("finished finding deadlocked threads"); } static void sleep(int seconds) { try { Thread.currentThread().sleep(seconds*1000); } catch (InterruptedException e) {} } static class Reader implements Runnable { Reader() { new Thread(this).start(); } public void run() { sleep(2); System.out.println("reader thread getting lock"); lock.readLock().lock(); System.out.println("reader thread got lock"); synchronized (lock) { System.out.println("reader thread inside monitor!"); lock.readLock().unlock(); } } } static class Writer implements Runnable { Writer() { new Thread(this).start(); } public void run() { synchronized (lock) { sleep(4); System.out.println("writer thread getting lock"); lock.writeLock().lock(); System.out.println("writer thread got lock!"); } } } } </code></pre>