How i can use Azure Web PubSub multiple instances to work together as one service?

Ebrahim Naef 1 Reputation point
2022-02-17T11:52:11.797+00:00

For Azure Web PubSub the Concurrent Connections per Unit is 1,000 and the Max Units is 100 that means the instance max number of Concurrent Connections per Unit is (100*1000=100000). If my app has 200000 Concurrent Connections then, we need tow instance. how to make these two instance work as one service or instance?

Azure Web PubSub
Azure Web PubSub
An Azure service that provides real-time messaging for web applications using WebSockets and the publish-subscribe pattern.
59 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Liangying Wei 756 Reputation points Microsoft Employee
    2022-02-21T09:03:44.257+00:00

    Could you describe more about your scenarios?

    Here is a doc https://learn.microsoft.com/en-us/azure/azure-web-pubsub/concept-disaster-recovery for how to set up multiple instances working together, but please note that this is not applicable for the PubSub WebSocket clients using the PubSub subprotocol.

    0 comments No comments

  2. Ebrahim Naef 1 Reputation point
    2022-02-21T09:10:00.21+00:00

    The application is mobile chat application. App will have more than million user, maybe 10 million.
    Can pubsub handle these number of user and how?