wait process until all subprocess finish?(等待进程直到所有子进程完成?)
问题描述
我有一个创建两个或多个子进程的主进程,我希望主进程等到所有子进程完成操作并退出?
I have a main process which creates two or more sub processes, I want main process to wait until all sub processes finish their operations and exits?
# main_script.py
p1 = subprocess.Popen(['python script1.py'])
p2 = subprocess.Popen(['python script2.py'])
...
#wait main process until both p1, p2 finish
...
推荐答案
一个 Popen 对象有一个 .wait() 方法正是为此定义的:等待给定子进程的完成(此外,对于重新调整其退出状态).
A Popen object has a .wait() method exactly defined for this: to wait for the completion of a given subprocess (and, besides, for retuning its exit status).
如果你使用这种方法,你可以防止进程僵尸停留太久.
If you use this method, you'll prevent that the process zombies are lying around for too long.
(或者,您可以使用 subprocess.call() 或 subprocess.check_call() 用于调用和等待.如果您不需要进程的 IO,那可能就足够了.但这可能不是一个选项,因为您的 if 两个子进程似乎应该在其中运行并行,他们不会使用 (check_)call().)
(Alternatively, you can use subprocess.call() or subprocess.check_call() for calling and waiting. If you don't need IO with the process, that might be enough. But probably this is not an option, because your if the two subprocesses seem to be supposed to run in parallel, which they won't with (check_)call().)
如果你有几个子流程要等待,你可以这样做
If you have several subprocesses to wait for, you can do
exit_codes = [p.wait() for p in p1, p2]
所有子进程完成后立即返回.然后,您将获得一个返回代码列表,您可以对其进行评估.
which returns as soon as all subprocesses have finished. You then have a list of return codes which you maybe can evaluate.
这篇关于等待进程直到所有子进程完成?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:等待进程直到所有子进程完成?
基础教程推荐
- 包装空间模型 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
