问题描述
我们在运行 python Twisted 应用程序的 Ubuntu Linux 机器上遇到了一些可怕的打开的文件太多"的问题.在我们程序的许多地方,我们都在使用子进程 Popen,如下所示:
We are having some problems with the dreaded "too many open files" on our Ubuntu Linux machine rrunning a python Twisted application. In many places in our program, we are using subprocess Popen, something like this:
Popen('ifconfig ' + iface, shell=True, stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
output = process.stdout.read()
而在其他地方我们使用子进程通信:
while in other places we use subprocess communicate:
process = subprocess.Popen(['/usr/bin/env', 'python', self._get_script_path(script_name)],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
close_fds=True)
out, err = process.communicate(data)
在这两种情况下我究竟需要做什么才能关闭任何打开的文件描述符?Python 文档对此并不清楚.根据我收集的信息(可能是错误的),communicate() 和 wait() 确实会自行清理任何打开的 fd.但是波本呢?如果我不调用通信或等待,我是否需要在调用 Popen 后显式关闭标准输入、标准输出和标准错误?
What exactly do I need to do in both cases in order to close any open file descriptors? Python documentation is not clear on this. From what I gather (which could be wrong) both communicate() and wait() will indeed clean up any open fds on their own. But what about Popen? Do I need to close stdin, stdout, and stderr explicitly after calling Popen if I don't call communicate or wait?
推荐答案
根据到子进程模块的这个源(链接) 如果你调用 communicate 你不应该需要关闭 stdout 和 stderr管道.
According to this source for the subprocess module (link) if you call communicate you should not need to close the stdout and stderr pipes.
否则我会尝试:
process.stdout.close()
process.stderr.close()
在你使用完 process 对象之后.
after you are done using the process object.
例如,当你直接调用 .read() 时:
For instance, when you call .read() directly:
output = process.stdout.read()
process.stdout.close()
查看上面的模块源代码,了解 communicate() 是如何定义的,你会看到它在读取每个管道后会关闭它,所以这也是你应该做的.
Look in the above module source for how communicate() is defined and you'll see that it closes each pipe after it reads from it, so that is what you should also do.
这篇关于子进程Popen和通信后关闭所有文件的正确方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)