Whats the best way to determine the hardware requirements for an application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T04:54:43Z http://stackoverflow.com/feeds/question/379478 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/379478/whats-the-best-way-to-determine-the-hardware-requirements-for-an-application 4 Whats the best way to determine the hardware requirements for an application John Sonmez 2008-12-18T22:05:04Z 2008-12-19T01:12:07Z <p>What methods to you use to determine what kind of hardware you need for a server?</p> <p>I often find its very hard to predict what kind of hardware you will need for a web based application with a database.</p> <p>Do you have any good methods or recommendations on how to best pick hardware to use?</p> http://stackoverflow.com/questions/379478/whats-the-best-way-to-determine-the-hardware-requirements-for-an-application/379502#379502 0 Answer by Stephane Grenier for Whats the best way to determine the hardware requirements for an application Stephane Grenier 2008-12-18T22:12:56Z 2008-12-18T22:12:56Z <p>It really depends on your web application demands and traffic expectations.</p> <p><strong>Very few websites will need more than one reasonable dedicated server within the first months.</strong> And if you do, then you can probably afford to buy more hardware ;)</p> http://stackoverflow.com/questions/379478/whats-the-best-way-to-determine-the-hardware-requirements-for-an-application/379524#379524 0 Answer by Kasper for Whats the best way to determine the hardware requirements for an application Kasper 2008-12-18T22:21:52Z 2008-12-18T22:21:52Z <p>I guess that your web app is not a critical business application as you said "a server" and "a database" otherwise you should perhaps look for some means of redundancy ?</p> <p>At work we have some guidelines about the hardware, and the latest suggestion is that the server should be 64 bits as SharePoint 14 looks like a 64 bits only version. </p> <p>If you can afford it I would recommend that the SQL server should be 64 bits as most people agree that adding more RAM (above 4 Gb) really pays off.</p> http://stackoverflow.com/questions/379478/whats-the-best-way-to-determine-the-hardware-requirements-for-an-application/379543#379543 4 Answer by Charlie Martin for Whats the best way to determine the hardware requirements for an application Charlie Martin 2008-12-18T22:26:56Z 2008-12-18T22:26:56Z <p>This is sort of the basic question of capacity planning. You start by defining a <em>workload model</em>, which describes what you expect to get in terms of traffic. This can be as simple as "I expect 20 page hits a minute maximum."</p> <p>Then you need to think about burst loads. Failing any other data, you can assume that interarrival times are exponentially distributed, which means that if you have a page request at time <em>t<sub>0</sub></em>, you're as likely to have the next arrival <em>t<sub>next</sub></em> a very short time after <em>t<sub>0</sub></em> as a long time. (That's a gross oversimplification, but will do for a one-page answer.)</p> <p>So let's say the average interarrival time is &lambda;. because the time distribution is exponential, we know that we can approximate the interarrival time distribution with a normal, with one standard deviation (1&sigma;) equal to &radic;&lambda;. So, we know that</p> <ul> <li>about 32 percent of the time, two pages will be requested less that &lambda;- &radic;&lambda; seconds apart.</li> <li>about 5 percent of the time, two pages will be requested less that &lambda;- 2&radic;&lambda; seconds apart.</li> <li>less than 1 percent of the time, two pages will be requested less that &lambda;- 3&radic;&lambda; seconds apart.</li> </ul> <p>Decide what you're willing to accept, and test to make sure your web system can sustain that rate.</p> http://stackoverflow.com/questions/379478/whats-the-best-way-to-determine-the-hardware-requirements-for-an-application/379851#379851 1 Answer by Patrick Cuff for Whats the best way to determine the hardware requirements for an application Patrick Cuff 2008-12-19T01:12:07Z 2008-12-19T01:12:07Z <p>To add to what Charlie says, once you have a workload model you can feed this into a simulation of your system to determine the horsepower you need to satisfy that load. There are some tools that can do this sort of simulation:</p> <ul> <li><a href="http://www.hyperformix.com/products/performance-optimizer" rel="nofollow">Hyperformix</a></li> <li><a href="http://simpy.sourceforge.net/" rel="nofollow">SimPy</a></li> <li><a href="http://en.wikipedia.org/wiki/List_of_computer_simulation_software" rel="nofollow">WikiPedia list of simulation tools</a></li> </ul> <p>This stuff isn't easy, and the commercial tools will cost ya. </p> <p>You could also try looking for a benchmark that's close to your expected load and see what systems give you the performance you're looking for. The <a href="http://www.tpc.org/" rel="nofollow">TPC benchmarks</a> would be a good place to start.</p>