Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

MSDN documentation doesn't seem to have a good coverage on ASP.net 4.5 support of HTML5 WebSockets protocol!

These are what I'm looking for:

  • How many live connections can a server/application/cpu support?
  • Is there any maximum number of incoming connections that could be set/get?
  • What is the optimum number of sockets per application regardless of data transfer over the socket?

Update:

Requests from flash RTMP sockets (an alternative to webcocket) could be well configured on Adobe Media Server application server. Isn't any sort of configurations for number of requests, ideal time, size of chucks, ... for ASP.net inside application or IIS 8 configuration?

share|improve this question
2  
I imagine most of these will be "soft factors" (e.g. a function of the server/network load) unless there is a "hard limit" configured somewhere. – user166390 Apr 2 '12 at 19:33
1  
Have you checked out SignalR? github.com/SignalR/SignalR – mgnoonan Apr 2 '12 at 19:33
@mgnoonan: No, I had not seen it, however it seems to be a third .net party library, what I'm looking for is the built-in support of webcocket in asp.net 4.5 and its possible limitations – Kamyar Nazeri Apr 2 '12 at 19:36
@pst: So theoretically it could be unlimited? That doesn't seem right, since the number of HTTP requests in an application pool are limited, I was wondering if the numbers of sockets could also be limited in an application/IIS application pool? – Kamyar Nazeri Apr 2 '12 at 19:40
ASP.NET has a number of inbuilt limits that you will need to relax when experimenting with WebSockets scalability. The SignalR guys have a good guide on this: github.com/SignalR/SignalR/wiki/Performance – Paul Batum Apr 12 '12 at 3:37

2 Answers

up vote 8 down vote accepted

To whomever may be interested:

  • Over 100k WebSocket connections can be made to a single server running ASP.NET 4.5
  • WebSocket connections are initiated by a HTTP handshake, hence some of the IIS throttles that apply to HTTP requests will also apply to WebSockets. appConcurrentRequestLimit in the IIS Configuration can be used to set the maximum concurrent requests per application:

    <serverRuntime appConcurrentRequestLimit="250000" />
    
  • Maximum concurrent connections to an ASP.net 4 Web Application can be set with ApplicationPool's maxConcurrentRequestsPerCPU property:

    <system.web>
        <applicationPool maxConcurrentRequestsPerCPU="20000" />
    </system.web>
    
  • When the total amount of connections exceed the maxConcurrentRequestsPerCPU setting, ASP.NET will start throttling requests using a queue. To control the size of the queue, you can tweak the machine.config requestQueueLimit:

    <processModel autoConfig="false" requestQueueLimit="250000" />
    
  • The following performance counters should be considered while conducting concurrency testing and adjusting the optimum settings detailed above:

    • NET CLR Memory #bytes in all Heaps
    • ASP.NET\Requests Current - Queued - Rejected
    • Processor Information\Processor Time
    • TCP/IP Connections Established
    • Web Service\Current Connections - Maximum Connections
    • .NET CLR LocksAndThreads\ # of current logical Threads - # of current physical Threads
share|improve this answer

Amount of sockets that can be handled by .Net is based on system and the way you serve the sockets. Read this: http://msdn.microsoft.com/en-us/library/windows/desktop/ms739169%28v=vs.85%29.aspx

WebSockets implementation is using Asynchronous way of serving Receiving and Sending of data. That makes them very scalable and does not require a lot of memory per connection. So amount of connected sockets is based on complexity of your application logic to each connection and hardware. In most cases you will face performance issues with processing application logic, then facing performance issues that will be based just on connected sockets.

If you are using own implementation that is based on raw TCP Sockets then this information will apply:

On single networking device you can Bind a bit less than 65k sockets. This is listening sockets that accept connections. In usual server implementations you would almost never use more then a few or maybe few 10ths of sockets for accepting connections.

Client sockets can be as many as your implementation and memory can handle.

There is many ways of serving sockets, that allows you to handle more sockets. Few highlights:

  1. Blocking way of serving sockets will delay of serving each socket. As well non-blocking read of client sockets will use your cpu for just checking if there is any data available. With huge amount of sockets it can be very costy.

  2. Thread per client socket will use huge amount of memory (more then 1mb per thread), that will allow you small amount of sockets per physical system.

  3. One of the best (imho) options is using Asynchronous socket. That allows you to have thousands of sockets, and with good implementation more that tens or even hundreds thousands sockets on single server system.

share|improve this answer
1  
Maksims, your answer is still misleading. The OP wants to understand the scalability of ASP.NET 4.5 WebSockets. The number of networking sockets that can be bound is not relevant to this question. You have taken a general purpose .NET sockets programming answer and pasted it into an ASP.NET WebSockets question. For example, you listed blocking sockets as an option, but .NET 4.5 does not even expose blocking WebSocket APIs. – Paul Batum Apr 12 '12 at 2:53
1  
WebSockets are not sessionful. If the implementation is based on ASP.Net WebSockets, then they will relay on some of IIS settings, but they are not related to HTTP requests or something similar, because they are not HTTP request, but they are pure TCP connections with extra layer on top. – Maksims Mihejevs Apr 12 '12 at 13:18
1  
@KamyarNazeri Yes there are number of throttles you will need to relax. I posted a comment against the question itself linking to SignalR's guide to the various throttles that may limit how many WebSocket connections your server can accept. Here it is again: github.com/SignalR/SignalR/wiki/Performance – Paul Batum Apr 13 '12 at 18:43
1  
Also, Maksims is incorrect about the relationship between WebSockets and HTTP. Because WebSocket connections are initiated by a HTTP handshake, some of the IIS throttles that apply to HTTP requests will also apply to WebSockets. – Paul Batum Apr 13 '12 at 18:44
1  
Applying IIS rules over WebSockets traffic will be implemented only in IIS 8 and .Net 4.5. Before that, WebSockets traffic, handling handshake and messaging will be out of track from IIS side and will work directly with server socket implementation. – Maksims Mihejevs Apr 14 '12 at 17:32
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.