What is the most frequent concurrency problem you've encountered in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T19:58:55Z http://stackoverflow.com/feeds/question/461896 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java 32 What is the most frequent concurrency problem you've encountered in Java? Alex Miller 2009-01-20T15:58:38Z 2009-09-11T18:06:20Z <p>This is a poll of sorts about common concurrency problems in Java. An example might be the classic deadlock or race condition or perhaps EDT threading bugs in Swing. I'm interested both in a breadth of possible issues but also in what issues are most common. So, please leave one specific answer of a Java concurrency bug per comment and vote up if you see one you've encountered. Thanks!</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461910#461910 20 Answer by Alex Miller for What is the most frequent concurrency problem you've encountered in Java? Alex Miller 2009-01-20T16:02:25Z 2009-01-20T16:02:25Z <p>One classic problem is changing the object you're synchronizing on while synchronizing on it:</p> <pre><code>synchronized(foo) { foo = ... } </code></pre> <p>Other concurrent threads are then synchronizing on a different object and this block does not provide the mutual exclusion you expect.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461913#461913 2 Answer by kohlerm for What is the most frequent concurrency problem you've encountered in Java? kohlerm 2009-01-20T16:03:01Z 2009-01-20T16:03:01Z <p>Use of a global object such as a static variable for locking. </p> <p>This leads to very bad performance because of contention. </p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461922#461922 6 Answer by Dave Ray for What is the most frequent concurrency problem you've encountered in Java? Dave Ray 2009-01-20T16:04:56Z 2009-01-20T16:11:44Z <p>My biggest problem has always been deadlocks, especially caused by listeners that are fired with a lock held. In these cases, it's really easy to get inverted locking between two threads. In my case, between a simulation running in one thread and a visualization of the simulation running in the UI thread.</p> <p>EDIT: Moved second part to separate answer.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461947#461947 4 Answer by Alex Miller for What is the most frequent concurrency problem you've encountered in Java? Alex Miller 2009-01-20T16:07:50Z 2009-01-20T16:22:53Z <p>Unbalanced synchronization, particularly against Maps seems to be a fairly common problem. Many people believe that synchronizing on puts to a Map (not a ConcurrentMap, but say a HashMap) and not synchronizing on gets is sufficient. This however can lead to an infinite loop during re-hash. </p> <p>The same problem (partial synchronization) can occur anywhere you have shared state with reads and writes however. </p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461961#461961 2 Answer by Brian Clapper for What is the most frequent concurrency problem you've encountered in Java? Brian Clapper 2009-01-20T16:11:51Z 2009-01-20T16:11:51Z <p>Honesly? Prior to the advent of <code>java.util.concurrent</code>, the most common problem I routinely ran into was what I call "thread-thrashing": Applications that use threads for concurrency, but spawn too many of them and end up thrashing.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461964#461964 4 Answer by Dave Ray for What is the most frequent concurrency problem you've encountered in Java? Dave Ray 2009-01-20T16:12:13Z 2009-01-20T16:12:13Z <p>The dumbest mistake I frequently make is forgetting to synchronize before calling notify() or wait() on an object.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461977#461977 15 Answer by Fabian Steeg for What is the most frequent concurrency problem you've encountered in Java? Fabian Steeg 2009-01-20T16:14:23Z 2009-01-20T16:14:23Z <p>Though probably not exactly what you are asking for, the most frequent concurrency-related problem I've encountered (probably because it comes up in normal single-threaded code) is a</p> <p><code>java.util.ConcurrentModificationException</code></p> <p>caused by things like:</p> <pre><code>List&lt;String&gt; list = new ArrayList&lt;String&gt;(Arrays.asList("a", "b", "c")); for (String string : list) { list.remove(string); } </code></pre> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461984#461984 5 Answer by bcash for What is the most frequent concurrency problem you've encountered in Java? bcash 2009-01-20T16:15:37Z 2009-01-20T16:15:37Z <p>Multiple objects that are lock protected but are commonly accessed in succession. We've run into a couple of cases where the locks are obtained by different code in different orders, resulting in deadlock. </p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461990#461990 13 Answer by Dave Ray for What is the most frequent concurrency problem you've encountered in Java? Dave Ray 2009-01-20T16:16:43Z 2009-01-20T16:43:32Z <p>Not properly synchronizing on objects returned by Collections.synchronizedXXX(), especially during iteration or multiple operations:</p> <pre><code>Map&lt;String, String&gt; map = Collections.synchronizedMap(new HashMap&lt;String, String&gt;()); ... if(!map.containsKey("foo")) map.put("foo", "bar"); </code></pre> <p>That's <strong>wrong</strong>. It should be:</p> <pre><code>synchronized(map) { if(!map.containsKey("foo")) map.put("foo", "bar"); } </code></pre> <p>Or with a ConcurrentMap implementation:</p> <pre><code>map.putIfAbsent("foo", "bar"); </code></pre> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461994#461994 24 Answer by Alex Miller for What is the most frequent concurrency problem you've encountered in Java? Alex Miller 2009-01-20T16:17:36Z 2009-01-20T16:17:36Z <p>A common problem is using classes like Calendar and SimpleDateFormat from multiple threads (often by caching them in a static variable) without synchronization. These classes are not thread-safe so multi-threaded access will ultimately cause strange problems with inconsistent state.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462035#462035 12 Answer by Alex Miller for What is the most frequent concurrency problem you've encountered in Java? Alex Miller 2009-01-20T16:25:55Z 2009-01-20T16:25:55Z <p>Forgetting to wait() (or Condition.await()) in a loop, checking that the waiting condition is actually true. Without this, you run into bugs from spurious wait() wakeups. Canonical usage should be:</p> <pre><code> synchronized (obj) { while (&lt;condition does not hold&gt;) { obj.wait(); } // do stuff based on condition being true } </code></pre> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462050#462050 2 Answer by hamletdarcy for What is the most frequent concurrency problem you've encountered in Java? hamletdarcy 2009-01-20T16:31:24Z 2009-01-20T16:31:24Z <p>Race conditions during an object's finalize/release/shutdown/destructor method and normal invocations. </p> <p>From Java, I do a lot of integration with resources that need to be closed, such as COM objects or Flash players. Developers always forget to do this properly and end up having a thread call an object that has been shutdown. </p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462058#462058 0 Answer by Javamann for What is the most frequent concurrency problem you've encountered in Java? Javamann 2009-01-20T16:33:58Z 2009-01-20T16:33:58Z <p>The biggest problem I have run across is developers that add multi-threading support as an afterthought. </p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462095#462095 5 Answer by Tom Hawtin - tackline for What is the most frequent concurrency problem you've encountered in Java? Tom Hawtin - tackline 2009-01-20T16:45:15Z 2009-01-20T16:45:15Z <p>Thinking you are writing single-threaded code, but using mutable statics (including singletons). Obviously they will be shared between threads. This happens surprisingly often.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462108#462108 3 Answer by Tom Hawtin - tackline for What is the most frequent concurrency problem you've encountered in Java? Tom Hawtin - tackline 2009-01-20T16:48:33Z 2009-01-20T16:58:17Z <p>Not realising the <code>java.awt.EventQueue.invokeAndWait</code> <a href="http://www.jroller.com/tackline/entry/detecting_invokeandwait_abuse" rel="nofollow">acts as if it holds a lock</a> (exclusive access to the Event Dispatch Thread, EDT). The great thing about deadlocks is that even if that happens rarely you can grab a stack trace with jstack or the like. I've seen this in a number of widely used programs (a fix to a problem I have only seen occur once in Netbeans should be included in the next release).</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462131#462131 2 Answer by Tom Hawtin - tackline for What is the most frequent concurrency problem you've encountered in Java? Tom Hawtin - tackline 2009-01-20T16:53:09Z 2009-01-20T16:53:09Z <p>Not realising that the <code>this</code> in an inner class is not the <code>this</code> of the outer class. Typically in an anonymous inner class that implements <code>Runnable</code>. The root problem is that because synchronisation is part of all <code>Object</code>s there is effectively no static type checking. I've seen this at least twice on usenet, and it also appears in Brian Goetz'z Java Concurrency in Practice.</p> <p>BGGA closures don't suffer from this as there is no <code>this</code> for the closure (<code>this</code> references the outer class). If you use non-<code>this</code> objects as locks then it gets around this problem and others.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462149#462149 7 Answer by Eric Burke for What is the most frequent concurrency problem you've encountered in Java? Eric Burke 2009-01-20T17:01:15Z 2009-01-20T17:01:15Z <p>The most common bug we see where I work is programmers perform long operations, like server calls, on the EDT, locking up the GUI for a few seconds and making the app unresponsive.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462170#462170 11 Answer by Eric Burke for What is the most frequent concurrency problem you've encountered in Java? Eric Burke 2009-01-20T17:06:30Z 2009-01-20T17:06:30Z <p>Another common bug is poor exception handling. When a background thread throws an exception, if you don't handle it properly, you might not see the stack trace at all. Or perhaps your background task stops running and never starts again because you failed to handle the exception.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462174#462174 13 Answer by Kirk Wylie for What is the most frequent concurrency problem you've encountered in Java? Kirk Wylie 2009-01-20T17:06:52Z 2009-01-20T17:06:52Z <p>Double-Checked Locking. By and large.</p> <p>The paradigm, which I started learning the problems of when I was working at BEA, is that people will check a singleton in the following way:</p> <pre><code>public Class MySingleton { private static MySingleton s_instance; public static MySingleton getInstance() { if(s_instance == null) { synchronized(MySingleton.class) { s_instance = new MySingleton(); } } return s_instance; } } </code></pre> <p>This never works, because another thread might have gotten into the synchronized block and s_instance is no longer null. So the natural change is then to make it:</p> <pre><code> public static MySingleton getInstance() { if(s_instance == null) { synchronized(MySingleton.class) { if(s_instance == null) s_instance = new MySingleton(); } } return s_instance; } </code></pre> <p>That doesn't work either, because the Java Memory Model doesn't support it. You need to declare s_instance as volatile to make it work, and even then it only works on Java 5.</p> <p>People that aren't familiar with the intricacies of the Java Memory Model mess this up <em>all the time</em>.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462179#462179 2 Answer by Eric Burke for What is the most frequent concurrency problem you've encountered in Java? Eric Burke 2009-01-20T17:08:47Z 2009-01-20T17:08:47Z <p>Failure to provide clearly defined lifecycle methods on objects that manage long-running threads. I like to create pairs of methods named init() and destroy(). It is also important to actually call destroy() so your app can exit gracefully.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462259#462259 4 Answer by Ludwig Wensauer for What is the most frequent concurrency problem you've encountered in Java? Ludwig Wensauer 2009-01-20T17:27:25Z 2009-01-20T17:27:25Z <p>I encountered a concurrency problem with Servlets, when there are mutable fields which will be setted by each request. But there is only one servlet-instance for all request, so this worked perfectly in a single user environment but when more than one user requested the servlet unpredictable results occured.</p> <pre><code>public class MyServlet implements Servlet{ private Object something; public void service(ServletRequest request, ServletResponse response) throws ServletException, IOException{ this.something = request.getAttribute("something"); doSomething(); } private void doSomething(){ this.something ... } } </code></pre> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462295#462295 4 Answer by Ludwig Wensauer for What is the most frequent concurrency problem you've encountered in Java? Ludwig Wensauer 2009-01-20T17:38:24Z 2009-01-20T17:38:24Z <p>Using a local "new Object()" as mutex.</p> <pre><code>synchronized (new Object()) { System.out.println("sdfs"); } </code></pre> <p>This is useless.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462371#462371 0 Answer by Ludwig Wensauer for What is the most frequent concurrency problem you've encountered in Java? Ludwig Wensauer 2009-01-20T17:59:56Z 2009-01-20T17:59:56Z <p>Since Java 5 there is Thread.getUncaughtExceptionHandler but this UncaughtExceptionHandler is never called when a ExecutorService/ThreadPool is used.<br/> At least I was not able to get the UncaughtExceptionHandler with an ExcutorService working.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462391#462391 6 Answer by Steve McLeod for What is the most frequent concurrency problem you've encountered in Java? Steve McLeod 2009-01-20T18:05:26Z 2009-01-20T18:05:26Z <p>Mutable classes in shared data structures</p> <pre><code>Thread1: Person p = new Person("John"); sharedMap.put("Key", p); assert(p.getName().equals("John"); // sometimes passes, sometimes fails Thread2: Person p = sharedMap.get("Key"); p.setName("Alfonso"); </code></pre> <p>When this happens, the code is far more complex that this simplified example. Replicating, finding and fixing the bug is hard. Perhaps it could be avoided if we could mark certain classes as immutable and certain data structures as only holding immutable objects.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462525#462525 -2 Answer by Parag for What is the most frequent concurrency problem you've encountered in Java? Parag 2009-01-20T18:37:16Z 2009-01-20T18:37:16Z <p>mutable static variables and Singletons have been my biggest source of concurrency issues.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462630#462630 0 Answer by david for What is the most frequent concurrency problem you've encountered in Java? david 2009-01-20T19:05:23Z 2009-01-22T11:18:18Z <pre><code>public class ThreadA implements Runnable { private volatile SharedObject obj; public void run() { while (true) { obj = new SharedObject(); obj.setValue("Hallo"); } } public SharedObject getObj() { return obj; } } </code></pre> <p>The problem I'm trying to point out here (among others) is that the flush of the SharedObject obj happens before setting the value "Hallo". That means that the consumer of getObj() might retrieve an instance where getValue() returns null.</p> <pre><code>public class ThreadB implements Runnable { ThreadA a = null; public ThreadB(ThreadA a) { this.a = a; } public void run() { while (true) { try { System.out.println("SharedObject: " + a.getObj().getVal()); Thread.sleep(50); } catch (InterruptedException e) { e.printStackTrace(); } } } } public class SharedObject { private String val = null; public SharedObject() { } public String getVal() { return val; } public void setVal(String val) { this.val = val; } } </code></pre> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462648#462648 29 Answer by Kutzi for What is the most frequent concurrency problem you've encountered in Java? Kutzi 2009-01-20T19:09:41Z 2009-01-20T19:09:41Z <p>The most common concurrency problem I've seen, is not realizing that a field written by one thread is <em>not guaranteed</em> to be seen by a different thread. A common application of this:</p> <pre><code>class MyThread extends Thread { private boolean stop = false; public void run() { while(!stop) { doSomeWork(); } } public void setStop() { this.stop = true; } } </code></pre> <p>As long as stop is not <em>volatile</em> or <code>setStop</code> is not <em>synchronized</em> this is not guaranteed to work. This mistake is especially devilish as in 99.999% it won't matter in practice as the reader thread will eventually see the change - but we don't know how soon he saw it.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462657#462657 4 Answer by Scott Bale for What is the most frequent concurrency problem you've encountered in Java? Scott Bale 2009-01-20T19:12:25Z 2009-01-20T19:12:25Z <p><strong>Arbitrary method calls should not be made from within synchronized blocks.</strong></p> <p>Dave Ray touched on this in his first answer, and in fact I also encountered a deadlock also having to do with invoking methods on listeners from within a synchronized method. I think the more general lesson is that method calls should not be made "into the wild" from within a synchronized block - you have no idea if the call will be long-running, result in deadlock, or whatever.</p> <p>In this case, and usually in general, the solution was to reduce the scope of the synchronized block to just protect a critical <em>private</em> section of code. </p> <p>Also, since we were now accessing the Collection of listeners outside of a synchronized block, we changed it to be a copy-on-write Collection. Or we could have simply made a defensive copy of the Collection. The point being, there are usually alternatives to safely access a Collection of unknown objects.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462714#462714 4 Answer by Tim Jansen for What is the most frequent concurrency problem you've encountered in Java? Tim Jansen 2009-01-20T19:24:50Z 2009-01-20T19:24:50Z <p>I believe in the future the main problem with Java will be the (lack of) visibility guarantees for constructors. For example, if you create the following class</p> <pre><code>class MyClass { public int a = 1; } </code></pre> <p>and then just read the value MyClass.a from another thread, MyClass.a could be either 0 or 1, depending on the JavaVM's implementation and mood. Today the chances for 'a' being 1 are very high. But on future NUMA machines this may be different. Many people are not aware of this and believe that they don't need to care about multi-threading during the initialization phase. </p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/462728#462728 5 Answer by Kutzi for What is the most frequent concurrency problem you've encountered in Java? Kutzi 2009-01-20T19:27:25Z 2009-01-20T19:27:25Z <p>Another common 'concurrency' issue is to use synchronized code when it is not necessary at all. For example I still see programmers using <code>StringBuffer</code> or even <code>java.util.Vector</code> (as method local variables).</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/463065#463065 4 Answer by Alex Miller for What is the most frequent concurrency problem you've encountered in Java? Alex Miller 2009-01-20T20:55:44Z 2009-01-20T20:55:44Z <p>Synchronizing on a string literal or constant defined by a string literal is (potentially) a problem as the string literal is interned and will be shared by anyone else in the JVM using the same string literal. I know this problem has come up in application servers and other "container" scenarios. </p> <p>Example:</p> <pre><code>private static final String SOMETHING = "foo"; synchronized(SOMETHING) { // } </code></pre> <p>In this case, anyone using the string "foo" to lock on is sharing the same lock.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/463437#463437 24 Answer by Jared for What is the most frequent concurrency problem you've encountered in Java? Jared 2009-01-20T22:44:37Z 2009-01-20T22:44:37Z <p>My #1 most painful concurrency problem ever occurred when two different open source libraries did something like this:</p> <pre><code>private static final String LOCK = "LOCK"; // use matching strings // in two different libraries public doSomestuff() { synchronized(LOCK) { this.work(); } } </code></pre> <p>At first glance, this looks like a pretty trivial synchronization example. However; because Strings are interned in Java, the literal string "LOCK" turns out to be the same instance of java.lang.String (even though they are declared completely disparately from each other.) The result is obviously bad.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/464344#464344 1 Answer by Ben Manes for What is the most frequent concurrency problem you've encountered in Java? Ben Manes 2009-01-21T07:34:46Z 2009-01-21T07:34:46Z <p>Keeping all threads busy.</p> <p>This is most frequent with having to go fix problems in other people's code, because they abused the locking constructs. As of late, my coworkers seem to have found reader/writer locks quite fun to sprinkle around whereas a little thought removes their need entirely.</p> <p>In my own code, keeping the threads busy is less obvious but challenging. It requires deeper thought into algorithms, such as writing new data structures, or carefully designing a system to ensure that when locking is used it will never be contended.</p> <p>Solving concurrency mistakes is easy - trying to figure out how to avoid lock contention can be hard.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/464415#464415 0 Answer by David Nouls for What is the most frequent concurrency problem you've encountered in Java? David Nouls 2009-01-21T08:16:35Z 2009-01-21T08:16:35Z <p>1) A common mistake that I have encountered involves iterating over a synchronized Collection class. It is required to manually synchronized before getting the iterator and while iterating.</p> <p>2) Another mistake is that most textbooks give the impression that making a class thread safe is just a matter of adding synchronized on every method. That in itself is not a guarantee - it will only protect the integrity of the particular class, but the results can still be undeterministic.</p> <p>3) Putting too much time-costly operations in a synchronized block often result in very bad performance. Fortunately the Future pattern in the concurrency package can safe the day.</p> <p>4) Caching mutable objects to improve performance often leads to multithreading issues as well (and sometimes very hard to track since you assume you are the only user).</p> <p>5) Using multiple synchronisation objects must be carefully handled. </p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/464457#464457 0 Answer by Tony Morris for What is the most frequent concurrency problem you've encountered in Java? Tony Morris 2009-01-21T08:38:11Z 2009-01-21T08:38:11Z <p>Assisting with the Implementation of Actors in Functional Java and benchmarking millions of threads on multi-core machines.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/464529#464529 0 Answer by Bob for What is the most frequent concurrency problem you've encountered in Java? Bob 2009-01-21T09:10:29Z 2009-01-21T09:10:29Z <p>while(true) { if (...) break</p> <p>doStuff() }</p> <p>Invariably when developers write while loops they miss the "resource commit" in their own code.</p> <p>Namely if that block does not exit, the application and maybe even the system will lock up and die. Just because of a simple while(fantasy_land)...if(...) break.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/464613#464613 0 Answer by netzwerg for What is the most frequent concurrency problem you've encountered in Java? netzwerg 2009-01-21T09:41:50Z 2009-01-21T09:41:50Z <p>My two cents on trying to avoid synchronization problems from the start — watch out for the following issues/smells:</p> <ol> <li>When writing code, always <strong>know in which thread you're in</strong>.</li> <li>When designing a class or API for reuse, always <strong>ask yourself whether the code has to be thread-safe</strong>. It's better to make a deliberate decision, and document that your unit is <em>not</em> thread-safe, than to put in unwise synchronization with potential for deadlock.</li> <li><strong>Invocations of <code>new Thread()</code> are a smell</strong>. Use dedicated ExecutorServices instead, which force you to think about your application's overall threading concept (see 1) and encourage others to follow it.</li> <li><strong>Know and use library classes</strong> (like <code>AtomicBoolean</code> <em>et al</em>, synchronized Collections, etc). Again: make a conscious decision on whether thread-safety is important in a given context, don't just use them blindly.</li> </ol> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/464810#464810 1 Answer by JodaStephen for What is the most frequent concurrency problem you've encountered in Java? JodaStephen 2009-01-21T10:51:21Z 2009-01-21T10:51:21Z <p>Starting Java RMI causes a background task to run that forces the garbage collector to run every 60 seconds. In itself, this may be a good thing, however it may be that the RMI server wasn't started by you directly, but by a framework/tool you use (eg. JRun). And, the RMI might not actually be being used for anything.</p> <p>The net result is a System.gc() call once a minute. On a heavily loaded system, you will see the following output in your logs - 60 seconds of activity followed by a long gc pause followed by 60 seconds of activity followed by a long gc pause. This is fatal to throughput.</p> <p>The solution is to turn off explicit gc using -XX:+DisableExplicitGC</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/464894#464894 4 Answer by Neil Bartlett for What is the most frequent concurrency problem you've encountered in Java? Neil Bartlett 2009-01-21T11:22:43Z 2009-01-21T11:22:43Z <p>Not exactly a bug but, the worst sin is providing a library you intend other people to use, but not stating which classes/methods are thread-safe and which ones must only be called from a single thread etc.</p> <p>More people should make use of the concurrency annotations (e.g. @ThreadSafe, @GuardedBy etc) described in Goetz's book.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/466334#466334 6 Answer by Nick for What is the most frequent concurrency problem you've encountered in Java? Nick 2009-01-21T17:57:25Z 2009-01-21T18:08:11Z <p>It can be easy to think synchronized collections grant you more protection than they actually do, and forget to hold the lock between calls. If have seen this mistake a few times:</p> <pre><code> List&lt;String&gt; l = Collections.synchronizedList(new ArrayList&lt;String&gt;()); String[] s = l.toArray(new String[l.size()]); </code></pre> <p>For example, in the second line above, the toArray and size() methods are both thread safe in their own right, but the size() is evaluated separately from the toArray(), and the lock on the List is not held between these two calls. If you run this code with another thread concurrently removing items from the list, sooner or later you will end up with a new String[] returned which is larger than required to hold all the elements in the list, and has null values in the tail. It is easy to think that because the two method calls to the List occur in a single line of code this is somehow an atomic operation, but it is not.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/468126#468126 4 Answer by Eddie for What is the most frequent concurrency problem you've encountered in Java? Eddie 2009-01-22T05:25:47Z 2009-01-22T05:25:47Z <p>The most recent Concurrency-related bug I ran into was an object that in its constructor created an ExecutorService, but when the object was no longer referenced, it had never shutdown the ExecutorService. Thus, over a period of weeks, <em>thousands</em> of threads leaked, eventually causing the system to crash. (Technically, it didn't crash, but it did stop functioning properly, while continuing to run.)</p> <p>Technically, I suppose this isn't a concurrency problem, but it's a problem relating to use of the java.util.concurrency libraries.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/468144#468144 1 Answer by Eddie for What is the most frequent concurrency problem you've encountered in Java? Eddie 2009-01-22T05:43:33Z 2009-01-22T05:43:33Z <p>I ran into a pseudo-deadlock from an I/O thread that created a countdown latch. A vastly simplified version of the problem is like:</p> <pre> public class MyReader implements Runnable { private final CountDownLatch done = new CountDownLatch(1); private volatile isOkToRun = true; public void run() { while (isOkToRun) { sendMessage(getMessaage()); } done.countDown(); } public void stop() { isOkToRun = false; done.await(); } } </pre> <p>The idea of stop() is that it didn't return until the thread had exited, so when it returned the system was in a known state. This is OK, unless sendMessage() results in the invokation of stop(), where it will wait forever. As long as stop() is never invoked from the Runnable, everything will work as you expect. In a large application, however, the activity of the Runnable's thread may not be obvious!</p> <p>The solution was to call await() with a timeout of a few seconds, and to log a stack dump and complaint any time the timeout occurred. This preserved the desired behavior when it was possible, and exposed coding problems as they were encountered.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/477729#477729 6 Answer by John Russell for What is the most frequent concurrency problem you've encountered in Java? John Russell 2009-01-25T14:07:13Z 2009-01-25T14:07:13Z <p>Until I took a class with Brian Goetz I didn't realize that the non-synchronized getter of a private field mutated through a synchronized setter is <em>never</em> guaranteed to return the updated value. Only when a variable is protected by synchronized block on both reads AND writes will you get the guarantee of the latest value of the variable.</p> <pre><code>public class SomeClass{ private Integer thing = 1; public synchronized void setThing(Integer thing) this.thing = thing; } /** * This may return 1 forever and ever no matter what is set * because the read is not synched */ public Integer getThing(){ return thing; } } </code></pre> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/490290#490290 2 Answer by grayger for What is the most frequent concurrency problem you've encountered in Java? grayger 2009-01-29T02:23:48Z 2009-01-29T02:23:48Z <p>Starting a thread within the constructor of a class is problematic. If the class is extended, the thread can be started before subclass' constructor is executed. </p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/492928#492928 1 Answer by Dov Wasserman for What is the most frequent concurrency problem you've encountered in Java? Dov Wasserman 2009-01-29T18:57:22Z 2009-01-29T18:57:22Z <p>A method saving data to an instance variable in order to "save effort" passing it to helper methods, when another method which can be called concurrently uses the same instance variables for its own purposes.</p> <p>The data should instead be passed around as method parameters for the duration of the synchronized call. This is only a slight simplification of my worst memory:</p> <pre><code>public class UserService { private String userName; public String getUserName() { return userName; } public void login(String name) { this.userName = name; doLogin(); } private void doLogin() { userDao.login(getUserName()); } public void delete(String name) { this.userName = name; doDelete(); } private void doDelete() { userDao.delete(getUserName()); } } </code></pre> <p>The login and logout methods do not have to be synchronized, logically speaking. But written as-is you get to expeience all sorts of fun customer service calls.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/531130#531130 1 Answer by Deepak Jain for What is the most frequent concurrency problem you've encountered in Java? Deepak Jain 2009-02-10T05:18:15Z 2009-02-10T05:24:17Z <p>Concurrency problem of using different lock objects with wait and notify.</p> <p>I was trying to use wait() and notifyAll() methods and here is how i used and fell in hell.</p> <p>Thread1 Object o1 = new Object();</p> <p>synchronized(o1) { o1.wait(); }</p> <p>And in other thread. Thread - 2 </p> <p>Object o2 = new Object();</p> <p>synchronized(o2) { o2.notifyAll(); }</p> <p>Thread1 will wait on o1 and Thread2 which should have invoked o1.notifyAll(), is invoking o2.notifyAll(). Thread 1 will never wake up.</p> <p>And offcourse the common problem of not invoking wait() or notifyAll() within synchronized blocks and not invoking them using the same object that is used to sycnhronze the block.</p> <p>Object o2 = new Object();</p> <p>synchronized(o2) { notifyAll(); }</p> <p>This will cause IllegalMonitorStateException, since the thread that invoked notifyAll() has invoked notifyAll() using this object but is not the owner of the this lock object. But the current thread is owner of o2 lock object.</p> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/1412440#1412440 0 Answer by finnw for What is the most frequent concurrency problem you've encountered in Java? finnw 2009-09-11T18:06:20Z 2009-09-11T18:06:20Z <p>Updating a Swing UI component (typically a progress bar) in a worker thread instead of in the Swing thread (one should of course use <code>SwingUtilities.invokeLater(Runnable)</code>, but if you forget to do this then the bug can take a long time to surface.)</p>