-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRaftMongoSyncSources.tla
377 lines (307 loc) · 12.9 KB
/
RaftMongoSyncSources.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
--------------------------------- MODULE RaftMongoSyncSources ---------------------------------
\* This is the formal specification for the Raft consensus algorithm in MongoDB
\* This spec also models sync source selection.
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
\* The current sync source of each server, if it has one.
VARIABLE syncSource
electionVars == <<globalCurrentTerm, state>>
serverVars == <<electionVars, commitPoint, syncSource>>
\* 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]]
/\ syncSource = [i \in Server |-> Nil]
InitLogVars == /\ log = [i \in Server |-> << >>]
Init == /\ InitServerVars
/\ InitLogVars
----
\* Message handlers
\* i = recipient, j = sender, m = message
\* Is log[i] a prefix of log[j].
IsLogPrefix(i, j) ==
/\ Len(log[i]) < Len(log[j])
/\ LastTerm(log[i]) = LogTerm(j, Len(log[i]))
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>>
AppendOplogFromSyncSource(i, j) ==
\* /\ state[i] = Follower \* Disable primary catchup and draining
/\ syncSource[i] = j \* sync source selection rules.
/\ 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]
\* For any nodes that are currently syncing from you, clear their sync sources.
/\ syncSource' = [s \in Server |-> IF syncSource[s] = i THEN Nil ELSE syncSource[s]]
/\ UNCHANGED <<electionVars, commitPoint>>
\* 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
/\ syncSource' = [syncSource EXCEPT ![i] = Nil] \* clear sync source.
/\ 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, syncSource>>
\* 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, syncSource>>
\* 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
\*/\ syncSource[i] = j \* Optionally enable sync source selection rules.
/\ 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, syncSource>>
\* ACTION
\* Server i chooses server j as its new sync source.
\* i can choose j as a sync source if log[i] is a prefix of log[j] and
\* log[j] is longer than log[i].
ChooseNewSyncSource(i, j) ==
/\ \/ IsLogPrefix(i, j)
\* \* If logs are equal, allow choosing sync source if it has a newer commit point.
\/ /\ log[i] = log[j]
/\ commitPoint[j].index > commitPoint[i].index
/\ state[i] = Follower \* leaders don't need to sync oplog entries.
/\ syncSource' = [syncSource EXCEPT ![i] = j]
/\ UNCHANGED <<electionVars, logVars, commitPoint>>
\* Does a 2 node sync source cycle exist?
SyncSourceCycleTwoNode ==
\E s, t \in Server :
/\ s /= t
/\ syncSource[s] = t
/\ syncSource[t] = s
\* The set of all sequences with elements in set 's', of maximum length 'n'.
BoundedSeq(s, n) == [1..n -> s]
\* The set of all paths in the graph that consists of edges <<s,t>> where s has t as a sync
\* source.
SyncSourcePaths ==
{p \in BoundedSeq(Server, Cardinality(Server)) :
\A i \in 1..(Len(p)-1) : syncSource[p[i]] = p[i+1]}
\* Is there a non-trivial path in the sync source graph from node i to node j?
\* This rules out trivial paths i.e. those of length 1.
SyncSourcePath(i, j) ==
\E p \in SyncSourcePaths :
/\ Len(p) > 1
/\ p[1] = i \* the source node.
/\ p[Len(p)]=j \* the target node.
\* Does a general (possibly multi-node) sync source cycle exist?
SyncSourceCycle ==
\E s \in Server : SyncSourcePath(s, s)
NonTrivialSyncCycle == SyncSourceCycle /\ ~SyncSourceCycleTwoNode
NoNonTrivialSyncCycle == ~NonTrivialSyncCycle
----
AppendOplogAction ==
\E i,j \in Server : AppendOplog(i, j)
AppendOplogFromSyncSourceAction ==
\E i,j \in Server : AppendOplogFromSyncSource(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)
ChooseNewSyncSourceAction ==
\E i, j \in Server : ChooseNewSyncSource(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]))
\* Can be overriden in model. To enable these actions, you can use the "Definition Override" feature of the
\* toolbox, to replace these with real actions.
CommitPointAction == UNCHANGED vars
----
\* Defines how the variables may transition.
Next ==
\* --- Replication protocol
\/ AppendOplogFromSyncSourceAction
\/ RollbackOplogAction
\/ BecomePrimaryByMagicAction
\/ ClientWriteAction
\/ ChooseNewSyncSourceAction
\*
\* --- Commit point learning protocol
\/ AdvanceCommitPoint
\/ CommitPointAction
Liveness ==
/\ SF_vars(AppendOplogFromSyncSourceAction)
/\ 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
\*
\* Stuff for model checking.
\*
Symmetry == Permutations(Server)
StateConstraint ==
/\ \forall i \in Server : globalCurrentTerm <= 3
/\ \forall i \in Server: Len(log[i]) <= 3
===============================================================================