Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[en] Small fix for horizontal-scaling.md #3241

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions content/en/horizontal-scaling.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ tags: ["infrastructure", "", ""]

Horizontal scaling is a technique where a system's capacity is increased by adding more [nodes](/nodes/)
versus adding more compute resources to individual nodes (the latter being known as [vertical scaling](/vertical-scaling/)).
Let's say, we have a system of 4GB RAM and want to increase its capacity to 16GB RAM,
scaling it horizontally means doing so by adding 4 x 4GB RAM rather than switching to a 16GB RAM system.
Let's say, we have a system of 4GB RAM and want to increase its capacity to 16GB RAM.
Scaling it horizontally means doing so by adding 3 nodes x 4GB RAM rather than switching to
a 16GB RAM system.

This approach enhances the performance of an application by adding new instances, or [nodes](/nodes/),
This approach enhances the performance of an application by adding new instances, or nodes,
to better distribute the workload.
In simple words, it aims to decrease the server's load
rather than expanding capacity of the individual server.
Expand Down