Chandan
Chandan

Reputation: 67

SignalR Concurrent Request is more that 50 thousand

We are using SignalR Technology for our web application, With IIS 7.5 and Windows 2008 R2 Server. Which has huge hits, that Concurrent request are more than 50 thousand. So when it reaches 5 thousand, afterwards it not responding for any request. So what is solution, Except Server up-gradation.

Calling Method is long-polling and Cross Domain Application.

Upvotes: 1

Views: 455

Answers (1)

Lars Höppner
Lars Höppner

Reputation: 18402

Take a look at the performance section of the documentation. You're hitting the default limit of 5000 concurrent connections. You can increase that value, but ultimately you'll have to look at a scale-out solution. (50,000 connections is a tall order for any server)

Upvotes: 2

Related Questions