-
Notifications
You must be signed in to change notification settings - Fork 73
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
Revise TLA spec. #4
base: master
Are you sure you want to change the base?
Conversation
The following revision is made. 1. The clientRequests become a variable, which uniquely identified each request received by server. 2. Only valid message is evaluated, to reduce state space. 3. Add test to see if there are more than one Leader per term in the cluster. 4. Add test to see if the committedLog is consistent.
Thanks @jinlmsft. Looks like there's a few little things in here, mostly good but probably needing to be teased apart and cleaned up. Given that I'm not actively working on the spec, I'll leave this PR open more or less indefinitely and link to it from the README. Hopefully people that are trying to apply the model checker will look here. |
Updated README in 34cdd49. |
OK. Thanks, Jin From: Diego Ongaro [mailto:[email protected]] Thanks @jinlmsfthttps://github.com/jinlmsft. Looks like there's a few little things in here, mostly good but probably needing to be teased apart and cleaned up. Given that I'm not actively working on the spec, I'll leave this PR open more or less indefinitely and link to it from the README. Hopefully people that are trying to apply the model checker will look here. — |
The variable committedLog is not part of the original Raft specification but was introduced later in the still open pull request ongardie/raft.tla#4.
The variable committedLog is not part of the original Raft specification but was introduced later in the still open pull request ongardie/raft.tla#4.
The following revision is made.