When are lock free data structures less performant than mutual exclusion (mutexes)? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T11:18:40Z http://stackoverflow.com/feeds/question/1585818 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1585818/when-are-lock-free-data-structures-less-performant-than-mutual-exclusion-mutexes 3 When are lock free data structures less performant than mutual exclusion (mutexes)? Joseph Garvin http://stackoverflow.com/users/50385 2009-10-18T19:37:00Z 2009-11-07T22:49:33Z <p>I read somewhere (can't find the page anymore) that lock free data structures are more efficient "for certain workloads" which seems to imply that sometimes they're actually slower or the gain from them can be zero in some situations. Taking the ~100 cycle hit of a lock instruction to do an atomic op sounds plenty faster to me than going to sleep and waiting for the scheduler to wake the process back up, so it's not obvious to me under what circumstances a lock free data structure would be less preferable than old fashioned mutexes. If the lock is available 99% of the time and the process doesn't have to go to sleep, is a mutex then faster? Is there a good rule of the thumb for knowing which way to go assuming a suitable lock free data structure is available?</p> http://stackoverflow.com/questions/1585818/when-are-lock-free-data-structures-less-performant-than-mutual-exclusion-mutexes/1585830#1585830 2 Answer by Marc Gravell for When are lock free data structures less performant than mutual exclusion (mutexes)? Marc Gravell http://stackoverflow.com/users/23354 2009-10-18T19:43:25Z 2009-10-18T21:21:06Z <p>I don't know about making it <em>slower</em>, but it certainly makes it harder to get right. In the many cases where the two approaches are virtually identical in performance (or when it simply doesn't matter if it takes 500 pico-seconds rather than 100 pico-seconds), then pick the simplest approach - generally <code>lock</code>.</p> <p>There are very few cases when that extra bit of performance is key; and if it <em>is</em>, I suspect you'd do well to use the pre-rolled pattern implementations from established libraries. Getting lock-free code working properly (and <em>proving</em> that it works properly <strong>in all conditions</strong>) is often very hard.</p> <p>Note also that some environments offer a level of locking above the OS-provided mutex; mutex behaviour, but without some of the overheads (for example, <code>Monitor</code> in .NET).</p> http://stackoverflow.com/questions/1585818/when-are-lock-free-data-structures-less-performant-than-mutual-exclusion-mutexes/1586111#1586111 5 Answer by Paul Hsieh for When are lock free data structures less performant than mutual exclusion (mutexes)? Paul Hsieh http://stackoverflow.com/users/192104 2009-10-18T21:41:27Z 2009-10-18T21:41:27Z <p>lockless data structures will, one way or another, use atomic semantics from your architecture to perform its core operations. When you do this, you can be using the machines entire internal exclusion mechanisms to ensure correct ordering or fencing of data. A mutex or critical section <em>also</em> does this, but it only does it once for a single flag. Where the mutex or critical section is slow, is when the the lock acquisition fails (there is contention). In this case, the OS also invokes the scheduler to suspend the thread until the exclusion object has been released.</p> <p>So it seems logical that whenever your lock-less data structure uses multiple atomic operations per core method when a single lock shielding a critical section could provide the same semantics <em>AND</em> there tends to be very little contention, in practice, for the data structure in question, then in fact, it does make more sense to use an OS-provided locking mechanism, than trying to build your own.</p> http://stackoverflow.com/questions/1585818/when-are-lock-free-data-structures-less-performant-than-mutual-exclusion-mutexes/1588640#1588640 1 Answer by skwllsp for When are lock free data structures less performant than mutual exclusion (mutexes)? skwllsp http://stackoverflow.com/users/184968 2009-10-19T13:23:04Z 2009-10-20T09:41:00Z <p>I would like to add one point to this part of the answer: "Where the mutex or critical section is slow, is when the the lock acquisition fails (there is contention). In this case, the OS also invokes the scheduler to suspend the thread until the exclusion object has been released."</p> <p>Seems like different operating systems can have different approaches as to what to do when lock acquisition failed. I use HP-UX and it for example has a more sophisticated approach to locking mutexes. Here is its description:</p> <blockquote> <p>... On the other hand, changing context is an expensive process. If the wait is going to be a short one, we'd rather not do the context switch. To balance out these requirements, when we try to get a semaphore and find it locked, the first thing we do is a short spin wait. The routine psema_spin_1() is called to spin for up to 50,000 clock cycles trying to get the lock. If we fail to get the lock after 50,000 cycles, we then call psema_switch_1() to give up the processor and let another process take over.</p> </blockquote> http://stackoverflow.com/questions/1585818/when-are-lock-free-data-structures-less-performant-than-mutual-exclusion-mutexes/1694710#1694710 1 Answer by seh for When are lock free data structures less performant than mutual exclusion (mutexes)? seh http://stackoverflow.com/users/31818 2009-11-07T22:49:33Z 2009-11-07T22:49:33Z <p>Keep in mind that a mutex may well be implemented <em>as</em> a lock-free data structure, in the sense that it uses one or a few atomic objects to represent its state. It's a false dichotomy.</p> <p>Better is to consider whether you need to allow multiple threads to wait for access to some set of operations or to block until signaled. Each requires a queue of waiting threads. The former queues threads waiting for access to the synchronized area, while the latter queues threads waiting for a signal. The Java classes <a href="http://java.sun.com/javase/7/docs/api/java/util/concurrent/locks/AbstractQueuedSynchronizer.html" rel="nofollow"><code>AbstractQueuedSynchronizer</code></a> and <a href="http://java.sun.com/javase/7/docs/api/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html" rel="nofollow"><code>AbstractQueuedLongSynchronizer</code></a> provide such a queue -- in particular, a <em>CLH Queue</em> -- upon which one can build mutexes, conditions, and other queue-based primitives.</p> <p>If your requirements favor instead only one thread taking on an exclusive set of work while other threads remain free to carry on with other work, as opposed to waiting until they too can do that same work themselves, then using lock-free techniques is possible. Whether doing so will grant faster run times falls to benchmarking, being subject to how often and how many threads will contend over these synchronization controls, and whether there's other work for threads to perform independently.</p>