-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How etcd guarantee request executed exactly once? #7062
Comments
Note that Raft itself doesn't care about the exactly once semantics, it applies a log entry to its state machine at most once. Providing the semantics is responsibility of a state machine replicated by Raft. Chapter 6 of Diego's dissertation (https://github.com/ongardie/dissertation) describes this topic. Also |
Related answer https://groups.google.com/d/msg/etcd-dev/jWv7Kja1tMQ/G9DLHlomCgAJ
|
@dearboll Answers make a lot of sense. So I am closing out this issue. @heyitsanthony should we add this one into our dev guild somewhere? |
Hi all, I read the raft paper and have confused with some differences between raft and etcd implements. While a client request a command to the server, the leader has handled with it but the response lost.The client retry the request, how ectd guarantees that each command would be executed exactly once?
The text was updated successfully, but these errors were encountered: