当从python创建具有多处理库的进程时,父进程在返回之前等待其子进程返回。事实上,文档建议加入所有孩子。 但我想让父母在子进程完成之前返回。
有没有办法“分离”子进程。
我知道使用subprocess.Popen可以创建分离的子进程,但我想使用多处理库中的功能,比如Queues,Locks等。
我做了两个例子来说明差异。
第一个示例使用多处理库。调用此脚本时,它会打印父消息,等待5秒,打印子消息,然后才返回。
# Using multiprocessing, only returns after 5 seconds
from multiprocessing import Process
from time import sleep, asctime
def child():
sleep(5.0)
print 'Child end reached on', asctime()
if __name__ == '__main__':
p = Process(target = child)
p.start()
# Detach child process here so parent can return.
print 'Parent end reached on', asctime()
第二个示例使用subprocess.Popen。调用此脚本时,它会打印父消息,返回(!!!)并在5秒后打印子消息。
# Using Popen, returns immediately.
import sys
from subprocess import Popen
from time import sleep, asctime
def child():
sleep(5)
print 'Child end reached on', asctime()
if __name__ == '__main__':
if 'call_child' in sys.argv:
child()
else:
Popen([sys.executable] + [__file__] + ['call_child'])
print 'Parent end reached on', asctime()
如果我可以传递队列,管道,锁,信号量等,第二个例子是可以接受的。
IMO,第一个例子也导致更清晰的代码。
我在Windows上使用python 2.7。
答案 0 :(得分:0)
只需从当前流程对象的_children集合中删除流程对象,父流程将立即退出。
该多处理模块管理私有集中的子进程,并在当前进程退出时将其加入。如果您不关心儿童,则可以将其从集合中删除。
process = multiprocessing.Process(target=proc_main)
multiprocessing.current_process()._children.discard(process)
exit(0)