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!
|
30
|
|
|
|
|
|
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. |
|||
|
|
Not realising that the BGGA closures don't suffer from this as there is no |
|||
|
|
|
|
Not realising the |
|||
|
|
|
|
Thinking you are writing single-threaded code, but using mutable statics (including singletons). Obviously they will be shared between threads. This happens surprisingly often. |
|||
|
|
The biggest problem I have run across is developers that add multi-threading support as an afterthought. |
|||
|
|
Race conditions during an object's finalize/release/shutdown/destructor method and normal invocations. 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. |
|||
|
|
|
|
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:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
Not properly synchronizing on objects returned by Collections.synchronizedXXX(), especially during iteration or multiple operations:
That's wrong. It should be:
Or with a ConcurrentMap implementation:
|
|||
|
|
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. |
|||
|
|
|
|
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
caused by things like:
|
|||
|
|
The dumbest mistake I frequently make is forgetting to synchronize before calling notify() or wait() on an object. |
|||
|
|
Honesly? Prior to the advent of |
|||
|
|
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. The same problem (partial synchronization) can occur anywhere you have shared state with reads and writes however. |
|||
|
|
|
|
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. EDIT: Moved second part to separate answer. |
|||
|
|
Use of a global object such as a static variable for locking. This leads to very bad performance because of contention. |
|||
|
|
One classic problem is changing the object you're synchronizing on while synchronizing on it:
Other concurrent threads are then synchronizing on a different object and this block does not provide the mutual exclusion you expect. |
||||
|
