This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2019年06月27日 06:59 by haizaar, last changed 2022年04月11日 14:59 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 14490 | merged | gregory.p.smith, 2019年07月01日 00:03 | |
| PR 15897 | merged | miss-islington, 2019年09月11日 09:23 | |
| PR 15898 | merged | miss-islington, 2019年09月11日 09:23 | |
| Messages (14) | |||
|---|---|---|---|
| msg346712 - (view) | Author: haizaar (haizaar) | Date: 2019年06月27日 06:59 | |
Consider the following:
subprocess.run('sleep 10', shell=True, timeout=.1, capture_output=True)
It should raise after 0.1 seconds, but it does not - it waits 10 seconds till sleep finishes and only then raises "subprocess.TimeoutExpired: Command 'sleep 10' timed out after 0.1 seconds"
Removing 'capture_output=True' or converting command string to list (and removing shell=True) makes it work.
I'm using Python 3.7.3 on Ubuntu 16.04. Reproduces on official docker Python 3.7.3 image alpine3.8.
|
|||
| msg346714 - (view) | Author: Karthikeyan Singaravelan (xtreak) * (Python committer) | Date: 2019年06月27日 07:17 | |
On mac this exits immediately with 0.1 seconds as timeout but reproducible on Ubuntu with master. |
|||
| msg346718 - (view) | Author: Martin Panter (martin.panter) * (Python committer) | Date: 2019年06月27日 08:37 | |
Same thing going on as in Issue 30154. The shell is probably spawning the "sleep" command as a child process (grandchild of Python), and waiting for it to exit. When Python times out, it will kill the shell process, leaving the grandchild as an orphan. The "sleep" process will still be running and probably holds the "stdout" and/or "stderr" pipes open, and Python will wait indefinitely to be sure it has captured all the output to those pipes. Also see Issue 26534 proposes APIs to kill a process group rather than the single child process. |
|||
| msg346735 - (view) | Author: haizaar (haizaar) | Date: 2019年06月27日 13:11 | |
Thanks for looking at it. My original code had "tar" running, which is a child of the shell as well... I assume running exec in the shell may help somewhat, but not a cure obviously. I'm all for killing the process group. "Run something and get it's about" should be simple enough without requiring a programmer to know all POSIX process semantics. |
|||
| msg346948 - (view) | Author: Gregory P. Smith (gregory.p.smith) * (Python committer) | Date: 2019年07月01日 00:09 | |
Issue 30154 that I've marked as a duplicate demonstrates this problem without using shell=True. The solution I proposed handles that via the additional small timeout on the cleanup side, but still has the caveat that the grandchild processes keep running unless the caller used start_new_session=True. See the PR. We cannot reasonably determine when start_new_session=True should be a default behavior. And I worry that doing it when it should not be will cause unexpected new problems with existing code. |
|||
| msg351775 - (view) | Author: Thomas Wouters (twouters) * (Python committer) | Date: 2019年09月11日 09:23 | |
New changeset 580d2782f70f8e0bed7ec20abb03d740cb83b5da by T. Wouters (Gregory P. Smith) in branch 'master': bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490) https://github.com/python/cpython/commit/580d2782f70f8e0bed7ec20abb03d740cb83b5da |
|||
| msg351792 - (view) | Author: miss-islington (miss-islington) | Date: 2019年09月11日 10:05 | |
New changeset 872c85a1796290baef89a20dbde819c4da45830c by Miss Islington (bot) in branch '3.8': bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490) https://github.com/python/cpython/commit/872c85a1796290baef89a20dbde819c4da45830c |
|||
| msg351793 - (view) | Author: miss-islington (miss-islington) | Date: 2019年09月11日 10:06 | |
New changeset 5fe153c21de020f37712910b0dcce93341bba272 by Miss Islington (bot) in branch '3.7': bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490) https://github.com/python/cpython/commit/5fe153c21de020f37712910b0dcce93341bba272 |
|||
| msg351813 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2019年09月11日 10:55 | |
On Windows, the following pattern _can_ hang: proc = subprocess.Popen(cmd, stdout=subprocess.PIPE) try: return proc.communicate(timeout=1.0) except TimeoutExpired: proc.kill() return proc.communicate() # <== HERE Even if the first child process is killed, communicate() waits until the pipe is closed. If the child process spawned a 3rd process before being killed, the second .communicate() calls hangs until the 3rd process exit or close its stdout. I'm not sure if subprocess.run() should do anything about this case, but it was at least for your information. I'm fighting against this issue in bpo-37531. IMHO it's an issue of the Windows implementation of Popen.communicate(): it's implemented with a blocking call to stdout.read() run in a thread. The thread cannot be interrupted in any way and will until complete once stdout is closed. Again, if the direct child process spawned other processes, stdout is only closed in the main parent process once all child processes exit or at least closed their stdout. Maybe another issue should be opened to avoid blocking with the following pattern on Windows: proc.kill() proc.communicate() |
|||
| msg351912 - (view) | Author: Gregory P. Smith (gregory.p.smith) * (Python committer) | Date: 2019年09月11日 14:42 | |
Thanks. I believe this issue is fixed but you've identified follow-on issues. lets follow up on those in their own bugs. |
|||
| msg352677 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2019年09月17日 23:40 | |
> On Windows, the following pattern _can_ hang: (...) I created bpo-38207 "subprocess: On Windows, Popen.kill() + Popen.communicate() is blocking until all processes using the pipe close the pipe" to track this issue. |
|||
| msg353705 - (view) | Author: Tony Cappellini (cappy) | Date: 2019年10月01日 17:43 | |
I'm still seeing hangs with subprocess.run() in Python 3.7.4 Unfortunately, it involves talking to an NVME SSD on Linux, so I cannot easily submit code to duplicate it. |
|||
| msg353707 - (view) | Author: Tony Cappellini (cappy) | Date: 2019年10月01日 18:00 | |
Using Python 3.7.4, I'm calling subprocess.run() with the following arguments. .run() still hangs even though a timeout is being passed in. subprocess.run(cmd_list, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False, timeout=timeout_val, check=True, universal_newlines=True) cmd_list contains the name of the bash script below, which is ./rescan.sh ------------------------------------------------------------------ #!/usr/bin/bash echo Rescanning system for PCIe devices echo "Rescan device" echo 1 > /sys/bus/pci/rescan sleep 5 if [ `lspci | grep -ic "Non-Volatile memory controller"` -gt 0 ] then echo "Device Detected after Rescan" else echo "Device NOT detected after Rescan" exit 1 fi echo Rescan Done This script is scanning for NVME SSDs, so duplicating the issue is not as straightforward as submitting a python script. The OS is CentOS 7. uname -a shows 3.10.0-693.el7.x86_64 #1 SMP Tue Aug 22 21:09:27 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux I know the Kernel is old, but we have a restriction against updating it. |
|||
| msg353710 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2019年10月01日 20:26 | |
> I'm still seeing hangs with subprocess.run() in Python 3.7.4 That's not surprising, the fix has been pushed at 2019年09月11日. Python 3.7.5 will include the fix and it will be released soon: https://www.python.org/dev/peps/pep-0537/ |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:59:17 | admin | set | github: 81605 |
| 2022年01月20日 09:49:05 | iritkatriel | link | issue37091 superseder |
| 2021年02月27日 19:32:06 | eryksun | link | issue32795 superseder |
| 2019年10月01日 20:26:06 | vstinner | set | messages: + msg353710 |
| 2019年10月01日 18:00:22 | cappy | set | messages: + msg353707 |
| 2019年10月01日 17:43:04 | cappy | set | nosy:
+ cappy messages: + msg353705 |
| 2019年09月17日 23:40:17 | vstinner | set | messages: + msg352677 |
| 2019年09月11日 14:42:27 | gregory.p.smith | set | status: open -> closed resolution: fixed messages: + msg351912 stage: patch review -> commit review |
| 2019年09月11日 10:55:18 | vstinner | set | nosy:
+ vstinner messages: + msg351813 |
| 2019年09月11日 10:06:00 | miss-islington | set | messages: + msg351793 |
| 2019年09月11日 10:05:17 | miss-islington | set | nosy:
+ miss-islington messages: + msg351792 |
| 2019年09月11日 09:23:25 | miss-islington | set | pull_requests: + pull_request15539 |
| 2019年09月11日 09:23:18 | miss-islington | set | keywords:
+ patch stage: patch review pull_requests: + pull_request15538 |
| 2019年09月11日 09:23:08 | twouters | set | nosy:
+ twouters messages: + msg351775 |
| 2019年07月04日 19:57:28 | gregory.p.smith | set | stage: resolved -> (no value) |
| 2019年07月04日 19:57:22 | gregory.p.smith | set | status: closed -> open assignee: gregory.p.smith resolution: duplicate -> (no value) |
| 2019年07月01日 00:09:59 | gregory.p.smith | set | messages: + msg346948 |
| 2019年07月01日 00:07:00 | gregory.p.smith | link | issue30154 superseder |
| 2019年07月01日 00:06:43 | gregory.p.smith | link | issue26534 superseder |
| 2019年07月01日 00:04:26 | gregory.p.smith | link | issue5115 superseder |
| 2019年07月01日 00:03:26 | gregory.p.smith | set | pull_requests: + pull_request14307 |
| 2019年06月27日 13:11:23 | haizaar | set | messages: + msg346735 |
| 2019年06月27日 08:37:07 | martin.panter | set | status: open -> closed superseder: subprocess.run with stderr connected to a pipe won't timeout when killing a never-ending shell commanad nosy: + martin.panter messages: + msg346718 resolution: duplicate stage: resolved |
| 2019年06月27日 07:17:18 | xtreak | set | nosy:
+ gregory.p.smith, xtreak messages: + msg346714 |
| 2019年06月27日 06:59:50 | haizaar | create | |