Hey, I have a question regarding zero-downtime deploys, and how they work with Websockets.
I have a web service (a game server) which needs to be running all the time.
As far as I understand from this page, whenever a new instance of a web service is deployed, the old instance is kept alive for around 15 minutes, until it is killed with a SIGTERM
signal.
My question is: Does that mean that any client (Websocket) still connected to that (old) instance of my web service gets disconnected after 15 minutes (or at some point)? Or do these clients (from the old instance) transition to the new instance of my web service somehow, without them getting disconnected?
Thanks in advance!
Muri