admin管理员组文章数量:1344961
I'm working on a Twisted-based application where a memory leak occurs when a connection fails. The transport object continues to hold references, preventing garbage collection.
After a failed connection, I observe lingering references in memory, such as:
[{'_tempDataBuffer': [], 'protocol': None, 'addr': ('127.0.0.1', 12035), '_tempDataLen': 0, 'realAddress': ('127.0.0.1', 12035), 'doRead': <bound method Client.doConnect of <<class 'twisted.internet.tcp.Client'> to ('127.0.0.1', 12035) at 0x7f639f618350>>, 'doWrite': <bound method Client.doConnect of <<class 'twisted.internet.tcp.Client'> to ('127.0.0.1', 12035) at 0x7f639f618350>>, '_requiresResolution': False, 'reactor': <twisted.internet.epollreactor.EPollReactor object at 0x7f639fabe6d0>}]
It appears that doRead and doWrite are bound methods, keeping references alive. Additionally, the transport might still be present in the reactor’s reader/writer list.
What I've Tried: Calling loseConnection() on the transport when the connection fails.
Setting connector.transport = None inside clientConnectionFailed().
Ensuring the transport is removed from the reactor.
Running gc.collect() manually after connection failure.
However, the memory leak persists, and references to twisted.internet.tcp.Client objects are still present.
本文标签: pythonTwisted Memory Leak on Connection FailureTransport Object Holding ReferencesStack Overflow
版权声明:本文标题:python - Twisted: Memory Leak on Connection Failure - Transport Object Holding References - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753411a2533070.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论