Backend Mystery · Card #13

How do you scale a backend application during a traffic surge?

The most common way to scale up a backend application during traffic surges is to have multiple instances of the application behind a load balancer, and when the traffic surge happens, simply add more instances of the application. This is known as horizontal scaling and works best when the backend application is stateless.
scaling

Study the full deck →