我有一个启动多个进程的 python 脚本。每个进程基本上只是调用一个 shell 脚本:
from multiprocessing import Process
import os
import logging
def thread_method(n = 4):
global logger
command = "~/Scripts/run.sh " + str(n) + " >> /var/log/mylog.log"
if (debug): logger.debug(command)
os.system(command)
我启动了其中几个线程,这些线程旨在在后台运行。我想在这些线程上有一个超时,这样如果超过超时,它们就会被杀死:
t = []
for x in range(10):
try:
t.append(Process(target=thread_method, args=(x,) ) )
t[-1].start()
except Exception as e:
logger.error("Error: unable to start thread")
logger.error("Error message: " + str(e))
logger.info("Waiting up to 60 seconds to allow threads to finish")
t[0].join(60)
for n in range(len(t)):
if t[n].is_alive():
logger.info(str(n) + " is still alive after 60 seconds, forcibly terminating")
t[n].terminate()
问题是在进程线程上调用 terminate() 并不会终止启动的 run.sh 脚本——它会继续在后台运行,直到我从命令行强制终止它,或者它在内部完成。有没有办法让终止也杀死由 os.system() 创建的子shell?