Is there a good resource for estimating the cost of app hosting? I am bidding on a project that will likely receive a large amount of traffic (100,000 uniques/mo is reasonable). The app is fairly simple, read from db and print to screen. How do I accurately bid on hosting and bandwidth?
|
To the best of my knowledge, there are no resources that can spit out a number for you. There are too many variables, not the least of which is the speed of your code. The canonical answer is:
Be sure that your data store (database server, file server) can handle the load. Web app servers can be made stateless, and can fairly easily be scaled via a HTTP load balancer. Data stores (databases) are inherently statefull, and therefore much harder to scale beyond a single server. This older post on the Stack Overflow architecture shows how few servers can often handle a big load. But keep in mind, this is for a site written in (fast, well optimized) C# / ASP.NET MVC. Regarding the contract, be sure to put reasonably provisions in there to limit the scope of the hosting agreement, and allow you to renegotiate if/when the usage exceeds a certain threshold.
That's not much, but it all depends on how the user visits are spread out, how fast your application logic is, and if there are other considerations such as search engines to take into account. Just as an example, your load could be as low as 0.51 pages per second on average; assuming You might want to ask the same question on Serverfault, with more technical detail than you included here. |
|||||||
|