我有一系列客户端需要通过ws
协议不断连接到我的服务器。由于许多不同的原因,连接偶尔会下降。这是可以接受的,但是当它发生时,我希望我的客户重新连接。
目前我的临时解决方法是让父进程启动客户端,当它检测到连接丢弃时,终止它(客户端永远不会处理任何关键数据,对sigkill
没有副作用)并且重新生成一个新的客户。虽然这样做了,但我更倾向于解决实际问题。
这大致是我的客户:
from autobahn.twisted.websocket import WebSocketClientProtocol, WebSocketClientFactory
from twisted.internet import reactor
from threading import Thread
from time import sleep
class Client:
def __init__(self):
self._kill = False
self.factory = WebSocketClientFactory("ws://0.0.0.0")
self.factory.openHandshakeTimeout = 60 # ensures handshake doesnt timeout due to technical limitations
self.factory.protocol = self._protocol_factory()
self._conn = reactor.connectTCP("0.0.0.0", 1234, self.factory)
reactor.run()
def _protocol_factory(self):
class ClientProtocol(WebSocketClientProtocol):
def onConnect(self, response):
Thread(target=_self.mainloop, daemon=True).start()
def onClose(self, was_clean, code, reason):
_self.on_cleanup()
_self = self
return ClientProtocol
def on_cleanup(self):
self._kill = True
sleep(30)
# Wait for self.mainloop to finish.
# It is guaranteed to exit within 30 seconds of setting _kill flag
self._kill = False
self._conn = reactor.connectTCP("0.0.0.0", 1234, self.factory)
def mainloop(self):
while not self._kill:
sleep(1) # does some work
此代码使客户端正常工作,直到第一次连接断开,此时它尝试重新连接。在此过程中没有引发任何异常,似乎一切都在客户端正确,调用onConnect
并启动新的mainloop
,但服务器从未收到第二次握手。然而,客户似乎认为它是连接的。
我做错了什么?为什么会发生这种情况?
答案 0 :(得分:0)
我不是一个扭曲的专家,也不能说出你做错了什么,但我现在正在一个项目中使用Autobahn,我使用ReconnectingClientFactory解决了重新连接问题。也许你想检查一下examples使用ReconnectingClientFactory和Autobahn。