Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wwwanlingxiao
system-design-primer
Commits
f2d7dd86
Unverified
Commit
f2d7dd86
authored
Jul 01, 2020
by
panguncle
Committed by
GitHub
Jun 30, 2020
Browse files
Fix single point of failure typo (#398)
parent
9a024806
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
f2d7dd86
...
@@ -665,7 +665,7 @@ Load balancers distribute incoming client requests to computing resources such a
...
@@ -665,7 +665,7 @@ Load balancers distribute incoming client requests to computing resources such a
*
Preventing requests from going to unhealthy servers
*
Preventing requests from going to unhealthy servers
*
Preventing overloading resources
*
Preventing overloading resources
*
Helping eliminate single point
s
of failure
*
Helping
to
eliminate
a
single point of failure
Load balancers can be implemented with hardware (expensive) or with software such as HAProxy.
Load balancers can be implemented with hardware (expensive) or with software such as HAProxy.
...
@@ -710,7 +710,7 @@ Load balancers can also help with horizontal scaling, improving performance and
...
@@ -710,7 +710,7 @@ Load balancers can also help with horizontal scaling, improving performance and
### Disadvantage(s): load balancer
### 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.
*
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 point
s
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.
*
A single load balancer is a single point of failure, configuring multiple load balancers further increases complexity.
### Source(s) and further reading
### Source(s) and further reading
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment