-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplication.go
143 lines (122 loc) · 3.21 KB
/
replication.go
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
package jsn_raft
import (
"time"
"github.com/jsn4ke/jsn_raft/v2/pb"
)
func newReplication(raft *Raft, commit *commitment, who string,
done <-chan struct{}, usurper chan<- uint64, fetch <-chan struct{}) *replication {
r := new(replication)
r.who = who
r.raft = raft
r.commitment = commit
r.done = done
r.usurper = usurper
r.fetch = fetch
r.retry = make(chan struct{})
return r
}
type replication struct {
who string
raft *Raft
commitment *commitment
fetch <-chan struct{}
done <-chan struct{}
usurper chan<- uint64
retry chan struct{}
}
func (r *replication) heartbeat() {
req := &pb.AppendEntriesRequest{
Term: r.raft.getCurrentTerm(),
LeaderId: []byte(r.raft.who),
PrevLogIndex: 0,
PrevLogTerm: 0,
Entries: []*pb.JsnLog{},
LeaderCommitIndex: r.raft.getCommitIndex(),
Heartbeat: true,
}
resp := new(pb.AppendEntriesResponse)
// err := r.raft.rpcClients[r.who].Call(req, resp, r.done, r.raft.rpcTimeout())
err := r.raft.rpcCall(r.who, req, resp, r.done, r.raft.rpcTimeout())
if nil != err {
r.raft.logger.Error("[%v] heartbeat to %v error %v",
r.raft.who, r.who, err.Error())
return
}
if resp.CurrentTerm > r.raft.getCurrentTerm() {
select {
case r.usurper <- resp.CurrentTerm:
default:
}
return
}
}
func (r *replication) replicateTo() {
req := &pb.AppendEntriesRequest{
Term: r.raft.getCurrentTerm(),
LeaderId: []byte(r.raft.who),
PrevLogIndex: 0,
PrevLogTerm: 0,
Entries: []*pb.JsnLog{},
LeaderCommitIndex: 0,
}
nextIndex := r.commitment.getNextIndex(r.who)
if 1 < nextIndex {
jlog := r.raft.getLog(nextIndex - 1)
if nil == jlog {
r.raft.logger.Error("[%v] replicate to %v no log %v in raft",
r.raft.who, r.who, nextIndex-1)
return
}
req.PrevLogIndex = jlog.Index
req.PrevLogTerm = jlog.Term
}
req.LeaderCommitIndex = r.raft.getCommitIndex()
lastLogIndex, _ := r.raft.lastLog()
req.Entries = r.raft.logEntries(nextIndex, lastLogIndex)
resp := new(pb.AppendEntriesResponse)
// err := r.raft.rpcClients[r.who].Call(req, resp, r.done, r.raft.rpcTimeout())
err := r.raft.rpcCall(r.who, req, resp, r.done, r.raft.rpcTimeout())
if nil != err {
notifyChan(r.retry)
return
}
if resp.CurrentTerm > r.raft.getCurrentTerm() {
select {
case r.usurper <- resp.CurrentTerm:
default:
}
return
}
if resp.Success {
if 0 == len(req.Entries) {
return
}
index := req.Entries[len(req.Entries)-1].Index
r.commitment.updateIndex(r.who, index+1, index)
r.raft.logger.Info("[%v] replicate to %v success next index modify %v",
r.raft.who, r.who, r.commitment.getNextIndex(r.who))
} else {
r.commitment.stepMinusNextIndex(r.who)
r.raft.logger.Info("[%v] replicate to %v failure next index modify %v",
r.raft.who, r.who, r.commitment.getNextIndex(r.who))
notifyChan(r.retry)
return
}
}
func (r *replication) run() {
tk := time.NewTimer(randomTimeout(r.raft.heartbeatTimeout() / 10))
for {
select {
case <-r.done:
return
case <-tk.C:
r.heartbeat()
tk.Reset(randomTimeout(r.raft.heartbeatTimeout() / 10))
case <-r.fetch:
r.replicateTo()
case <-r.retry:
time.Sleep(time.Millisecond * 1)
r.replicateTo()
}
}
}