It depends on how you store the SignalR connection information.
If you use persistent external storage (see this post ), then switch from one web server to another, which is a VIP exchange in the end should not interrupt connections.
If you use a different approach for storing connection information, for example, in memory, then this will be lost. b / c you are going to transfer client traffic from one web server to another using swap deployment.
source share