Skip to content

Commit

Permalink
Fix single point of failure typo (donnemartin#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
panguncle authored Jul 1, 2020
1 parent 9a02480 commit f2d7dd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ Load balancers distribute incoming client requests to computing resources such a

* Preventing requests from going to unhealthy servers
* Preventing overloading resources
* Helping eliminate single points of failure
* Helping to eliminate a single point of failure

Load balancers can be implemented with hardware (expensive) or with software such as HAProxy.

Expand Down Expand Up @@ -710,7 +710,7 @@ Load balancers can also help with horizontal scaling, improving performance and
### Disadvantage(s): load balancer

* The load balancer can become a performance bottleneck if it does not have enough resources or if it is not configured properly.
* Introducing a load balancer to help eliminate single points of failure results in increased complexity.
* Introducing a load balancer to help eliminate a single point of failure results in increased complexity.
* A single load balancer is a single point of failure, configuring multiple load balancers further increases complexity.

### Source(s) and further reading
Expand Down

0 comments on commit f2d7dd8

Please sign in to comment.