How do threads work in python, and what are common python-threading specific pitfalls? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T06:16:25Zhttp://stackoverflow.com/feeds/question/31340http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/31340/how-do-threads-work-in-python-and-what-are-common-python-threading-specific-pitf14How do threads work in python, and what are common python-threading specific pitfalls?jdd2008-08-27T23:44:47Z2009-07-28T22:40:05Z
<p>I've been trying to wrap my head around how threads work in python, and it's hard to find good information on how they operate. I may just be missing a link or something, but it seems like the official docs aren't very thorough on the subject, and I haven't been able to find a good write-up.</p>
<p>From what I can tell, only one thread can be running at once, and the active thread switches every 10 instructions or so?</p>
<p>Could someone who has a lot of experience with using threads with python either point me towards a good explanation, or write one up? It would also be very nice to be aware of common problems that you run into while using threads with python.</p>
http://stackoverflow.com/questions/31340/how-do-threads-work-in-python-and-what-are-common-python-threading-specific-pitf/31358#313584Answer by mmattax for How do threads work in python, and what are common python-threading specific pitfalls?mmattax2008-08-27T23:52:59Z2008-08-28T00:10:40Z<pre>
<code>
import threading
class Foo (threading.Thread):
def __init__(self,x):
self.__x = x
threading.Thread.__init__(self)
def run (self):
print str(self.__x)
for x in xrange(20):
Foo(x).start()
</code>
</pre>
<p>Here is a basic threading sample, this will spawn 20 threads, each thread will output it's thread number... run it and observe the order in which they print.</p>
<p>as you have hinted at python threads are implemented through time-slicing, this is how they get the "parallel" effect. </p>
<p>In my example my Foo class extends thread, I then implement the run method, which is where the code that you would like to run in a thread goes. to start the thread you call start() on the thread object, which will automatically invoke your run method...</p>
<p>of course, this is just the vary basics...you will eventually want to learn about semaphores, mutexes, and locks for thread synchronization and message passing...</p>
http://stackoverflow.com/questions/31340/how-do-threads-work-in-python-and-what-are-common-python-threading-specific-pitf/31372#313729Answer by Jason Baker for How do threads work in python, and what are common python-threading specific pitfalls?Jason Baker2008-08-28T00:00:18Z2009-03-11T02:59:56Z<p>Python's a fairly easy language to thread in, but there are caveats. The biggest thing you need to know about is the Global Interpreter Lock. This allows only one thread to access the interpreter. This means two things: 1) you rarely ever find yourself using a lock statement in python and 2) if you want to take advantage of multi-processor systems, you have to use separate processes. EDIT: I should also point out that you can put some of the code in C/C++ if you want to get around the GIL as well.</p>
<p>Thus, you need to re-consider why you want to use threads. If you want to parallelize your app to take advantage of dual-core architecture, you need to consider breaking your app up into multiple processes.</p>
<p>If you want to improve responsiveness, you should CONSIDER using threads. There are other alternatives though, namely <a href="http://en.wikipedia.org/wiki/Microthread" rel="nofollow">microthreading</a>. There are also some frameworks that you should look into:</p>
<p><a href="http://www.stackless.com/" rel="nofollow">stackless python</a></p>
<p><a href="http://edit.kamaelia.org/Home" rel="nofollow">Kamaelia</a></p>
<p><a href="http://codespeak.net/py/dist/greenlet.html" rel="nofollow">greenlets</a> </p>
http://stackoverflow.com/questions/31340/how-do-threads-work-in-python-and-what-are-common-python-threading-specific-pitf/31398#313987Answer by Peter Hoffmann for How do threads work in python, and what are common python-threading specific pitfalls?Peter Hoffmann2008-08-28T00:19:50Z2008-08-28T00:19:50Z<p>Yes because of the Global Interpreter Lock (GIL) there can only run on thread at a time. Here are some links with some insights about this:</p>
<ul>
<li><a href="http://blog.snaplogic.org/?p=94" rel="nofollow">http://blog.snaplogic.org/?p=94</a></li>
<li><a href="http://www.artima.com/weblogs/viewpost.jsp?thread=214235" rel="nofollow">http://www.artima.com/weblogs/viewpost.jsp?thread=214235</a></li>
<li><a href="http://effbot.org/pyfaq/can-t-we-get-rid-of-the-global-interpreter-lock.htm" rel="nofollow">http://effbot.org/pyfaq/can-t-we-get-rid-of-the-global-interpreter-lock.htm</a></li>
<li><a href="http://smoothspan.wordpress.com/2007/09/14/guido-is-right-to-leave-the-gil-in-python-not-for-multicore-but-for-utility-computing/" rel="nofollow">http://smoothspan.wordpress.com/2007/09/14/guido-is-right-to-leave-the-gil-in-python-not-for-multicore-but-for-utility-computing/</a></li>
</ul>
<p>From the last link an intereasting quote:</p>
<blockquote>
<p>Let me explain what all that means.
Threads run inside the same virtual
machine, and hence run on the same
physical machine. Processes can run
on the same physical machine or in
another physical machine. If you
architect your application around
threads, you’ve done nothing to access
multiple machines. So, you can scale
to as many cores are on the single
machine (which will be quite a few
over time), but to really reach web
scales, you’ll need to solve the
multiple machine problem anyway.</p>
</blockquote>
<p>If you want to use multi core, <a href="http://www.python.org/dev/peps/pep-0371/" rel="nofollow">pyprocessing</a> defines an process based api to do real parallelization. The pep also includes some interesting benchmarks</p>
http://stackoverflow.com/questions/31340/how-do-threads-work-in-python-and-what-are-common-python-threading-specific-pitf/31552#315521Answer by kazakdogofspace for How do threads work in python, and what are common python-threading specific pitfalls?kazakdogofspace2008-08-28T02:34:18Z2008-08-28T02:34:18Z<p>Use threads in python if the individual workers are doing I/O bound operations. If you are trying to scale across multiple cores on a machine either find a good <a href="http://www.python.org/dev/peps/pep-0371/" rel="nofollow">IPC</a> framework for python or pick a different language.</p>
http://stackoverflow.com/questions/31340/how-do-threads-work-in-python-and-what-are-common-python-threading-specific-pitf/1197151#11971510Answer by phreaki for How do threads work in python, and what are common python-threading specific pitfalls?phreaki2009-07-28T22:40:05Z2009-07-28T22:40:05Z<p>Try to remember that the GIL is set to poll around every so often in order to do show the appearance of multiple tasks. This setting can be fine tuned, but I offer the suggestion that there should be work that the threads are doing or lots of context switches are going to cause problems.</p>
<p>I would go so far as to suggest multiple parents on processors and try to keep like jobs on the same core(s).</p>