What are common concurrency pitfalls? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T08:20:22Z http://stackoverflow.com/feeds/question/520837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls 13 What are common concurrency pitfalls? Brig Lamoreaux 2009-02-06T15:56:29Z 2009-10-17T12:40:43Z <p>I'm looking into educating our team on concurrency. What are the most common pitfalls developers fall into surrounding concurrency. For instance, in .Net the keyword <code>static</code> opens the door to a lot of concurrency issues.</p> <p>Are there other design patterns that are not thread safe?</p> <h2>Update</h2> <p>There are so many great answers here it is difficult to select just one as the accepted answer. Be sure to scroll through them all for great tips.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520848#520848 12 Answer by Serhat Özgel for What are common concurrency pitfalls? Serhat Özgel 2009-02-06T15:58:56Z 2009-02-06T15:58:56Z <p>One is <a href="http://en.wikipedia.org/wiki/Race_condition" rel="nofollow">race condition</a>, which basically is assuming that one piece of code will run before / after another concurrent piece of code.</p> <p>There are also <a href="http://en.wikipedia.org/wiki/Deadlock" rel="nofollow">deadlocks</a>, that is code A waits for code B to release resource Y, while code B is waiting for A to release resource X.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520859#520859 0 Answer by Ben Hoffstein for What are common concurrency pitfalls? Ben Hoffstein 2009-02-06T16:00:36Z 2009-02-06T16:00:36Z <p>Some canonical pitfalls are <a href="http://en.wikipedia.org/wiki/Deadlock" rel="nofollow">deadlocks</a> (two competing processes are stuck waiting for each other to release some resource) and <a href="http://en.wikipedia.org/wiki/Race_condition" rel="nofollow">race conditions</a> (when the timing and/or dependence of events can lead to unexpected behavior). Here is a worthwhile <a href="http://www.dnrtv.com/default.aspx?showNum=4" rel="nofollow">video about "Multithreading Gotchas"</a> as well.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520861#520861 -1 Answer by siz for What are common concurrency pitfalls? siz 2009-02-06T16:00:48Z 2009-02-06T16:00:48Z <p><a href="http://en.wikipedia.org/wiki/Deadlock" rel="nofollow">Deadlocks</a>.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520870#520870 1 Answer by xelurg for What are common concurrency pitfalls? xelurg 2009-02-06T16:03:05Z 2009-02-06T16:03:05Z <p>Here is a great resource about concurrency, specifically in Java: <a href="http://tech.puredanger.com/" rel="nofollow">http://tech.puredanger.com/</a> Alex Miller lists many different issues one can encounter while dealing with concurrency. Highly recommended :)</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520880#520880 7 Answer by James McMahon for What are common concurrency pitfalls? James McMahon 2009-02-06T16:05:02Z 2009-02-06T16:05:02Z <p>One of the biggest pitfalls is the use of concurrency in the first place. Concurrency adds a substantial design/debugging overhead, so you really have to examine the problem and see if it really calls for concurrency.</p> <p>Concurrency is certainly unavoidable in some domains, but when it is avoidable, avoid it.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520886#520886 1 Answer by bendewey for What are common concurrency pitfalls? bendewey 2009-02-06T16:05:59Z 2009-02-06T16:05:59Z <p>Calling public classes from within a lock causing a DeadLock</p> <pre><code>public class ThreadedClass { private object syncHandle = new object(); public event EventHandler Updated = delegate { }; public int state = 0; public void DoSmething() { lock(syncHandle) { // some locked code state = 1; Updated(this, EventArgs.Empty); } } public int State { get { int returnVal; lock(syncHandle) returnVal = state; return returnVal; } } } </code></pre> <p>You can't be certain what your client is going to call, Most likely they'll try to read the State property. Do this instead</p> <pre><code>public void DoSmething() { lock(syncHandle) { // some locked code state = 1; } // this should be outside the lock Updated(this, EventArgs.Empty); } </code></pre> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520920#520920 9 Answer by Mo Flanagan for What are common concurrency pitfalls? Mo Flanagan 2009-02-06T16:13:42Z 2009-03-27T02:20:19Z <p>Concurrency doesn't have many pitfalls.</p> <p>Synchronizing access to shared data, however, is tricky.</p> <p>Here are some questions anyone writing shared-data synchronization code should be able to answer:</p> <ol> <li>What is InterlockedIncrement?</li> <li>Why does InterlockedIncrement need to exist at an assembly language level?</li> <li>What is read write reordering?</li> <li>What is the volatile keyword (in c++) and when do you need to use it?</li> <li>What is a synchronization hierarchy?</li> <li>What is the ABA problem?</li> <li>What is cache coherency?</li> <li>What is a memory barrier?</li> </ol> <p>"Shared everything" concurrency is an extremely leaky abstraction. Adopt <a href="http://en.wikipedia.org/wiki/Message%5Fpassing" rel="nofollow">shared nothing message passing</a> instead. </p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520924#520924 0 Answer by Kb for What are common concurrency pitfalls? Kb 2009-02-06T16:14:54Z 2009-02-06T16:14:54Z <p>Also you could look at out-of-process type concurrency problems<br/> For instance:<br/> A writer process making a file and a consumer process claiming the file.<br/></p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520945#520945 0 Answer by Matt Kane for What are common concurrency pitfalls? Matt Kane 2009-02-06T16:18:21Z 2009-02-06T16:18:21Z <p>Concurrency problems are incredibly difficult to debug. As a preventative measure, one can completely disallow access to shared objects without using mutexes in such a way that programmers can easily follow the rules. I have seen this done by making wrappers around the OS-provided mutexes and semaphores, etc.</p> <p>Here are some confusing examples from my past:</p> <p>I used to develop printer drivers for Windows. In order to prevent multiple threads from writing to the printer at the same time, our port monitor used a construction like this: // pseudo code because I can't remember the API BOOL OpenPort() { GrabCriticalSection(); } BOOL ClosePort() { ReleaseCriticalSection(); } BOOL WritePort() { writestuff(); }</p> <p>Unfortunately, each call to WritePort was from a different thread in the spooler's thread pool. We eventually got into a situation where OpenPort and ClosePort were called by different threads, causing a deadlock. The solution for this is left as an exercise, because I can't remember what I did.</p> <p>I also used to work on printer firmware. The printer in this case used an RTOS called uCOS (pronounced 'mucus') so each function had its own task (print head motor, serial port, parallel port, network stack, etc.). One version of this printer had an internal option that plugged into a serial port on the printer motherboard. At some point, it was discovered that the printer would read the same result twice from this peripheral, and every value there after would be out of sequence. (e.g, the peripheral read a sequence 1,7,3,56,9,230 but we would see 1,7,3,3,56,9,230. This value was getting reported to the computer and put into a database so having a pile of documents with wrong ID numbers was Very Bad) The root cause of this was a failure to respect the mutex that was protecting the read buffer for the device. (Hence my advice at the beginning of this response)</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520986#520986 1 Answer by Bill Michell for What are common concurrency pitfalls? Bill Michell 2009-02-06T16:25:37Z 2009-02-06T16:25:37Z <p>Double-checked locking is <a href="http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html" rel="nofollow">broken</a>, at least in Java. Understanding why this is true, and how you can fix it, leads you deep into understanding concurrency issues and Java's memory model.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520998#520998 4 Answer by DJClayworth for What are common concurrency pitfalls? DJClayworth 2009-02-06T16:29:06Z 2009-02-06T16:29:06Z <p>As stated in other answers, the two most likely problems are <strong>deadlocks</strong> and <strong>race conditions</strong>. However my main advice would be that if you are looking to train a team on the subject of concurrency I would strongly recommend <strong>getting some training yourself</strong>. Get a good book on the subject, don't rely on a few paragraphs from a website. A good book would depend on the language you are using: "Java Concurrency in Practice" by Brian Goetz is good for that language, but there are plenty of others.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/521016#521016 7 Answer by simsong for What are common concurrency pitfalls? simsong 2009-02-06T16:35:03Z 2009-02-06T16:35:03Z <p>I teach concurrency a lot to my friends and co-workers. Here are some of the big pitfalls:</p> <ul> <li>Assuming that a variable that is mostly read in many threads and only written in one thread doesn't need to be locked. (In Java, this situation may result in the reading threads never seeing the new value.)</li> <li>Assuming that the threads will run in a particular order.</li> <li>Assuming that the threads will run simultaneously.</li> <li>Assuming that the threads will NOT run simultaneously.</li> <li>Assuming that all of the threads will make forward progress before any one of the threads ends.</li> </ul> <p>I also see:</p> <ul> <li>Big confusions between thread_fork() and fork().</li> <li>Confusions when memory is allocated in one thread and free()'ed in another thread.</li> <li>Confusions resulting from the fact that some libraries are threadsafe and some are not.</li> <li>People using spin-locks when they should use sleep &amp; awake, or select, or whatever blocking mechanism your language supports.</li> </ul> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/521047#521047 0 Answer by olli for What are common concurrency pitfalls? olli 2009-02-06T16:41:25Z 2009-02-06T16:41:25Z <p>Some rules of thumb:</p> <p>(1) Keep an eye on the context when your declare a variable</p> <ul> <li>Write to class attributes (<strong>static</strong>) has to be synchronized</li> <li>Write to instance attributes has to be synchronized</li> <li>Keep all variables as local as possible (do not put them in a member context unless it makes sense)</li> <li>Mark variables that are read only immutable</li> </ul> <p>(2) Lock the access to mutable class or instance attributes: Variables that are part of the same <a href="http://en.wikipedia.org/wiki/Invariant_(computer_science)" rel="nofollow" title="invariants">invariant</a> should be protected by the same lock.</p> <p>(3) Avoid <a href="http://en.wikipedia.org/wiki/Double-checked_locking" rel="nofollow">Double Checked Locking</a></p> <p>(4) Keep locks when you run a <em>distributed</em> operation (call subroutines).</p> <p>(5) Avoid <a href="http://en.wikipedia.org/wiki/Busy_waiting" rel="nofollow">busy waiting</a></p> <p>(6) Keep the workload low in synchronized sections</p> <p>(7) Do not allow to take a client control while you are in a synchronized block.</p> <p>(8) Comments! This really helps to understand what the other guy had in mind with declaring this section synchronized or that variable immutable.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/521128#521128 3 Answer by Pankrat for What are common concurrency pitfalls? Pankrat 2009-02-06T16:58:47Z 2009-02-06T16:58:47Z <p>In my experience, many (skilled) developers lack foundational knowledge about concurrency theory. The classic textbooks on Operating Systems by Tanenbaum or Stallings do a good job in explaining the theory and implications of concurrency: Mutual exclusion, synchronization, deadlocks and starvation. A good theoretical background is mandatory to successfully work with concurrency.</p> <p>That being said, concurrency support varies greatly between programming languages and different libraries. Furthermore, test-driven development doesn't get you very far in detecting and solving concurrency problems (although transient test failures indicate concurrency issues).</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/521322#521322 2 Answer by Zan Lynx for What are common concurrency pitfalls? Zan Lynx 2009-02-06T17:42:27Z 2009-02-06T17:42:27Z <p>The #1 pitfall I have seen is too much data sharing. </p> <p>I believe that one of the better ways to handle concurrency is multiple processes instead of threads. In this way, communication between threads/processes is strictly limited to the chosen pipe, message queue or other communication method.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/521967#521967 2 Answer by Dunk for What are common concurrency pitfalls? Dunk 2009-02-06T20:06:27Z 2009-02-06T20:06:27Z <p>One truth to keep in mind is that even if the initial developers get their tasking model working properly (which is a big if), then the maintenance team that follows will surely screw things up in unimaginable ways. The take-away from that is to limit the traces of concurrency throughout your system. Do your best to make sure that most of your system is blissfully unaware that concurrency is occurring. That gives fewer opportunities for people unfamiliar with the tasking model to inadvertently screw things up.</p> <p>Too often people go thread/task crazy. Everything works on its own thread. The end result is that nearly every piece of code has to be intimately aware of threading issues. It forces otherwise simple code to be littered with locking and synchronization confuscations. Every time I’ve seen this, the system eventually becomes an unmaintainable mess. Yet, every time I’ve seen this, the original developers still insist it was a good design:(</p> <p>Like multiple inheritance, if you want to create a new thread/task then assume you are wrong until proven otherwise. I can’t even count the number of times that I’ve seen the pattern Thread A calls Thread B thenThread B calls Thread C then Thread C calls D all waiting for a response from the previous thread. All the code is doing is making long-winded function calls through different threads. Don’t use threads when function calls work just fine.</p> <p>Always remember, Message Queues are your best friend when you want to work concurrently.</p> <p>I have found that creating a core infrastructure that handles nearly all the concurrency issues works best. If there are any threads outside of the core infrastructure that must talk to another piece of software then they must go through the core infrastructure. That way the rest of the system can remain concurrency unaware and the concurrency issues can be handled by the person(s) who hopefully understand concurrency.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/521968#521968 9 Answer by Die in Sente for What are common concurrency pitfalls? Die in Sente 2009-02-06T20:06:49Z 2009-02-06T20:06:49Z <p>There are lots of good answers and pointers on this thread already, but let me add one thing.</p> <p><strong>DO NOT RELY ON TESTING TO FIND RACE CONDITIONS AND DEADLOCKS</strong></p> <p>Assuming you have all the good development processes in place: unit tests for each component, smoke tests for each nightly build, requiring each developer's changes to pass tests before checkin , etc.</p> <p>All that is well and good, but it leads to an attitude of "well, it passed the test suite, so it can't be a bug in my code." which will not serve you well in concurrent programming. Real-time concurrency bugs are fiendishly hard to reproduce. You can run a piece of code with a race condition a billion times before it fails.</p> <p>You will have to adjust your process to put greater emphasis on code reviews, conducted by your best minds. Having a seperate code review just for concurrency issues only is not a bad idea.</p> <p>You will have to put more emphasis on making your application self-debugging. That is, when you get a failure in the test lab or at your customer's site, you need to make sure enough information is captured and logged to let you do a definitive postmortem, since the odds of your being able to reproduce the bug report at your convenience are negligible.</p> <p>You will have to put more emphasis on paranoid sanity checks in your code so that a fault is detected as close to the problem as possible, and not 50,000 lines of code away. </p> <p>Be paranoid. very paranoid. </p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/527394#527394 2 Answer by Willie Wheeler for What are common concurrency pitfalls? Willie Wheeler 2009-02-09T08:08:16Z 2009-02-09T08:08:16Z <p>One concurrent programming pitfall is <strong>improper encapsulation leading to races and deadlocks</strong>. This can probably happen in lots of different ways, though there are two in particular that I've seen:</p> <ol> <li><p><strong>Giving variables unnecessarily wide scope.</strong> For example, sometimes people declare a variable at instance scope when local scope would do. This can create the potential for races where none need exist.</p></li> <li><p><strong>Exposing locks unnecessarily.</strong> If there's no need to expose a lock, then it's consider keeping it hidden away. Otherwise clients may use it and create deadlocks that you could have prevented.</p></li> </ol> <p>Here's a simple <strong>example of #1 above</strong>, one that's pretty close to something I saw in production code:</p> <pre> public class CourseService { private CourseDao courseDao; private List courses; public List getCourses() { this.courses = courseDao.getCourses(); return this.courses; } } </pre> <p>In this example there's no need for the <code>courses</code> variable to have instance scope, and now concurrent calls to <code>getCourses()</code> can have races.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/527423#527423 1 Answer by Bruce ONeel for What are common concurrency pitfalls? Bruce ONeel 2009-02-09T08:36:22Z 2009-02-09T08:36:22Z <p>It all comes down to shared data/shared state. If you share no data or state then you have no concurrency problems.</p> <p>Most people, when they think of concurrency, think of multi-threading in a single process.</p> <p>One way to think about this is, what happens if you split your process into multiple processes. Where do they have to communicate with each other? If you can be clear on where the processes have to communicate with each other then you have a good idea about the data they share. </p> <p>Now, as mental test, move those multiple processes onto individual machines. Are your communication patterns still correct? Can you still see how to make it work? If not, one might want to reconsider multiple threads.</p> <p>(The rest of this doesn't apply to Java threading, which I don't use and therefore know little about).</p> <p>The other place where one can get caught, is, if you use locks to protect shared data, you should write a lock monitor that can find deadlocks for you. Then you need to have your program(s) deal with the possibility of deadlocks. When you get a deadlock error your have to release all of your locks, backup, and try again.</p> <p>You are unlikely to make multiple locks work well otherwise without a level of care which is quite rare in real systems.</p> <p>Good luck!</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/547241#547241 0 Answer by Steve for What are common concurrency pitfalls? Steve 2009-02-13T19:07:45Z 2009-02-13T19:07:45Z <p>This isn't a pitfall, but more of a tip based on other's responses. The .NET framework's readerwriterlockslim will dramatically improve your performance in many cases over the "lock" statement, while being reentrant.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/556132#556132 0 Answer by Nick Gunn for What are common concurrency pitfalls? Nick Gunn 2009-02-17T09:53:59Z 2009-02-17T09:53:59Z <p>Composability. In any non-trivial system, ad-hoc approaches to synchronisation within different sub-systems make interaction between them usually error-prone and occasionally impossible. See <a href="http://content.digitalwell.washington.edu/msr/external_release_talks_12_05_2005/14068/default.htm" rel="nofollow">this video</a> for an example of how even the most trivial code is prone to these problems.</p> <p>Personally, I am a convert to the <a href="http://en.wikipedia.org/wiki/Actor_model_and_process_calculi" rel="nofollow">Actor model of concurrent computation</a> (the asynchronous variety).</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/1582124#1582124 1 Answer by Rubens Farias for What are common concurrency pitfalls? Rubens Farias 2009-10-17T12:40:43Z 2009-10-17T12:40:43Z <p>Just found this paper, sounds interesting: <a href="http://www.elewis.net/papers/cse00.pdf" rel="nofollow">A Study of Common Pitfalls in Simple Multi-Threaded Programs</a></p>