I will need server for supporting large/mid files download.
Do you think it's better to have a 1 big server or more of minor power?
Let's consider the bandwidth price too.
I will need server for supporting large/mid files download.
Do you think it's better to have a 1 big server or more of minor power?
Let's consider the bandwidth price too.
The short answer is that it all depends on your application and what is running on the server:
Lots of little servers. If you can get your site code to the point where it can handle files hosted on many different servers, this makes your life easier (scaling wise). It also means that if one server goes down, less of your content is inaccessible.
Of course, this assumes that the big server is the same price as lots of little servers. It's hard to say that this will always be the case, because server prices vary wildly throughout the world.
There isn't one true answer to this. It will depend on the specific constraints in your situation. You will need to do your own analysis.
Let's consider the bandwidth price too.
We can't. Bandwidth pricing is not a function of the server size, it depends on what you negotiate, which provider you choose, etc.
I will need server for supporting large/mid files download.
Hmn, well, all other things being equal, if you're serving up large files, then you're probably using plain stateless HTTP, or a streaming video protocol. In that case, I would personally prefer multiple smaller servers -- it's easy to scale sessionless HTTP out over multiple servers, and running on multiple servers provides better options for implementing high availability.