Skip to content

Commit d320995

Browse files
committedMar 24, 2025
DataIntensive initial commit
1 parent d995e64 commit d320995

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎dataIntensive.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Replication
2+
- Many copies of data to scale horizontally and serve more reads
3+
- Ways of replication
4+
1. Leader-follower: writes happen first on leader, then propogated to
5+
followers.
6+
2. Multi-leader
7+
3. Leaderless
8+
- Types of replication:
9+
1. Synchronous: leader sends write and blocks writes till follower ack
10+
2. Asynchronous: leader sends write and continues with further writes
11+
3. Semi-synchronous: one follower is sync, rest async. if leader fails, the
12+
sync follower becomes leader.
13+
- Setting up new followers: snapshot leader, launch follower, request changes
14+
since snapshot
15+
- Node outage: catch up using on disk log
16+
- Leader failover:
17+
1.

0 commit comments

Comments
 (0)