eBay / NuRaft

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

Whether we should add consistency test. #408

Closed JackyWoo closed 1 year ago

JackyWoo commented 1 year ago

Whether we should add consistency test such as Jepsen?

greensky00 commented 1 year ago

NuRaft is not a standalone system but an embedded library. Its behavior varies according to the plugged state machine, log store, and so on. Given that, Jepsen sounds overkill in this library; such tests should be done in the upper layer (who owns the implemented state machine and log store).

JackyWoo commented 1 year ago

Thanks.