We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d995e64 commit d320995Copy full SHA for d320995
dataIntensive.md
@@ -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