Skip to content
Open
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
2 changes: 1 addition & 1 deletion system-design/system-design-interview/chapter02/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Web tier looks lit now. But what about the data tier?
Database replication can usually be achieved via master/slave replication (side note - nowadays, it's usually referred to as primary/secondary replication).

A master database generally only supports writes. Slave databases store copies of the data from the master & only support read operations.
This setup works well for most applications as there's usually a higher write to read ratio. Reads can easily be scaled by adding more slave instances.
This setup works well for most applications as there's usually a higher read to write ratio. Reads can easily be scaled by adding more slave instances.
![master-slave-replication](images/master-slave-replication.png)

Advantages:
Expand Down