【发布时间】:2019-08-29 09:25:15
【问题描述】:
我正在使用tornado.ioloop.IOLoop.run_in_executor 将同步函数更改为异步,但事实证明,每次调用该函数时,都会创建一个线程但没有杀死。
这是一个最小可重现的例子(至少在我的机器上可以重现):
#!/usr/bin/env python3
import time
import tornado.ioloop
import tornado.web
def slow_func():
time.sleep(1)
print('slow func returned')
return 'succ\n'
class TestHandler(tornado.web.RequestHandler):
async def get(self):
print('GET called')
try:
result = await tornado.ioloop.IOLoop.current().run_in_executor(None, slow_func)
except Exception as e:
print(e)
self.write(result)
print('GET returned')
if __name__ == '__main__':
tornado.web.Application([
(r'/', TestHandler),
]).listen(3000)
print('Serving at 3000')
tornado.ioloop.IOLoop.current().start()
对该TestHandler 的每个请求都会创建一个新线程来运行slow_func,但该线程在函数返回后仍然存在。我可以在ps H 中看到它们,它会创建新线程,直到达到 ulimit。我这里的环境是:
$ uname -a
Linux xxx 2.6.32-754.6.3.el6.x86_64 #1 SMP Tue Sep 18 10:29:08 EDT 2018 x86_64 x86_64 x86_64 GNU/Linux
$ python3 --version
Python 3.7.4
$ pip3 show tornado
Name: tornado
Version: 6.0.3
Summary: Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
Home-page: http://www.tornadoweb.org/
Author: Facebook
Author-email: python-tornado@googlegroups.com
License: http://www.apache.org/licenses/LICENSE-2.0
Location: /xxx/lib/python3.7/site-packages
Requires:
Required-by:
tornado.ioloop.IOLoop.run_in_executor 使用 concurrent.futures.Executor 并返回一个可等待的 Future 对象。 [1][2][3]
- [1]:https://www.tornadoweb.org/en/stable/ioloop.html#tornado.ioloop.IOLoop.run_in_executor
- [2]:https://www.tornadoweb.org/en/stable/_modules/tornado/ioloop.html#IOLoop.run_in_executor
- [3]:https://docs.python.org/3/library/concurrent.futures.html
函数返回后线程在做什么?为什么在未来对象解决后他们不被杀死?我应该如何避免这种情况?
【问题讨论】:
-
我已经弄清楚为什么其他人没有遇到这个问题:
concurrent.futures.ThreadPoolExecutor的默认大小是CPU核心的5倍。这里我有 384 个内核,但ulimit -u只有 1024 个。 -
仅供参考,这在 Python 3.8 中被更改为默认使用最多 32 个线程。
标签: python-3.x multithreading tornado python-asyncio concurrent.futures