Open benjreinhart opened 2 months ago
@benjreinhart Thank you for your insights. I agree with your suggestions and would like to propose the following implementation strategy:
Exponential Backoff for Reconnection:
maxRetry
limit to prevent indefinite retries.Heartbeat Mechanism:
Action/Data Buffer:
I'd be happy to take on implementing these improvements. Let me know if you'd like me to start with any specific part.
The client-side WebSocket client has some minimal retry logic. However, I do not believe it properly handles re-establishing connections if the server closes the connection and/or there's a network issue that severs the connection.
We should implement behavior such that a connection is re-established when:
The first should be straightforward, but the second may involve a heartbeat pattern where the client sends a message every N seconds (30?) and if it doesn't receive a reply it closes and reopens the connection. As a potential reference, I know the phoenix js client implements the heartbeat pattern.
We should be able to test this by killing and restarting the API server with an open browser tab (something that may happen regularly in dev once https://github.com/srcbookdev/srcbook/pull/277 is in). There's probably chrome dev tools that can help with this as well.