refactoring, fix reconnecting to notifier

This commit is contained in:
Jack Robison 2022-03-09 17:26:20 -05:00
parent 0dee6ca226
commit c5dc8d5cad
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
10 changed files with 190 additions and 189 deletions
scribe/elasticsearch

View file

@ -31,9 +31,40 @@ class ElasticNotifierProtocol(asyncio.Protocol):
class ElasticNotifierClientProtocol(asyncio.Protocol):
"""notifies the reader when ES has written updates"""
def __init__(self, notifications: asyncio.Queue):
def __init__(self, notifications: asyncio.Queue, host: str, port: int):
self.notifications = notifications
self.transport: typing.Optional[asyncio.Transport] = None
self.host = host
self.port = port
self._lost_connection = asyncio.Event()
self._lost_connection.set()
async def connect(self):
if self._lost_connection.is_set():
await asyncio.get_event_loop().create_connection(
lambda: self, self.host, self.port
)
async def maintain_connection(self, synchronized: asyncio.Event):
first_connect = True
if not self._lost_connection.is_set():
synchronized.set()
while True:
try:
await self._lost_connection.wait()
if not first_connect:
log.warning("lost connection to scribe-elastic-sync notifier")
await self.connect()
first_connect = False
synchronized.set()
log.info("connected to es notifier")
except Exception as e:
if not isinstance(e, asyncio.CancelledError):
log.warning("waiting 30s for scribe-elastic-sync notifier to become available (%s:%i)", self.host, self.port)
await asyncio.sleep(30)
else:
log.info("stopping the notifier loop")
raise e
def close(self):
if self.transport and not self.transport.is_closing():
@ -41,10 +72,11 @@ class ElasticNotifierClientProtocol(asyncio.Protocol):
def connection_made(self, transport):
self.transport = transport
log.info("connected to es notifier")
self._lost_connection.clear()
def connection_lost(self, exc) -> None:
self.transport = None
self._lost_connection.set()
def data_received(self, data: bytes) -> None:
try: