How do you 'spec' a web server to support a given application? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T05:38:59Zhttp://stackoverflow.com/feeds/question/321486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/321486/how-do-you-spec-a-web-server-to-support-a-given-application4How do you 'spec' a web server to support a given application?flesh2008-11-26T17:22:08Z2008-11-26T20:09:56Z
<p>I am having real trouble trying to get decent answers to my questions from VPS and dedicated hosting provider's sales people. I have a fairly simple set of requirements - how do I select a server spec / package and be confident that I have got it about right? Are there metrics to use - number of Http requests per minute for example? are there other benchmarks? How do you approach it?</p>
<p>Initial requirements are:</p>
<ul>
<li>must support a private ASP.NET application supporting upwards of 200 users (possibly up to 1000). user activity will be largely continuous throughout the working day</li>
<li>the application is more intensive than your average 'website' (but not unduly so)</li>
<li>users will be uploading and downloading large files</li>
<li>requires a MS SQL Server database - (would workgroup edition suffice?)</li>
<li>must support another 5 public domains with low traffic levels and little to no database activity</li>
</ul>
<p><strong>Follow Up:</strong>
Thanks for the responses guys. I have got access to a system I can configure for profiling, so can anyone recommend any profiling / load testing tools? </p>
http://stackoverflow.com/questions/321486/how-do-you-spec-a-web-server-to-support-a-given-application/321503#3215032Answer by Zoredache for How do you 'spec' a web server to support a given application?Zoredache2008-11-26T17:30:57Z2008-11-26T17:30:57Z<p>Your requirements are too vague to make a decision. For example, what is a <em>large file</em>? What is a low traffic level?</p>
<p>One of the easiest ways to get it right is to just setup a test server + network, and try and simulate a normal load.</p>
<p>If you can't setup a test environment, you are probably just stuck with guessing about the correct size, and then testing on the real system, and adjusting your service level as needed.</p>
http://stackoverflow.com/questions/321486/how-do-you-spec-a-web-server-to-support-a-given-application/321523#3215232Answer by bradheintz for How do you 'spec' a web server to support a given application?bradheintz2008-11-26T17:37:26Z2008-11-26T17:37:26Z<p>You could add all the data you want here about number of users, etc., and you could even make it more quantitative than you have here - it's an impossible question to answer in this way.</p>
<p>The real answer is: profile, profile, profile. You must measure how the application and its database behave to make any kind of determination about the resources needed to support N users at a certain level of activity. If you really know or have reason to believe that your software will have non-trivial load right out of the gate, then my best advice to you is to look into load testing tools and services.</p>
http://stackoverflow.com/questions/321486/how-do-you-spec-a-web-server-to-support-a-given-application/321544#3215441Answer by Michael Haren for How do you 'spec' a web server to support a given application?Michael Haren2008-11-26T17:44:07Z2008-11-26T17:44:07Z<p>You need to profile the load you are expecting. Then, you should choose a provider that can meet your anticipated demand and provide a path for growth. It's a lot easier growing if your colo provider can handle the growth gracefully. </p>
<p>That is, if your project is the biggest one your provider has ever done or requires more sophisticated hardware than they are used to, you need to look for someone bigger.</p>
<p>When you know what you want, be very specific, but not overly aggressive with your requirements. For example, if you need 8gb of memory, say 8gb. Don't say 4gb required but 16gb would be nice.</p>
<p>I'd also request quotes on two systems: what you need today and what you <em>might</em> need in a year.</p>
http://stackoverflow.com/questions/321486/how-do-you-spec-a-web-server-to-support-a-given-application/321565#3215651Answer by Sam for How do you 'spec' a web server to support a given application?Sam2008-11-26T17:49:32Z2008-11-26T17:49:32Z<p>You're on the right track with http requests per second. Also look at disk io and memory usage by IIS. They need to know how much traffic their hardware can handle. </p>
<p>SQL Workgroup edition should work for you - it works up to 3GB of memory.</p>
<p><a href="http://www.microsoft.com/sqlserver/2005/en/us/compare-features.aspx" rel="nofollow">http://www.microsoft.com/sqlserver/2005/en/us/compare-features.aspx</a></p>