101 · Question #621
What is a primary benefit of employing a load balancer to manage traffic for an application?
The correct answer is C. It allows easy scaling up of the application. A primary benefit of a load balancer is enabling horizontal scalability, allowing additional server instances to be added behind the load balancer to handle increased demand.
Question
What is a primary benefit of employing a load balancer to manage traffic for an application?
Options
- AIt reduces the number of client connections
- BIt provides a more uniform client experience
- CIt allows easy scaling up of the application
- DIt Reduces dropped connections
How the community answered
(38 responses)- A5% (2)
- B3% (1)
- C92% (35)
Why each option
A primary benefit of a load balancer is enabling horizontal scalability, allowing additional server instances to be added behind the load balancer to handle increased demand.
A load balancer distributes existing client connections across multiple servers but does not reduce the total number of client connections - each client still establishes its own connection.
While load balancers can improve consistency through session persistence and health checks, providing a uniform experience is a secondary effect, not the primary architectural benefit.
A load balancer decouples the client-facing endpoint from the backend server instances, meaning new servers can be added to the pool without any client reconfiguration or downtime. This horizontal scaling capability is the foundational architectural benefit that load balancers provide, allowing applications to grow capacity incrementally as demand increases.
Reducing dropped connections is a reliability side effect of removing single points of failure, but it is not the primary or defining benefit that distinguishes load balancing as a technology.
Concept tested: Load balancer primary benefit - horizontal application scaling
Source: https://learn.microsoft.com/en-us/azure/architecture/guide/technology-choices/load-balancing-overview
Topics
Community Discussion
No community discussion yet for this question.