I want to set up a cluster of Node.js services with a Load Balancer in front of them (which for some reasons can't have sticky sessions).
Let's imaging I have two Nodes, and client (browser, for instance, using socket.io) sends wss:// request, and first Node gets it from LB, then it sends back to the client 'HTTP/1.1 101 Web Socket Protocol Handshake' response.
Will client and server afterwards use the same TCP connection for sending frames that was used for the initial client request? Or a new TCP connection will be established which might potentially be forwarded to the second Node by LB?
In case of using socket.io, it might still fallback and actually send long polling over http before WebSocket connection is established for performance. Are those polling requests can end up on different backend nodes?