I wrote this minimum code to explain my case:
import threading
import time
import eventlet
eventlet.monkey_patch()
def printing_function():
while True:
# here i want to do some work
print "printing"
time.sleep(1)
if __name__ == '__main__':
thread = threading.Thread(target=printing_function)
thread.start()
while True:
# here i want to wait for users input
raw_input("raw input\n")
print "inside main loop"
time.sleep(1)
Even i have 2 threads, both of them are blocked when i call raw_input. When i comment out eventlet.monkey_patch(), only one thread is blocked and another keep printing "printing". Why and what should i do?
I'd say that there are a couple of things to note here:
raw_inputisn't patched byeventlet, so its calls are blockingthreadingis patched byeventlet, so threads are acting as coroutinesOne way to workaround this would be to avoid patching
threading, so that threads are real threads. To do that, you just need to replace:with:
Note that when
threadisTruethe following modules are patched:thread,threading,Queue.Edit: If you want to patch
threadingand have an asynchronousraw_input, then I suggest the following implementation:This will poll
sys.stdinto check if it's ready for reading. If that's not the case, it will yield control to eventlet to let other coroutine execute.