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
|
|
|
|
|
|
Not realising that the BGGA closures don't suffer from this as there is no |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
Keeping all threads busy. 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. 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. Solving concurrency mistakes is easy - trying to figure out how to avoid lock contention can be hard. |
|||
|
|
|
|
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. 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. The solution is to turn off explicit gc using -XX:+DisableExplicitGC |
|||
|
|
|
|
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:
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();
}
}
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! 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. |
|||
|
|
|
|
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. 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:
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. |
|||
|
|
|
|
Concurrency problem of using different lock objects with wait and notify. I was trying to use wait() and notifyAll() methods and here is how i used and fell in hell. Thread1 Object o1 = new Object(); synchronized(o1) { o1.wait(); } And in other thread. Thread - 2 Object o2 = new Object(); synchronized(o2) { o2.notifyAll(); } Thread1 will wait on o1 and Thread2 which should have invoked o1.notifyAll(), is invoking o2.notifyAll(). Thread 1 will never wake up. 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. Object o2 = new Object(); synchronized(o2) { notifyAll(); } 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. |
|||
|
|
|
|
The biggest problem I have run across is developers that add multi-threading support as an afterthought. |
|||
|
|
Since Java 5 there is Thread.getUncaughtExceptionHandler but this UncaughtExceptionHandler is never called when a ExecutorService/ThreadPool is used. |
|||
|
|
|
|
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. 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. 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. 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). 5) Using multiple synchronisation objects must be carefully handled. |
|||
|
|
|
|
Assisting with the Implementation of Actors in Functional Java and benchmarking millions of threads on multi-core machines. |
|||
|
|
|
|
while(true) { if (...) break doStuff() } Invariably when developers write while loops they miss the "resource commit" in their own code. 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. |
|||
|
|
My two cents on trying to avoid synchronization problems from the start — watch out for the following issues/smells:
|
|||
|
|
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.
|
|||
|
|
Updating a Swing UI component (typically a progress bar) in a worker thread instead of in the Swing thread (one should of course use |
|||
|
|
|
|
mutable static variables and Singletons have been my biggest source of concurrency issues. |
|||
