- Notifications
You must be signed in to change notification settings - Fork2
multi-master-paxos with 3 nodes
NotificationsYou must be signed in to change notification settings
openacid/mmp3
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
mmp3 中文介绍:https://blog.openacid.com/algo/mmp3
MMP3 is a multi-master distributed consensus protocol built on top of classic Paxos.The application API is similar to raft except thatevery node is a leader and can handle write requests.
- Exhibits a distributedlog-state-machine model, similar to raft.
- Exactly three nodes in a cluster.
- Every node is a leader and is able to handle write requests without conflict.
- A message is committed inexactly one RTT(unlike epaxos which requires two RTT if logs interfere with others).
Any questions or suggestions, feel free to open aissue :DDD.