带超时的子流程:超时过期异常后要做什么



如果我遵循python文档的建议,子流程超时=秒对我来说不起作用:

# copy+pasteable snippet :-)
import subprocess32 as subprocess
import datetime
now=datetime.datetime.now()
pipe=subprocess.Popen('sleep 5', shell=True, stdout=subprocess.PIPE)
try:
    pipe.communicate(timeout=1)
except subprocess.TimeoutExpired, exc:
    time_delta=datetime.datetime.now()-now
    print(time_delta)
    assert time_delta<datetime.timedelta(seconds=3), time_delta
    pipe.kill()
    outs, errs = pipe.communicate()
    time_delta=datetime.datetime.now()-now
    print(time_delta)
    assert time_delta<datetime.timedelta(seconds=3), time_delta
    print('OK')

文档建议在TimeoutExpired之后使用pipe.kill()和pipe.communicate():https://docs.python.org/3/library/subprocess.html#subprocess.Popen.communicate

这对我不起作用。第二个communicate()不会很快回来。

例外:

0:00:01.001234
0:00:05.002919
Traceback (most recent call last):
  File "/home/foo/src/test_timeout.py", line 16, in <module>
    assert time_delta<datetime.timedelta(seconds=3), time_delta
AssertionError: 0:00:05.002919

如果我使用['sleep', '5']而不是shell=True,那么它是有效的。如果我不提供stdout=subprocess.PIPE,那么它也能工作。

我猜外壳对管道没有反应。kill().

解决这个问题的最佳方法是什么?

一般模式:捕获TimeoutExpired,杀死启动的进程,再次调用.communicate()是正确的。

问题是,代码中的pipe.kill()只会杀死shell,而它的子进程(如/bin/sleep)可能会继续运行。请参阅如何终止使用shell=True启动的python子流程。

注:如果需要;没有必要等待孙进程。请参阅Python子流程.check_call与.check_output.

相关内容

  • 没有找到相关文章

最新更新