-
Notifications
You must be signed in to change notification settings - Fork 5
/
RaftMongo.tla
executable file
·294 lines (240 loc) · 9.85 KB
/
RaftMongo.tla
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
--------------------------------- MODULE RaftMongo ---------------------------------
\* This is the formal specification for the Raft consensus algorithm in MongoDB
EXTENDS Naturals, FiniteSets, Sequences, TLC
\* The set of server IDs
CONSTANTS Server
\* Server states.
\* Candidate is not used, but this is fine.
CONSTANTS Follower, Candidate, Leader
\* A reserved value.
CONSTANTS Nil
----
\* Global variables
\* The server's term number.
VARIABLE globalCurrentTerm
----
\* The following variables are all per server (functions with domain Server).
\* The server's state (Follower, Candidate, or Leader).
VARIABLE state
\* The commit point learned by each server.
VARIABLE commitPoint
electionVars == <<globalCurrentTerm, state>>
serverVars == <<electionVars, commitPoint>>
\* A Sequence of log entries. The index into this sequence is the index of the
\* log entry. Unfortunately, the Sequence module defines Head(s) as the entry
\* with index 1, so be careful not to use that!
VARIABLE log
logVars == <<log>>
\* End of per server variables.
----
\* All variables; used for stuttering (asserting state hasn't changed).
vars == <<serverVars, logVars>>
----
\* Helpers
\* The set of all quorums. This just calculates simple majorities, but the only
\* important property is that every quorum overlaps with every other.
Quorum == {i \in SUBSET(Server) : Cardinality(i) * 2 > Cardinality(Server)}
\* The term of the last entry in a log, or 0 if the log is empty.
GetTerm(xlog, index) == IF index = 0 THEN 0 ELSE xlog[index].term
LogTerm(i, index) == GetTerm(log[i], index)
LastTerm(xlog) == GetTerm(xlog, Len(xlog))
\* Return the minimum value from a set, or undefined if the set is empty.
Min(s) == CHOOSE x \in s : \A y \in s : x <= y
\* Return the maximum value from a set, or undefined if the set is empty.
Max(s) == CHOOSE x \in s : \A y \in s : x >= y
----
\* Define initial values for all variables
InitServerVars == /\ globalCurrentTerm = 0
/\ state = [i \in Server |-> Follower]
/\ commitPoint = [i \in Server |-> [term |-> 0, index |-> 0]]
InitLogVars == /\ log = [i \in Server |-> << >>]
Init == /\ InitServerVars
/\ InitLogVars
----
\* Message handlers
\* i = recipient, j = sender, m = message
AppendOplog(i, j) ==
\* /\ state[i] = Follower \* Disable primary catchup and draining
/\ Len(log[i]) < Len(log[j])
/\ LastTerm(log[i]) = LogTerm(j, Len(log[i]))
/\ log' = [log EXCEPT ![i] = Append(log[i], log[j][Len(log[i]) + 1])]
/\ UNCHANGED <<serverVars>>
CanRollbackOplog(i, j) ==
/\ Len(log[i]) > 0
/\ \* The log with later term is more up-to-date
LastTerm(log[i]) < LastTerm(log[j])
/\
\/ Len(log[i]) > Len(log[j])
\* There seems no short-cut of OR clauses, so I have to specify the negative case
\/ /\ Len(log[i]) <= Len(log[j])
/\ LastTerm(log[i]) /= LogTerm(j, Len(log[i]))
RollbackOplog(i, j) ==
/\ CanRollbackOplog(i, j)
\* Rollback 1 oplog entry
/\ LET new == [index2 \in 1..(Len(log[i]) - 1) |-> log[i][index2]]
IN log' = [log EXCEPT ![i] = new]
/\ UNCHANGED <<serverVars>>
\* The set of nodes that has log[me][logIndex] in their oplog
Agree(me, logIndex) ==
{ node \in Server :
/\ Len(log[node]) >= logIndex
/\ LogTerm(me, logIndex) = LogTerm(node, logIndex) }
IsCommitted(me, logIndex) ==
/\ Agree(me, logIndex) \in Quorum
\* If we comment out the following line, a replicated log entry from old primary will voilate the safety.
\* [ P (2), S (), S ()]
\* [ S (2), S (), P (3)]
\* [ S (2), S (2), P (3)] !!! the log from term 2 shouldn't be considered as committed.
/\ LogTerm(me, logIndex) = globalCurrentTerm
\* RollbackCommitted and NeverRollbackCommitted are not actions.
\* They are used for verification.
RollbackCommitted(i) ==
\E j \in Server:
/\ CanRollbackOplog(i, j)
/\ IsCommitted(i, Len(log[i]))
NeverRollbackCommitted ==
\A i \in Server: ~RollbackCommitted(i)
\* ACTION
\* i = the new primary node.
BecomePrimaryByMagic(i) ==
LET notBehind(me, j) ==
\/ LastTerm(log[me]) > LastTerm(log[j])
\/ /\ LastTerm(log[me]) = LastTerm(log[j])
/\ Len(log[me]) >= Len(log[j])
ayeVoters(me) ==
{ index \in Server : notBehind(me, index) }
IN /\ ayeVoters(i) \in Quorum
/\ state' = [index \in Server |-> IF index = i THEN Leader ELSE Follower]
/\ globalCurrentTerm' = globalCurrentTerm + 1
/\ UNCHANGED <<commitPoint, logVars>>
\* ACTION
\* Leader i receives a client request to add v to the log.
ClientWrite(i) ==
/\ state[i] = Leader
/\ LET entry == [term |-> globalCurrentTerm]
newLog == Append(log[i], entry)
IN log' = [log EXCEPT ![i] = newLog]
/\ UNCHANGED <<serverVars>>
\* ACTION
AdvanceCommitPoint ==
\E leader \in Server :
/\ state[leader] = Leader
/\ IsCommitted(leader, Len(log[leader]))
/\ commitPoint' = [commitPoint EXCEPT ![leader] = [term |-> LastTerm(log[leader]), index |-> Len(log[leader])]]
/\ UNCHANGED <<electionVars, logVars>>
\* Return whether Node i can learn the commit point from Node j.
CommitPointLessThan(i, j) ==
\/ commitPoint[i].term < commitPoint[j].term
\/ /\ commitPoint[i].term = commitPoint[j].term
/\ commitPoint[i].index < commitPoint[j].index
\* ACTION
\* Node i learns the commit point from j via heartbeat.
LearnCommitPoint(i, j) ==
/\ CommitPointLessThan(i, j)
/\ commitPoint' = [commitPoint EXCEPT ![i] = commitPoint[j]]
/\ UNCHANGED <<electionVars, logVars>>
\* ACTION
\* Node i learns the commit point from j via heartbeat with term check
LearnCommitPointWithTermCheck(i, j) ==
/\ LastTerm(log[i]) = commitPoint[j].term
/\ LearnCommitPoint(i, j)
\* ACTION
LearnCommitPointFromSyncSource(i, j) ==
/\ ENABLED AppendOplog(i, j)
/\ LearnCommitPoint(i, j)
\* ACTION
LearnCommitPointFromSyncSourceNeverBeyondLastApplied(i, j) ==
\* From sync source
/\ ENABLED AppendOplog(i, j)
/\ CommitPointLessThan(i, j)
\* Never beyond last applied
/\ LET myCommitPoint ==
\* If they have the same term, commit point can be ahead.
IF commitPoint[j].term <= LastTerm(log[i])
THEN commitPoint[j]
ELSE [term |-> LastTerm(log[i]), index |-> Len(log[i])]
IN commitPoint' = [commitPoint EXCEPT ![i] = myCommitPoint]
/\ UNCHANGED <<electionVars, logVars>>
\* ACTION
AppendEntryAndLearnCommitPointFromSyncSource(i, j) ==
\* Append entry
/\ Len(log[i]) < Len(log[j])
/\ LastTerm(log[i]) = LogTerm(j, Len(log[i]))
/\ log' = [log EXCEPT ![i] = Append(log[i], log[j][Len(log[i]) + 1])]
\* Learn commit point
/\ CommitPointLessThan(i, j)
/\ commitPoint' = [commitPoint EXCEPT ![i] = commitPoint[j]]
/\ UNCHANGED <<electionVars>>
----
AppendOplogAction ==
\E i,j \in Server : AppendOplog(i, j)
RollbackOplogAction ==
\E i,j \in Server : RollbackOplog(i, j)
BecomePrimaryByMagicAction ==
\E i \in Server : BecomePrimaryByMagic(i)
ClientWriteAction ==
\E i \in Server : ClientWrite(i)
LearnCommitPointAction ==
\E i, j \in Server : LearnCommitPoint(i, j)
LearnCommitPointWithTermCheckAction ==
\E i, j \in Server : LearnCommitPointWithTermCheck(i, j)
LearnCommitPointFromSyncSourceAction ==
\E i, j \in Server : LearnCommitPointFromSyncSource(i, j)
LearnCommitPointFromSyncSourceNeverBeyondLastAppliedAction ==
\E i, j \in Server : LearnCommitPointFromSyncSourceNeverBeyondLastApplied(i, j)
AppendEntryAndLearnCommitPointFromSyncSourceAction ==
\E i, j \in Server : AppendEntryAndLearnCommitPointFromSyncSource(i, j)
----
\* Properties to check
RollbackBeforeCommitPoint(i) ==
/\ \E j \in Server:
/\ CanRollbackOplog(i, j)
/\ \/ LastTerm(log[i]) < commitPoint[i].term
\/ /\ LastTerm(log[i]) = commitPoint[i].term
/\ Len(log[i]) <= commitPoint[i].index
\* todo: clean up
NeverRollbackBeforeCommitPoint == \A i \in Server: ~RollbackBeforeCommitPoint(i)
\* Liveness check
\* This isn't accurate for any infinite behavior specified by Spec, but it's fine
\* for any finite behavior with the liveness we can check with the model checker.
\* This is to check at any time, if two nodes' commit points are not the same, they
\* will be the same eventually.
\* This is checked after all possible rollback is done.
CommitPointEventuallyPropagates ==
/\ \A i, j \in Server:
[](commitPoint[i] # commitPoint[j] ~>
<>(~ENABLED RollbackOplogAction => commitPoint[i] = commitPoint[j]))
----
\* Defines how the variables may transition.
Next ==
\* --- Replication protocol
\/ AppendOplogAction
\/ RollbackOplogAction
\/ BecomePrimaryByMagicAction
\/ ClientWriteAction
\*
\* --- Commit point learning protocol
\/ AdvanceCommitPoint
\* \/ LearnCommitPointAction
\/ LearnCommitPointFromSyncSourceAction
\* \/ AppendEntryAndLearnCommitPointFromSyncSourceAction
\* \/ LearnCommitPointWithTermCheckAction
\* \/ LearnCommitPointFromSyncSourceNeverBeyondLastAppliedAction
Liveness ==
/\ SF_vars(AppendOplogAction)
/\ SF_vars(RollbackOplogAction)
\* A new primary should eventually write one entry.
/\ WF_vars(\E i \in Server : LastTerm(log[i]) # globalCurrentTerm /\ ClientWrite(i))
\* /\ WF_vars(ClientWriteAction)
\*
\* --- Commit point learning protocol
/\ WF_vars(AdvanceCommitPoint)
\* /\ WF_vars(LearnCommitPointAction)
/\ SF_vars(LearnCommitPointFromSyncSourceAction)
\* /\ SF_vars(AppendEntryAndLearnCommitPointFromSyncSourceAction)
\* /\ SF_vars(LearnCommitPointWithTermCheckAction)
\* /\ SF_vars(LearnCommitPointFromSyncSourceNeverBeyondLastAppliedAction)
\* The specification must start with the initial state and transition according
\* to Next.
Spec == Init /\ [][Next]_vars /\ Liveness
===============================================================================