为什么线程中的Timer不能在多进程中处理进程?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么线程中的Timer不能在多进程中处理进程?相关的知识,希望对你有一定的参考价值。
我试图在Process
的multiprocessing
中运行代码。该代码使用Timer
的threading
。计时器似乎永远不会启动。为什么是这样?我能够使用以下代码重现该问题,该代码仅打印一次。
from multiprocessing import Process
from threading import Timer
import time
def print_time_every_5_seconds():
Timer(5,print_time_every_5_seconds).start()
print(time.ctime())
start_process = Process(target=print_time_every_5_seconds)
start_process.start()
输出:Mon Jul 23 14:33:48 2018
答案
问题是你的Process
在Timer
事件发生之前结束。如果你能保持Process
活着,那就行了。这是一种方法:
from multiprocessing import Process, SimpleQueue
from threading import Timer
import time
import functools
def print_time_every_5_seconds(que):
while True:
print(time.ctime())
t = Timer(5,functools.partial(que.put, (None,))).start()
que.get()
if __name__ == '__main__':
que = SimpleQueue()
start_process = Process(target=print_time_every_5_seconds, args=(que,))
start_process.start()
另一种方法是将start方法设置为spawn
,这会导致启动进程等待子线程,而不是像Stackoverflow question mentioned by the OP中提到的那样杀死它们。所以这是使用该方法工作的代码:
import multiprocessing as mp
from threading import Timer
import time
def print_time_every_5_seconds():
print(time.ctime())
Timer(5,print_time_every_5_seconds).start()
if __name__ == '__main__':
mp.set_start_method('spawn')
start_process = mp.Process(target=print_time_every_5_seconds)
start_process.start()
以上是关于为什么线程中的Timer不能在多进程中处理进程?的主要内容,如果未能解决你的问题,请参考以下文章