In Python, I have a program snippet similar to the following that has the effect of running a custom command and returning the stdout data (or raise exception when exit code is non-zero):

proc = subprocess.Popen(
    cmd,
    # keep stderr separate; or merge it with stdout (default).
    stderr=(subprocess.PIPE if ignore_stderr else subprocess.STDOUT),
    stdout=subprocess.PIPE,
    shell=True)

And then I use communicate (not wait which could deadlock) to wait for the complete stdout data:

stdoutdata, stderrdata = proc.communicate()

My question is - how do I set a timeout for any command? For example, I don't want the program to wait indefinitely because a particular programs takes more than, say, 5 minutes to run.

Simpler, unsophisticated solutions would be nice.

link|improve this question
1  
A related Python issue tracker entry: bugs.python.org/issue5673 – Sridhar Ratnakumar Jul 28 '09 at 1:54
4  
why community wiki? – kender Jul 28 '09 at 7:03
1  
@kender, I agree -- why ever should a sharp technical question be "community wiki"?! – Alex Martelli Jul 28 '09 at 15:15
I was under the impression that marking it 'community wiki' will let others to edit the question (for clarification/grammar, may be - just like wikipedia). looks like it may have a different meaning; and if so I have misused it. – Sridhar Ratnakumar Jul 28 '09 at 16:20
feedback

12 Answers

I don't know much about the low level details; but, given that in python 2.6 the API offers the ability to wait for threads and terminate processes, what about running the process in a separate thread?

import subprocess, threading

class Command(object):
    def __init__(self, cmd):
        self.cmd = cmd
        self.process = None

    def run(self, timeout):
        def target():
            print 'Thread started'
            self.process = subprocess.Popen(self.cmd, 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()
        print self.process.returncode

command = Command("echo 'Process started'; sleep 2; echo 'Process finished'")
command.run(timeout=3)
command.run(timeout=1)

The output of this snippet in my machine is:

Thread started
Process started
Process finished
Thread finished
0
Thread started
Process started
Terminating process
Thread finished
-15

where it can be seen that, in the first execution, the process finished correctly (return code 0), while the in the second one the process was terminated (return code -15).

I haven't tested in windows; but, aside from updating the example command, I think it should work since I haven't found in the documentation anything that says that thread.join or process.terminate is not supported.

link|improve this answer
2  
+1 For being platform independent. I've run this on both linux and windows 7 (cygwin and plain windows python) -- works as expected in all three cases. – phooji Feb 17 '11 at 0:27
4  
I've modified your code a bit in order to be able to pass native Popen kwargs and put it on gist. It is now ready to use multi purpose; gist.github.com/1306188 – Roy E. Nov 9 '11 at 13:07
I'm using this class within another thread, the problem is that, when the external command hangups and python tries to call process.terminate, the process variable is set to None. I looked for the situation where Popen return s None, but I couldn't found any information. – Roberto Mar 19 at 8:30
feedback

If you're on Unix,

import signal
  ...
class Alarm(Exception):
    pass

def alarm_handler(signum, frame):
    raise Alarm

signal.signal(signal.SIGALRM, alarm_handler)
signal.alarm(5*60)  # 5 minutes
try:
    stdoutdata, stderrdata = proc.communicate()
    signal.alarm(0)  # reset the alarm
except Alarm:
    print "Oops, taking too long!"
    # whatever else
link|improve this answer
Well, I am interested in a cross-platform solution that works at least on win/linux/mac. – Sridhar Ratnakumar Jul 28 '09 at 1:52
1  
Linux and Mac will be fine (they're all Unix deep down, signal.alarm works everywhere BUT Windows), but I have no idea how to make this work on Windows -- I suspect Windows needs a totally different approach and I'm not sure subprocess can support it. – Alex Martelli Jul 28 '09 at 4:00
1  
I like this unix-based approach. Ideally, one would combine this with a windows-specific approach (using CreateProcess and Jobs) .. but for now, the solution below is simple, easy and works-so-far. – Sridhar Ratnakumar Jul 29 '09 at 19:43
1  
I have added a portable solution, see my answer – flybywire Oct 13 '09 at 8:16
2  
This solution would work only_if signal.signal(signal.SIGALARM, alarm_handler) is called from the main thread. See the documentation for signal – volatilevoid Dec 19 '09 at 5:58
show 2 more comments
feedback

Here is Alex Martelli's solution as a module with proper process killing. The other approaches do not work because they do not use proc.communicate(). So if you have a process that produces lots of output, it will fill its output buffer and then block until you read something from it.

from os import kill
from signal import alarm, signal, SIGALRM, SIGKILL
from subprocess import PIPE, Popen

def run(args, cwd = None, shell = False, kill_tree = True, timeout = -1, env = None):
    '''
    Run a command with a timeout after which it will be forcibly
    killed.
    '''
    class Alarm(Exception):
        pass
    def alarm_handler(signum, frame):
        raise Alarm
    p = Popen(args, shell = shell, cwd = cwd, stdout = PIPE, stderr = PIPE, env = env)
    if timeout != -1:
        signal(SIGALRM, alarm_handler)
        alarm(timeout)
    try:
        stdout, stderr = p.communicate()
        if timeout != -1:
            alarm(0)
    except Alarm:
        pids = [p.pid]
        if kill_tree:
            pids.extend(get_process_children(p.pid))
        for pid in pids:
            # process might have died before getting to this line
            # so wrap to avoid OSError: no such process
            try: 
                kill(pid, SIGKILL)
            except OSError:
                pass
        return -9, '', ''
    return p.returncode, stdout, stderr

def get_process_children(pid):
    p = Popen('ps --no-headers -o pid --ppid %d' % pid, shell = True,
              stdout = PIPE, stderr = PIPE)
    stdout, stderr = p.communicate()
    return [int(p) for p in stdout.split()]

if __name__ == '__main__':
    print run('find /', shell = True, timeout = 3)
    print run('find', shell = True)
link|improve this answer
1  
I recommend this answer. – Casey Sep 20 '10 at 23:24
This will not work on windows, plus the order of functions is reversed. – Hamish Grubijan Jan 23 '11 at 18:15
1  
This sometimes results in exception when another handler registers itself on SIGALARM and kills the process before this one gets to "kill", added work-around. BTW, great recipe! I've used this to launch 50,000 buggy processes so far without freezing or crashing the handling wrapper. – Yaroslav Bulatov Jul 1 '11 at 21:02
How can this be modified to run in a Threaded application? I am trying to use it from within worker threads and get ValueError: signal only works in main thread – wim Aug 3 '11 at 7:18
@Yaroslav Bulatov Thanks for the info. What was the workaround you added to deal with the issue mentioned? – orange80 Aug 10 '11 at 15:38
show 1 more comment
feedback
up vote 3 down vote accepted

This is the best I could come up with (extracted from my private program):

        # poll for terminated status till timeout is reached
        t_beginning = time.time()
        seconds_passed = 0
        while True:
            if p.poll() is not None:
                break
            seconds_passed = time.time() - t_beginning
            if timeout and seconds_passed > timeout:
                p.terminate()
                raise TimeoutError(cmd, timeout)
            time.sleep(0.1)

(inspired by some other SO comment elsewhere)

link|improve this answer
So how did you replace proc.Communicate? – Wim Coenen Oct 20 '09 at 17:46
I tried doing this in a separate thread during the p.Communicate(), but p.Poll() always returned None even for finished processes. – Wim Coenen Oct 21 '09 at 10:58
3  
Looks like p.poll() will deadlock if the stdout buffer fills up, so it turns out this doesn't work. I'm wondering if you just didn't hit deadlock because you were only dealing with smaller amounts of data – shreddd Jan 3 '11 at 22:13
Yep, -1 for this answer. Dangerous! This is traditional newbie error -- if you will not read stdout/stderr buffers, child process will be locked writing to pipes. Although, this will work if you do not pipe stdout nor stderr. IMHO, best solution in python is to communicate() in separate thread, reading stdout/stderr buffers (like suggested here: stackoverflow.com/a/4825933/113963). And deal with timeout in main thread, kill()ing process if necesary. Of course you could also grab stdout/stderr fd's and select() or poll() them using socket... :) – Vadim Fint May 11 at 12:59
feedback

Another option is to write to a temporary file to prevent the stdout blocking instead of needing to poll with communicate(). This worked for me where the other answers did not; for example on windows.

    outFile =  tempfile.SpooledTemporaryFile() 
    errFile =   tempfile.SpooledTemporaryFile() 
    proc = subprocess.Popen(args, stderr=errFile, stdout=outFile, universal_newlines=False)
    wait_remaining_sec = timeout

    while proc.poll() is None and wait_remaining_sec > 0:
        time.sleep(1)
        wait_remaining_sec -= 1

    if wait_remaining_sec <= 0:
        killProc(proc.pid)
        raise ProcessIncompleteError(proc, timeout)

    # read temp streams from start
    outFile.seek(0);
    errFile.seek(0);
    out = outFile.read()
    err = errFile.read()
    outFile.close()
    errFile.close()
link|improve this answer
feedback

The solution I use is to prefix the shell command with timelimit. If the comand takes too long, timelimit will stop it and Popen will have a returncode set by timelimit. If it is > 128, it means timelimit killed the process.

See also python subprocess with timeout and large output (>64K)

link|improve this answer
I use a similar tool called timeout - packages.ubuntu.com/search?keywords=timeout - but neither works on Windows, do they? – Sridhar Ratnakumar Dec 16 '11 at 18:00
feedback

I've used killableprocess successfully on Windows, Linux and Mac. If you are using Cygwin Python, you'll need OSAF's version of killableprocess because otherwise native Windows processes won't get killed.

link|improve this answer
Looks like killableprocess doesn't add a timeout to the Popen.communicate() call. – Wim Coenen Oct 20 '09 at 17:44
feedback

I've implemented what I could gather from a few of these. This works in Windows, and since this is a community wiki, I figure I would share my code as well:

class Command(threading.Thread):
    def __init__(self, cmd, outFile, errFile, timeout):
        threading.Thread.__init__(self)
        self.cmd = cmd
        self.process = None
        self.outFile = outFile
        self.errFile = errFile
        self.timed_out = False
        self.timeout = timeout

    def run(self):
        self.process = subprocess.Popen(self.cmd, stdout = self.outFile, \
            stderr = self.errFile)

        while (self.process.poll() is None and self.timeout > 0):
            time.sleep(1)
            self.timeout -= 1

        if not self.timeout > 0:
            self.process.terminate()
            self.timed_out = True
        else:
            self.timed_out = False

Then from another class or file:

        outFile =  tempfile.SpooledTemporaryFile()
        errFile =   tempfile.SpooledTemporaryFile()

        executor = command.Command(c, outFile, errFile, timeout)
        executor.daemon = True
        executor.start()

        executor.join()
        if executor.timed_out:
            out = 'timed out'
        else:
            outFile.seek(0)
            errFile.seek(0)
            out = outFile.read()
            err = errFile.read()

        outFile.close()
        errFile.close()
link|improve this answer
feedback

Although I haven't looked at it extensively, this decorator I found at ActiveState seems to be quite useful for this sort of thing. Along with subprocess.Popen(..., close_fds=True), at least I'm ready for shell-scripting in Python.

link|improve this answer
feedback

I added the solution with threading from jcollado to my Python module easyprocess.

Install:

pip install easyprocess

Example:

from easyprocess import Proc

# shell is not supported!
stdout=Proc('ping localhost').call(timeout=1.5).stdout
print stdout
link|improve this answer
feedback

jcollado's answer can be simplified using the threading.Timer class:

import subprocess, shlex
from threading import Timer

def run(cmd, timeout_sec):
  proc = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE, 
    stderr=subprocess.PIPE)
  kill_proc = lambda p: p.kill()
  timer = Timer(timeout_sec, kill_proc, [proc])
  timer.start()
  stdout,stderr = proc.communicate()
  timer.cancel()
link|improve this answer
feedback

Once you understand full process running machinery in *unix, you will easily find simplier solution:

Consider this simple example how to make timeoutable communicate() meth using select.select() (available alsmost everythere on *nix nowadays). This also can be written with epoll/poll/kqueue, but select.select() variant could be a good example for you. And major limitations of select.select() (speed and 1024 max fds) are not applicapable for your task.

This works under *nix, does not create threads, does not uses signals, can be lauched from any thread (not only main), and fast enought to read 250mb/s of data from stdout on my machine (i5 2.3ghz).

There is a problem in join'ing stdout/stderr at the end of communicate. If you have huge program output this could lead to big memory usage. But you can call communicate() several times with smaller timeouts.

class Popen(subprocess.Popen):
    def communicate(self, input=None, timeout=None):
        if timeout is None:
            return subprocess.Popen.communicate(self, input)

        if self.stdin:
            # Flush stdio buffer, this might block if user
            # has been writing to .stdin in an uncontrolled
            # fashion.
            self.stdin.flush()
            if not input:
                self.stdin.close()

        read_set, write_set = [], []
        stdout = stderr = None

        if self.stdin and input:
            write_set.append(self.stdin)
        if self.stdout:
            read_set.append(self.stdout)
            stdout = []
        if self.stderr:
            read_set.append(self.stderr)
            stderr = []

        input_offset = 0
        deadline = time.time() + timeout

        while read_set or write_set:
            try:
                rlist, wlist, xlist = select.select(read_set, write_set, [], max(0, deadline - time.time()))
            except select.error as ex:
                if ex.args[0] == errno.EINTR:
                    continue
                raise

            if not (rlist or wlist):
                # Just break if timeout
                # Since we do not close stdout/stderr/stdin, we can call
                # communicate() several times reading data by smaller pieces.
                break

            if self.stdin in wlist:
                chunk = input[input_offset:input_offset + subprocess._PIPE_BUF]
                try:
                    bytes_written = os.write(self.stdin.fileno(), chunk)
                except OSError as ex:
                    if ex.errno == errno.EPIPE:
                        self.stdin.close()
                        write_set.remove(self.stdin)
                    else:
                        raise
                else:
                    input_offset += bytes_written
                    if input_offset >= len(input):
                        self.stdin.close()
                        write_set.remove(self.stdin)

            # Read stdout / stderr by 1024 bytes
            for fn, tgt in (
                (self.stdout, stdout),
                (self.stderr, stderr),
            ):
                if fn in rlist:
                    data = os.read(fn.fileno(), 1024)
                    if data == '':
                        fn.close()
                        read_set.remove(fn)
                    tgt.append(data)

        if stdout is not None:
            stdout = ''.join(stdout)
        if stderr is not None:
            stderr = ''.join(stderr)

        return (stdout, stderr)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.