Tornado FD leak
[W 101119 13:49:59 iostream:190] Read error on 33: [Errno 104]
Connection reset by peer
Tornado doesn’t have a timeout for idle connections - it will let the
connection stay alive as long as the client holds the connection open.
It’s possible you’ve got some other kind of file descriptor leak, but
if the problem is idle connections then you can either disable all
connection reuse by passing no_keepalive=True to your HTTPServer
constructor, or run behind nginx, which is (I assume) more
sophisticated about managing idle connections.