Ask HN: How can I estimate hosting costs for an app?
I have a Ruby on Rails app hosted on Heroku. The project is fairly far along, to the point where we are in talks with investors. We have all our numbers down except when it comes to hosting costs. How can I estimate what my hosting costs will be as my user base grows?
10 comments
[ 2.7 ms ] story [ 28.3 ms ] threadHow much gas will I use?
- User-centeric (think: an e-commerce site): your costs are going to grow somewhat linearly with your userbase/traffic. Do a load test to figure out how many concurrent users each dyno supports and then model your costs with that in mind.
- Data-centric (think: an analytics platform): your costs are to going to grow linearly with the amount of data points each customer is going to be using. Figure out how many data points a single worker dyno (running 24x7) can process and then model your costs with that in mind.