jmsadair / raft

An implementation of the Raft consensus protocol.
MIT License
34 stars 3 forks source link

Snapshot Streaming #47

Closed jmsadair closed 8 months ago

jmsadair commented 8 months ago

This PR introduced a more suitable SnapshotStorage interface and InstallSnapshot RPC for snapshots that are very large. The new InstallSnapshot RPC is essentially follows the steps outlined in the Raft paper. The tests for this mostly remained the same as before with a few minor modifications to accommodate the new behavior.