Three Main Data Replication Strategies #27
armingli
announced in
Programming
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Replication is like backup, but owning a more important role than backup in distribute system.1
The Need for Replication
Synchronous Replication
The primary node waits for all replica to finish the operation and get "All is well", then the process is complete.
Pros and Cons
Asynchronous Replication
Immediate Response to Client.
Pros and Cons
Semi-synchronous Replication
It is a mix of the other two methods. It makes sure some of the updates are safe. It's a balanced approach.
Pros and Cons
Which one is right for you?
The factors we should Consider when you make decision.
Beta Was this translation helpful? Give feedback.
All reactions