我在 Python 3 中生成具有超时的异步子进程时遇到问题。
我想要实现的目标:我想在不等待结果的情况下异步生成多个进程,但我也希望确保每个生成的进程都将在给定的超时时间内结束。
我在这里发现了类似的问题:Using module 'subprocess' with timeout and Asynchronous background processes in Python? 但他们没有解决我的问题。
我的代码看起来像这样。我有命令类,如Using module 'subprocess' with timeout中所建议的那样:
class Command(object):
def __init__(self, cmd):
self.cmd = cmd
self.process = None
def run(self, timeout):
def target():
print('Thread started')
args = shlex.split(self.cmd)
self.process = subprocess.Popen(args, shell=True)
self.process.communicate()
print('Thread finished')
thread = threading.Thread(target=target)
thread.start()
thread.join(timeout)
if thread.is_alive():
print('Terminating process')
self.process.terminate()
thread.join()
然后当我想产生子进程时:
for system in systems:
for service in to_spawn_system_info:
command_str = "cd {0} && python proc_ip.py {1} {2} 0 2>>{3}".format(home_dir,
service, system, service_log_dir)
command = Command(command_str)
command.run(timeout=60)
当我运行它时,输出似乎等待每个命令产生并结束。我明白了
Thread started
Thread finished
Thread started
Thread finished
Thread started
Thread finished
Thread started
Thread finished
所以我的问题是我做错了什么?现在我开始怀疑是否有可能产生一个进程并通过超时限制它的执行。
为什么我需要这个?spawner 脚本将在 cron 中运行。它将每 10 分钟执行一次,它必须产生大约 20 个子进程。我想保证每个子进程都会在脚本从 cron 再次运行之前结束。