For one our projects, we need to calculate the internet bandwidth required to support 2000 concurrent requests/per second. Following is the scenario detail:
- If 1 user accesses the page, the response page size comes around 8 KB/Second
- So if we have to support 2000 concurrent request, the 2000 x 8 KB = 16000 KB/Second would have to be supported.
- If I convert 16000 KB into Mbps, it comes to 128 Mbps
So my question is: do I really need 128 Mbps internet bandwidth? Or is there something wrong with my calculation?