I have a python script that starts several processes. Each process basically just calls the shell script:
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)
I am running several of these threads that are designed to run in the background. I want to have a timeout for these threads, so if it exceeds the timeout, they will be killed:
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()
The problem is that calling terminate () in the process threads does not kill the running run.sh script - it continues to run in the background until I forcibly kill it from the command line or finish internally. Is there a way to end and kill the subshell created by os.system ()?
source
share