Why isn’t there a solution to websites crashing when they are experiencing high volume of traffic?

437 views

Ticket master for example. Whenever there’s a high volume of traffic, the website crashes or experiences problems. Surely they know that there’s going to be a huge surge in traffic all at once? Can they not design the website to cope with the increase in demand and function like normal?

In: 5

10 Answers

Anonymous 0 Comments

Resources are not infinite. Ultimately, the overall amount of CPU, RAM, disk, network connections, and so on, is limited. The questions are:

1) how fast can you add resources without disrupting the existing ones? and

2) how much are you willing to pay?

The first question is essentially why cloud computing (think Amazon AWS, Microsoft Azure,…) exists. It provides a way to provision new resources quickly (“elasticity”) as long as your application software is written in a decent way (which is not always the case).

The second question remains and, in fact, can be even more relevant if you rely on public cloud.

You are viewing 1 out of 10 answers, click here to view all answers.