When is multi-threading not a good idea? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T05:08:17Zhttp://stackoverflow.com/feeds/question/93834http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea15When is multi-threading not a good idea?CodingWithoutComments2008-09-18T15:54:28Z2009-06-08T18:17:51Z
<p>I was recently working on an application that sent and received messages over Ethernet and Serial. I was then tasked to <strong>add</strong> the monitoring of DIO discretes. I throught, </p>
<blockquote>
<p>"No reason to interrupt the main
thread which is involved in message
processing, I'll just create
<strong><em>another thread</em></strong> that monitors DIO."</p>
</blockquote>
<p>This decision, however, proved to be <strong>poor</strong>. Sometimes the main thread would be interrupted between a Send and a Receive serial message. This interruption would disrupt the timing and alas, messages would be lost (forever). </p>
<p>I found another way to monitor the DIO <em>without using another thread</em> and Ethernet and Serial communication were restored to their correct functionality.</p>
<p>The whole fiasco, however, got me thinking. <strong>Are their any general guidelines about when <em>not</em> to use multiple-threads and/or does anyone have anymore examples of situations when using multiple-threads is not a good idea?</strong></p>
<p>**EDIT:Based on your comments and after scowering the internet for information, I have composed a blog post entitled <a href="http://www.codingwithoutcomments.com/2008/09/21/when-is-multi-threading-not-a-good-idea/" rel="nofollow">When is multi-threading not a good idea?</a></p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93897#938972Answer by e-satis for When is multi-threading not a good idea?e-satis2008-09-18T16:00:17Z2008-09-18T16:00:17Z<p>Actually, multi threading is not scalable and is hard to debug, so it should not be used in any case if you can avoid it. There is few cases where it is mandatory : when performance on a multi CPU matters, or when you deal whith a server that have a lot of clients taking a long time to answer.</p>
<p>In any other cases, you can use alternatives such as queue + cron jobs or else.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93909#939091Answer by Claus Thomsen for When is multi-threading not a good idea?Claus Thomsen2008-09-18T16:01:25Z2008-09-18T16:01:25Z<p>In priciple everytime there is no overhead for the caller to wait in a queue.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93913#939130Answer by Greg Ogle for When is multi-threading not a good idea?Greg Ogle2008-09-18T16:01:55Z2008-09-18T16:01:55Z<p>Are the processes parallel? Is performance a real concern? Are there multiple 'threads' of execution like on a web server? I don't think there is a finite answer.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93935#939352Answer by Michael Pliskin for When is multi-threading not a good idea?Michael Pliskin2008-09-18T16:04:06Z2008-09-18T16:04:06Z<p>Multi-threading is not a good idea if you need to guarantee precise physical timing (like in your example). Other cons include intensive data exchange between threads. I would say multi-threading is good for really parallel tasks if you don't care much about their relative speed/priority/timing.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93987#939874Answer by Scott for When is multi-threading not a good idea?Scott2008-09-18T16:08:51Z2008-09-18T16:08:51Z<ol>
<li>On a single processor machine and a desktop application, you use multi threads so you don't freeze the app but for nothing else really.</li>
<li>On a single processor server and a web based app, no need for multi threading because IIS handles most of it.</li>
<li>On a multi processor machine and desktop app, you are suggested to use multi threads and parallel programming. Make as many threads as there are processors.</li>
<li>On a mulit processor server and a web based app, no need again for multi threads because IIS handles it.</li>
</ol>
<p>In total, if you use multi threads for other than un-freezing desktop apps and any other generic answer, you will make the app slower over time IF you have a single core machine. </p>
<p>Why? Well because of the hardware switches. It takes time for the hardware to switch between threads in total. On a multi core box, go ahead and use 1 thread for each core and you will greatly see a ramp up.</p>
<p>I hope that helps.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93999#939992Answer by Thomee for When is multi-threading not a good idea?Thomee2008-09-18T16:10:12Z2008-09-18T16:10:12Z<p>To paraphrase an old quote: A programmer had a problem. He thought, "I know, I'll use threads." Now the programmer has two problems. (Often attributed to JWZ, but it seems to predate his use of it talking about regexes.)</p>
<p>A good rule of thumb is "Don't use threads, unless there's a very compelling reason to use threads." Multiple threads are asking for trouble. Try to find a good way to solve the problem without using multiple threads, and only fall back to using threads if avoiding it is as much trouble as the extra effort to use threads. Also, consider switching to multiple threads if you're running on a multi-core/multi-CPU machine, and performance testing of the single threaded version shows that you <em>need</em> the performance of the extra cores.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/94003#940032Answer by larsivi for When is multi-threading not a good idea?larsivi2008-09-18T16:10:39Z2008-09-18T16:10:39Z<p>A recent application I wrote that <em>had</em> to use multithreading (although not unbounded number of threads) was one where I had to communicate in several directions over two protocols, plus monitoring a third resource for changes. Both protocol libraries required a thread to run the respective event loop in, and when those were accounted for, it was easy to create a third loop for the resource monitoring. In addition to the event loop requirements, the messages going through the wires had strict timing requirements, and one loop couldn't be risked blocking the other, something that was further alleviated by using a multicore CPU (SPARC).</p>
<p>There were further discussions on whether each message processing should be considered a job that was given to a thread from a thread pool, but in the end that was an extension that wasn't worth the work.</p>
<p>All-in-all, threads should if possible only be considered when you can partition the work into well defined jobs (or series of jobs) such that the semantics are relatively easy to document and implement, and you can put an upper bound on the number of threads you use and that need to interact. Systems where this is best applied are almost message passing systems.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/94118#941181Answer by Jon Cage for When is multi-threading not a good idea?Jon Cage2008-09-18T16:23:19Z2008-09-18T18:39:46Z<p>I would say multi-threading is generally used to:</p>
<ol>
<li>Allow data processing in the background while a GUI remains responsive</li>
<li>Split very big data analysis onto multiple processing units so that you can get your results quicker.</li>
<li>When you're receiving data from some hardware and need something to continuously add it to a buffer while some other element decides what to do with it (write to disk, display on a GUI etc.).</li>
</ol>
<p>So if you're not solving one of those issues, it's unlikely that adding threads will make your life easier. In fact it'll almost certainly make it harder because as others have mentioned; debugging mutithreaded applications is considerably more work than a single threaded solution.</p>
<p>Security might be a reason to avoid using multiple threads (over multiple processes). See <a href="http://blog.chromium.org/2008/09/multi-process-architecture.html" rel="nofollow">Google chrome</a> for an example of multi-process safety features.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/94271#942713Answer by harningt for When is multi-threading not a good idea?harningt2008-09-18T16:40:00Z2008-09-18T16:40:00Z<p>You might want to take a look at the Dan Kegel's "<a href="http://www.kegel.com/c10k.html" rel="nofollow">The C10K problem</a>" web page about handling multiple data sources/sinks.</p>
<p>Basically it is best to use minimal threads, which in sockets can be done in most OS's w/ some event system (or asynchronously in Windows using IOCP).</p>
<p>When you run into the case where the OS and/or libraries do not offer a way to perform communication in a non-blocking manner, it is best to use a thread-pool to handle them while reporting back to the same event loop.</p>
<p>Example diagram of layout:</p>
<pre><code>Per CPU [*] EVENTLOOP ------ Handles nonblocking I/O using OS/library utilities
| \___ Threadpool for various blocking events
Threadpool for handling the I/O messages that would take long
</code></pre>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/94929#949291Answer by finnw for When is multi-threading not a good idea?finnw2008-09-18T17:52:34Z2008-09-18T17:52:34Z<p>A couple more possible reasons to use threads:</p>
<ol>
<li>Your platform lacks asynchronous I/O operations, e.g. Windows ME (No completion ports or overlapped I/O, a pain when porting XP applications that use them.) Java 1.3 and earlier.</li>
<li>A third-party library function that can hang, e.g. if a remote server is down, and the library provides no way to cancel the operation and you can't modify it.</li>
</ol>
<p>Keeping a GUI responsive during intensive processing doesn't always require additional threads. A single callback function is usually sufficient.</p>
<p>If none of the above apply and I still want parallelism for some reason, I prefer to launch an independent process if possible.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/277141#2771412Answer by Adam Liss for When is multi-threading not a good idea?Adam Liss2008-11-10T05:48:48Z2008-11-10T05:48:48Z<p>Multi-threading is a bad idea if:</p>
<ul>
<li><p>Several threads access and update the same resource (set a variable, write to a file), and you don't understand <a href="http://en.wikipedia.org/wiki/Thread_safety" rel="nofollow">thread safety</a>.</p></li>
<li><p>Several threads interact with each other and you don't understand <a href="http://en.wikipedia.org/wiki/Mutex" rel="nofollow">mutexes</a> and similar thread-management tools.</p></li>
<li><p>Your program uses static variables (threads typically share them by default).</p></li>
<li><p>You haven't debugged concurrency issues.</p></li>
</ul>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/966100#9661000Answer by Todd Stout for When is multi-threading not a good idea?Todd Stout2009-06-08T17:56:27Z2009-06-08T17:56:27Z<p>A common source of threading issues is the usual approaches employed to synchronize data. Having threads share state and then implement locking at all the appropriate places is a major source of complexity for both design and debugging. Getting the locking right to balance stability, performance, and scalability is always a hard problem to solve. Even the most experienced experts get it wrong frequently. Alternative techniques to deal with threading can alleviate much of this complexity. The <a href="http://clojure.org/concurrent%5Fprogramming" rel="nofollow">Clojure</a> programming language implements several interesting techniques for dealing with concurrency.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/966193#9661931Answer by TokenMacGuy for When is multi-threading not a good idea?TokenMacGuy2009-06-08T18:15:08Z2009-06-08T18:15:08Z<p>Multithreading is bad except in the single case where it is good. This case is</p>
<ol>
<li>The work is CPU Bound, or parts of it is CPU Bound</li>
<li>The work is parallelisable.</li>
</ol>
<p>If either or both of these conditions are missing, multithreading is not going to be a winning strategy.</p>
<p>If the work is not CPU bound, then you are waiting not on threads to finish work, but rather for some external event, such as network activity, for the process to complete its work. Using threads, there is the additional cost of context switches between threads, The cost of synchronization (mutexes, etc), and the irregularity of thread preemption. The alternative in most common use is asynchronous IO, in which a single thread listens to several io ports, and acts on whichever happens to be ready now, one at a time. If by some chance these slow channels all happen to become ready at the same time, It might seem like you will experience a slow-down, but in practice this is rarely true. The cost of handling each port individually is often comparable or better than the cost of synchronizing state on multiple threads as each channel is emptied.</p>
<p>Many tasks may be compute bound, but still not practical to use a multithreaded approach because the process must synchronise on the entire state. Such a program cannot benefit from multithreading because no work can be performed concurrently. Fortunately, most programs that require enormous amounts of CPU can be parallelized to some level.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/966207#9662071Answer by Kieveli for When is multi-threading not a good idea?Kieveli2009-06-08T18:17:51Z2009-06-08T18:17:51Z<p>Multi-threading is scalable, and will allow your UI to maintain its responsivness while doing very complicated things in the background. I don't understand where other responses are acquiring their information on multi-threading.</p>
<p>When you shouldn't multi-thread is a mis-leading question to your problem. Your problem is this: Why did multi-threading my application cause serial / ethernet communications to fail?</p>
<p>The answer to that question will depend on the implementation, which should be discussed in another question. I know for a fact that you can have both ethernet and serial communications happening in a multi-threaded application at the same time as numerous other tasks without causing any data loss.</p>
<p>The one reason to not use multi-threading is:</p>
<ol>
<li>There is one task, and no user interface with which the task will interfere.</li>
</ol>
<p>The reasons to use mutli-threading are:</p>
<ol>
<li>Provides superior responsiveness to the user</li>
<li>Performs multiple tasks at the same time to decrease overall execution time</li>
<li>Uses more of the current multi-core CPUs, and multi-multi-cores of the future.</li>
</ol>
<p>There are three basic methods of multi-threaded programming that make thread safety implemented with ease - you only need to use one for success:</p>
<ol>
<li>Thread Safe Data types passed between threads.</li>
<li>Thread Safe Methods in the threaded object to modify data passed between.</li>
<li>PostMessage capabilities to communicate between threads.</li>
</ol>