-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode.go
More file actions
638 lines (549 loc) · 12.4 KB
/
node.go
File metadata and controls
638 lines (549 loc) · 12.4 KB
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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
package shipwreck
import (
"context"
"fmt"
"log/slog"
"math/rand"
"sync"
"sync/atomic"
"time"
"github.com/google/uuid"
)
type msg any
type Message[T msg] struct {
SourceID string
TargetID string
Msg T
}
type (
VoteReply struct {
Granted bool
}
VoteRequest struct {
Term int64
CommitOffset int64
}
LogRequest[T nodeMessage] struct {
CommitOffset int64
StartOffset int64
Entries []T
}
LogReply struct {
CommitOffset int64
Success bool
}
ProxyPush[T nodeMessage] struct {
Value T
}
ProxyPushReply struct {
Ok bool
}
)
type conn[T nodeMessage] interface {
ID() string
RequestVote(ctx context.Context, vote Message[VoteRequest]) (Message[VoteReply], error)
AppendEntries(ctx context.Context, log Message[LogRequest[T]]) (Message[LogReply], error)
ProxyPush(ctx context.Context, log Message[ProxyPush[T]]) (Message[ProxyPushReply], error)
}
type NodeMode int64
const (
NodeModeFollower NodeMode = iota
NodeModeCandidate
NodeModeLeader
)
type peer[T nodeMessage] struct {
commitOffset int64
conn conn[T]
}
type commitCallbackFunc[T nodeMessage] func(ctx context.Context, logs []T) error
type syncStatus struct {
offset int64
err error
}
type node[T nodeMessage] struct {
// node[T encoding.BinaryMarshaler] data
id string // TODO maybe change
mode NodeMode
peersList []conn[T]
peers map[string]peer[T]
stopped bool
stopping bool
commitOffset int64
syncOffset int64
storage Storage[T]
commitCallback commitCallbackFunc[T]
syncChLock sync.Mutex
syncCh []chan syncStatus
// Voting
electionTimeout *time.Ticker
votedFor string
term int64
voteLock sync.Mutex
currentLeader string
// Leader
syncTicker *time.Ticker
}
type RaftNode[T nodeMessage] interface {
ID() string
String() string
Mode() NodeMode
Push(v T) error
AddPeer(conn conn[T])
Start(ctx context.Context) error
Stop(ctx context.Context) error
conn[T]
}
type nodeMessage any // should be something more concreate
// TODO handle commitCallback
func NewNode[T nodeMessage](storage Storage[T], commitCallback commitCallbackFunc[T]) RaftNode[T] {
d := time.Duration(rand.Int63n(150)+150) * time.Millisecond
return &node[T]{
id: uuid.New().String(),
mode: NodeModeFollower,
stopped: true,
stopping: true,
peers: map[string]peer[T]{},
peersList: []conn[T]{},
commitOffset: 0,
syncOffset: 0,
storage: storage,
commitCallback: commitCallback,
syncChLock: sync.Mutex{},
syncCh: []chan syncStatus{},
electionTimeout: time.NewTicker(d),
votedFor: "",
currentLeader: "",
term: 0,
syncTicker: time.NewTicker(50 * time.Millisecond),
}
}
// Main function for pushing new values to the log
func (n *node[T]) Push(v T) error {
if n.stopped {
return fmt.Errorf("Node is not running")
}
if n.stopping {
return fmt.Errorf("Node is being stopped")
}
if n.currentLeader == "" {
return fmt.Errorf("Cluster is not ready")
}
if n.mode == NodeModeFollower {
leader, ok := n.peers[n.currentLeader]
if !ok {
return fmt.Errorf("No leader %v available", n.currentLeader)
}
_, err := leader.conn.ProxyPush(context.Background(), Message[ProxyPush[T]]{
SourceID: n.id,
TargetID: leader.conn.ID(),
Msg: ProxyPush[T]{
Value: v,
},
})
return err
}
offset, err := n.storage.Append(v)
if err != nil {
return err
}
// This will be problematic as channels can block for infinite time
c := make(chan syncStatus)
defer func() {
n.syncChLock.Lock()
n.syncCh = without(n.syncCh, c)
n.syncChLock.Unlock()
close(c)
}()
n.syncChLock.Lock()
n.syncCh = append(n.syncCh, c)
n.syncChLock.Unlock()
for status := range c {
if status.err != nil {
return status.err
}
if status.offset >= offset {
return nil
}
}
return fmt.Errorf("Failed to commit")
}
func without[T comparable](slice []T, s T) []T {
result := []T{}
for _, v := range slice {
if s != v {
result = append(result, v)
}
}
return result
}
func (n *node[T]) ID() string {
return n.id
}
func (n *node[T]) String() string {
return fmt.Sprintf("Debug %v %v %v %v %v", n.id, n.commitOffset, n.storage.Length(), n.storage.Commited(), len(n.syncCh))
}
func (n *node[T]) Mode() NodeMode {
return n.mode
}
func (n *node[T]) AddPeer(conn conn[T]) {
n.peersList = append(n.peersList, conn)
}
func (n *node[T]) Stop(ctx context.Context) error {
// Signal stopping, this will stop accepting push
n.stopping = true
// If leader, we want to wait for next sync tick
if n.mode == NodeModeLeader {
<-n.syncTicker.C
}
n.stopped = true
n.electionTimeout.Stop()
n.syncTicker.Stop()
return nil
}
const syncTickerDuration = 50 * time.Millisecond
func (n *node[T]) resetTimer() {
d := time.Duration(rand.Int63n(150)+150) * time.Millisecond
n.electionTimeout.Reset(d)
n.syncTicker.Reset(syncTickerDuration)
}
func (n *node[T]) restart() {
n.mode = NodeModeFollower
n.stopping = false
n.stopped = false
n.resetTimer()
}
func (n *node[T]) Start(ctx context.Context) error {
// Very poor peer discovery
attempt := 0
for {
if attempt == 10 {
return fmt.Errorf("Failed to get all peers metadata")
}
for _, p := range n.peersList {
id := p.ID()
if id == "" {
attempt += 1
time.Sleep(100 * time.Millisecond)
continue
}
n.peers[id] = peer[T]{
commitOffset: 0,
conn: p,
}
}
break
}
n.restart()
for {
select {
case <-ctx.Done():
return ctx.Err()
case <-n.electionTimeout.C:
// No heartbeat recieved, switch to candidate
if n.mode == NodeModeFollower {
n.becomeCandidate()
}
case <-n.syncTicker.C:
if n.mode == NodeModeLeader {
n.syncPeers()
}
if n.mode == NodeModeCandidate {
n.startNewTerm()
}
}
}
}
func (n *node[T]) becomeLeader() {
if n.mode == NodeModeLeader {
return
}
slog.Debug("node become leader", "ID", n.id)
n.mode = NodeModeLeader
n.currentLeader = n.id
n.syncPeers()
}
func (n *node[T]) becomeFollower() {
if n.mode == NodeModeFollower {
return
}
slog.Debug("node become follower", "ID", n.id)
n.mode = NodeModeFollower
}
func (n *node[T]) becomeCandidate() {
if n.mode == NodeModeCandidate {
return
}
slog.Debug("node become candidate", "ID", n.id)
n.mode = NodeModeCandidate
n.resetTimer()
}
func (n *node[T]) commitLogs(offset int64) error {
commited, err := n.storage.Commit(offset)
if err != nil {
return err
}
if len(commited) <= 0 {
return nil
}
n.commitOffset = offset
ctx, cancel := context.WithTimeout(context.Background(), syncTickerDuration/2) // really tight timing
defer cancel()
err = n.commitCallback(ctx, commited) // Can block the goroutine infinitly, should be guarded from such behaviour, or panic when that happen
if err != nil {
return err
}
if n.mode == NodeModeLeader {
n.syncChLock.Lock()
for _, c := range n.syncCh {
c <- syncStatus{
offset: offset,
err: nil,
}
}
n.syncChLock.Unlock()
}
return nil
}
func (n *node[T]) syncPeers() {
if n.stopped {
return
}
n.syncOffset = n.storage.Length()
ctx := context.Background()
wg := sync.WaitGroup{}
results := make(chan Message[LogReply], len(n.peers))
for _, peer := range n.peers {
peer := peer
wg.Add(1)
go func() {
defer wg.Done()
resp, err := peer.conn.AppendEntries(ctx, Message[LogRequest[T]]{
SourceID: n.id,
TargetID: peer.conn.ID(),
Msg: LogRequest[T]{
CommitOffset: n.commitOffset,
StartOffset: peer.commitOffset,
Entries: n.getUncommitedLogs(peer),
},
})
// TODO better error handling, add backoff
if err != nil {
slog.ErrorContext(ctx, "Ping failed", "Err", err)
}
// TOOD handle catchup
results <- resp
}()
}
wg.Wait()
close(results)
// leader already written the value
successes := int64(1)
for result := range results {
if result.Msg.Success {
successes += 1
} else {
p := n.peers[result.SourceID]
p.commitOffset = result.Msg.CommitOffset
n.peers[result.SourceID] = p
}
}
canCommit := successes >= int64(1+len(n.peers)/2)
if canCommit {
err := n.commitLogs(n.syncOffset)
if err != nil {
// TODO handle
// return nil, err
}
for id, p := range n.peers {
p.commitOffset = n.syncOffset
n.peers[id] = p
}
} else {
err := n.storage.Discard(n.commitOffset, n.syncOffset)
if err != nil {
// TODO handle
// return nil, err
}
n.syncChLock.Lock()
for _, c := range n.syncCh {
c <- syncStatus{
offset: 0,
err: fmt.Errorf("Operation failed to sync"),
}
}
n.syncChLock.Unlock()
}
}
func (n *node[T]) getUncommitedLogs(p peer[T]) []T {
values, err := n.storage.Get(min(n.storage.Length(), p.commitOffset), n.storage.Length())
if err != nil {
// TODO handle
// return nil, err
}
return values
}
func (n *node[T]) startNewTerm() {
if n.stopped {
return
}
n.term += 1
n.votedFor = n.id
ctx := context.Background()
granted := atomic.Int64{}
granted.Add(1) // node voted for itself so we can just add one here
wg := sync.WaitGroup{}
for _, peer := range n.peers {
peer := peer
wg.Add(1)
go func() {
defer wg.Done()
reply, err := peer.conn.RequestVote(ctx, Message[VoteRequest]{
SourceID: n.id,
TargetID: peer.conn.ID(),
Msg: VoteRequest{
CommitOffset: n.commitOffset,
Term: n.term,
},
})
if err != nil {
slog.ErrorContext(ctx, "Vote requested failed", "Err", err)
}
if reply.Msg.Granted {
granted.Add(1)
}
}()
}
wg.Wait()
hasMajorityVote := granted.Load() >= int64(1+len(n.peers)/2)
if hasMajorityVote {
n.becomeLeader()
}
}
// proxyPush implements conn.
func (n *node[T]) ProxyPush(ctx context.Context, value Message[ProxyPush[T]]) (Message[ProxyPushReply], error) {
err := n.Push(value.Msg.Value)
if err != nil {
return Message[ProxyPushReply]{
SourceID: n.id,
TargetID: value.SourceID,
Msg: ProxyPushReply{
Ok: false,
},
}, err
}
return Message[ProxyPushReply]{
SourceID: n.id,
TargetID: value.SourceID,
Msg: ProxyPushReply{
Ok: true,
},
}, nil
}
// requestVote implements conn.
func (n *node[T]) RequestVote(ctx context.Context, vote Message[VoteRequest]) (Message[VoteReply], error) {
n.voteLock.Lock()
defer n.voteLock.Unlock()
if n.stopped {
return Message[VoteReply]{
SourceID: n.id,
TargetID: vote.SourceID,
}, fmt.Errorf("node unreachable")
}
n.resetTimer()
if vote.Msg.Term < n.term {
return Message[VoteReply]{
SourceID: n.id,
TargetID: vote.SourceID,
Msg: VoteReply{
Granted: false,
},
}, nil
}
if vote.Msg.CommitOffset < n.commitOffset {
return Message[VoteReply]{
SourceID: n.id,
TargetID: vote.SourceID,
Msg: VoteReply{
Granted: false,
},
}, nil
}
if vote.Msg.Term == n.term {
return Message[VoteReply]{
SourceID: n.id,
TargetID: vote.SourceID,
Msg: VoteReply{
Granted: vote.SourceID == n.votedFor,
},
}, nil
}
if n.mode == NodeModeFollower {
n.becomeFollower()
}
n.term = vote.Msg.Term
n.votedFor = vote.SourceID
return Message[VoteReply]{
SourceID: n.id,
TargetID: vote.SourceID,
Msg: VoteReply{
Granted: true,
},
}, nil
}
// ping implements conn.
func (n *node[T]) AppendEntries(ctx context.Context, log Message[LogRequest[T]]) (Message[LogReply], error) {
if n.stopped {
return Message[LogReply]{
SourceID: n.id,
TargetID: log.SourceID,
}, fmt.Errorf("node unreachable")
}
// Cleanup
if n.mode == NodeModeCandidate {
n.becomeFollower()
}
n.votedFor = ""
n.currentLeader = log.SourceID
n.resetTimer()
// Messages were not committed
if n.syncOffset > log.Msg.StartOffset {
err := n.storage.Discard(log.Msg.StartOffset, n.storage.Length())
if err != nil {
// TODO handle
// return nil, err
}
n.syncOffset = log.Msg.StartOffset
}
if n.syncOffset != log.Msg.StartOffset {
return Message[LogReply]{
SourceID: n.id,
TargetID: log.SourceID,
Msg: LogReply{
CommitOffset: n.commitOffset,
Success: false,
},
}, nil
}
// Write new logs
_, err := n.storage.Append(log.Msg.Entries...)
if err != nil {
// TODO handle
// return nil, err
}
n.syncOffset = log.Msg.StartOffset + int64(len(log.Msg.Entries))
// Commit
err = n.commitLogs(log.Msg.CommitOffset)
if err != nil {
// TODO handle
// return nil, err
}
return Message[LogReply]{
SourceID: n.id,
TargetID: log.SourceID,
Msg: LogReply{
CommitOffset: n.commitOffset,
Success: true,
},
}, nil
}
var _ conn[nodeMessage] = (*node[nodeMessage])(nil)