vote up 14 vote down star
4

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.

From what I can tell, only one thread can be running at once, and the active thread switches every 10 instructions or so?

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.

flag

5 Answers

vote up 7 vote down check

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:

From the last link an intereasting quote:

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.

If you want to use multi core, pyprocessing defines an process based api to do real parallelization. The pep also includes some interesting benchmarks

link|flag
Really a comment on the smoothspan quote: surely Python threading effectively limits you to one core, even if the machine has several? There may be benefits from multicore as the next thread can be ready to go without a context switch, but your Python threads can never make use of >1 core at a time. – Alabaster Codify Dec 27 '08 at 0:53
1  
Correct, python threads are practically limited to the one core, UNLESS a C module interacts nicely with the GIL, and runs it's own native thread. – Arafangion Feb 18 at 6:44
vote up 0 vote down

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.

I would go so far as to suggest multiple parents on processors and try to keep like jobs on the same core(s).

link|flag
vote up 1 vote down

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 IPC framework for python or pick a different language.

link|flag
vote up 9 vote down

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.

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.

If you want to improve responsiveness, you should CONSIDER using threads. There are other alternatives though, namely microthreading. There are also some frameworks that you should look into:

stackless python

Kamaelia

greenlets

link|flag
vote up 4 vote down

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()

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.

as you have hinted at python threads are implemented through time-slicing, this is how they get the "parallel" effect.

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...

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...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.