在 Python 的多處理模組中,鍵盤中斷事件似乎無法終止池中的工作進程。考慮程式碼片段:
<code class="python">from multiprocessing import Pool from time import sleep from sys import exit def slowly_square(i): sleep(1) return i*i def go(): pool = Pool(8) try: results = pool.map(slowly_square, range(40)) except KeyboardInterrupt: # **** THIS PART NEVER EXECUTES. **** pool.terminate() print "You cancelled the program!" sys.exit(1) print "\nFinally, here are the results: ", results if __name__ == "__main__": go()</code>
當您按 Ctrl C 引發鍵盤中斷時,程式碼會無限期掛起,而不是優雅地終止池。這是由於 Python 錯誤導致 KeyboardInterrupt 無法中斷對 threading.Condition.wait() 的呼叫。
解決方法:
解決方法是指定超時用於池操作。將:
<code class="python"> results = pool.map(slowly_square, range(40))</code>
替換為:
<code class="python"> results = pool.map_async(slowly_square, range(40)).get(9999999)</code>
透過指定任意大的超時,可以有效地消除阻塞行為並允許立即處理中斷。這將導致所有工作進程在按下 Ctrl C 時正常退出。
以上是如何在 Python 中使用多處理池優雅地處理鍵盤中斷的詳細內容。更多資訊請關注PHP中文網其他相關文章!