7

我有一个简化形式的代码,如下所示:

from tornado import gen, httpclient, ioloop

io_loop = ioloop.IOLoop.instance()
client = httpclient.AsyncHTTPClient(io_loop=io_loop)

@gen.engine
def go_for_it():
    while True:
        r = yield gen.Task(fetch)

@gen.engine
def fetch(callback):
    response = yield gen.Task(client.fetch, 'http://localhost:8888/')
    callback(response)

io_loop.add_callback(go_for_it)
io_loop.start()

当我运行它时,内存占用量随着时间或多或少地线性增加。但是,如果我删除gen.engine嵌套:

@gen.engine
def go_for_it():
    while True:
        r = yield gen.Task(client.fetch, 'http://localhost:8888/')

内存使用保持不变。

我已经设法在 Mac OS X 和 Linux 上用不同版本的 tornado 2 重现了这个问题。有什么想法可能是导致此问题的原因吗?

4

1 回答 1

3

在 objgraph 包的帮助下深入研究,看起来代码泄漏了 ExceptionStackContexts。这些是由 gen.engine 创建来处理函数异常的,它们应该被清除但显然你发现了一个错误。

我最好的猜测是在某处留下了一个参考。

EDIT - The Tornado Team (Ben) has found a fix and it will be in a future release. https://github.com/facebook/tornado/commit/bff07405549a6eb173a4cfc9bbc3fc7c6da5cdd7

于 2012-11-16T06:05:19.260 回答