views:

933

answers:

2

I have developed my ASP.net application with SQL Server 2005 which as installed version of .net Framework 2.0.

Please some one suggest what are the hardware requirements (windows server) to host in Production server and its configuration to host the application.

The total number of users around 10,000 per second

around 10,000 requests per second.

A: 

http://www.tpc.org/ might give you guidelines on what hardware can handle your needs. Be sure to examine their criteria for a transaction and see if it matches up to yours.

http://www.tpc.org/tpcc/results/tpcc_results.asp?orderby=dbms gives a listing by database vendor.

You give little information, but one request per second from each user seems a little too often.

Sam
+1  A: 

10k requests per second is pretty hardcore, unless they're very light requests you're going to need multiple servers clustered. Speak to your hardware vendor of choice in detail about your requirements, it's not possible for anyone to help out much more without spending a lot more time with you understanding the requirements better.

Thanks.

Chopper3