Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In there something similar to Java's Thread.yield() in Python? Does that even make sense?

I want to tell my Python threads to yield, and so avoid hogging the CPU unnecessarily. In Java, you could do that using the Thread.yield() function. I don't think there is something similar in Python, so I have been using time.sleep(t) where t = 0.00001. For t=0 there seems to be no effect.

I think that maybe there is something I am not understanding correctly about Python's threading model, and hence the reason for the missing thread.yield(). Can someone clarify this to me? Thanks!

PS: This is what the documentation for Java's Thread.yield() says:

Causes the currently executing thread object to temporarily pause and allow other threads to execute.

like image 941
Carlos Avatar asked Dec 15 '09 15:12

Carlos


People also ask

What happens when you call thread yield ()?

A yield() method is a static method of Thread class and it can stop the currently executing thread and will give a chance to other waiting threads of the same priority. If in case there are no waiting threads or if all the waiting threads have low priority then the same thread will continue its execution.

Why would a thread ever want to call yield?

The yield() basically means that the thread is not doing anything particularly important and if any other threads or processes need to be run, they should run. Otherwise, the current thread will continue to run.

Does Python really support multithreading?

Python doesn't support multi-threading because Python on the Cpython interpreter does not support true multi-core execution via multithreading. However, Python does have a threading library.

Is threading in Python real?

Python threading allows you to have different parts of your program run concurrently and can simplify your design. If you've got some experience in Python and want to speed up your program using threads, then this course is for you!


2 Answers

Dup of: How does a threading.Thread yield the rest of its quantum in Python?.

time.sleep(0)
like image 59
Rich Schuler Avatar answered Sep 28 '22 19:09

Rich Schuler


The interpreter will switch from one thread to another periodically anyway without your intervention - you don't need to tell the system not to 'hog' a thread.

However, under normal circumstances, only one Python thread is executing at any one time. (Exceptions tend to revolve around times when threads are waiting on input from external devices such as the hard disk or the network.) This is due to the Global Interpreter Lock. This does mean however that you probably aren't getting as much benefit from threads in Python as you would in Java or many other languages. Getting around this problem is not necessarily trivial, although moving to multiprocessing instead of multithreading is one good approach, if possible.

However, what you want to do seems flawed in some sense - if you have 2 threads and they both have work to do, you shouldn't have to write application-side code to switch between them. That's the job of the operating system or the virtual machine. If you find yourself telling one thread to 'do less' because you want to favour another thread in terms of processor time, then rather than adding arbitrary yielding or sleeping, you should probably be setting thread priorities instead. (Although again, this may not have much meaning in Python given the presence of the Global Interpreter Lock.)

like image 33
Kylotan Avatar answered Sep 28 '22 20:09

Kylotan