eBay / NuRaft

C++ implementation of Raft core logic as a replication library
Apache License 2.0
996 stars 236 forks source link

Add optional CRC per log entry. #454

Closed yong-li closed 1 year ago

yong-li commented 1 year ago

Add an option to replicate and verify per-log-entry CRC checksums.

The log entry's checksum is computed when the entry is first created on the leader, and then stored in the log store and replicated over the network. On receive, if the checksum is sent, it is verified.