Damith
Damith

Reputation: 2082

When we should use SignalR self hosted and when we should not?

I am in a stage of using SignalR in my project and i don't understand when to use Self hosted option and when we should not use. As a example if I am willing to host my web application in server farm,

If we want to broadcast message into each client, how this is working in SignalR

Upvotes: 3

Views: 1369

Answers (1)

radu-matei
radu-matei

Reputation: 3520

The idea with SignalR running in multiple instances is that clients connected on instance A cannot get messages from clients connected to instance B.

(SignalR scaleout documentation)

However, when you scale out, clients can get routed to different servers. A client that is connected to one server will not receive messages sent from another server.

The solution to this is using a backplane - everytime a server recieves a message, it forwards it to all other servers. You can do this using Azure Service Bus, Redis or SQL.

The way I see, you use the self host option when you either don't want the full IIS running (because you have some lightweight operations that don't require all IIS heaviness) or you don't want a web server at all (for example you want to add real-time functionality to an already existing let's say forms application, or in any other process).

Be sure to read the documentation for self-hosting SignalR and decide whether you actually need to self host SignalR.

If you are developing a web application under IIS, I don't see any reason why you would want to self-host SignalR.

Hope this helps. Best of luck!

Upvotes: 2

Related Questions