mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #1245 from unihorn/155
main/raft: write addNode ConfChange entries in log when start raft
This commit is contained in:
commit
3ca3c9ad4c
@ -100,6 +100,7 @@ func (c Cluster) IDs() []int64 {
|
||||
for _, m := range c {
|
||||
ids = append(ids, m.ID)
|
||||
}
|
||||
sort.Sort(types.Int64Slice(ids))
|
||||
return ids
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,6 @@ package etcdserver
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"sort"
|
||||
"testing"
|
||||
)
|
||||
|
||||
@ -201,12 +200,6 @@ func TestClusterSetBad(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
type int64slice []int64
|
||||
|
||||
func (a int64slice) Len() int { return len(a) }
|
||||
func (a int64slice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
||||
func (a int64slice) Less(i, j int) bool { return a[i] < a[j] }
|
||||
|
||||
func TestClusterIDs(t *testing.T) {
|
||||
cs := Cluster{}
|
||||
cs.AddSlice([]Member{
|
||||
@ -214,9 +207,8 @@ func TestClusterIDs(t *testing.T) {
|
||||
{ID: 4},
|
||||
{ID: 100},
|
||||
})
|
||||
w := int64slice([]int64{1, 4, 100})
|
||||
g := int64slice(cs.IDs())
|
||||
sort.Sort(g)
|
||||
w := []int64{1, 4, 100}
|
||||
g := cs.IDs()
|
||||
if !reflect.DeepEqual(w, g) {
|
||||
t.Errorf("IDs=%+v, want %+v", g, w)
|
||||
}
|
||||
|
@ -132,6 +132,7 @@ func NewServer(cfg *ServerConfig) *EtcdServer {
|
||||
if w, err = wal.Create(waldir); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
// TODO: add context for PeerURLs
|
||||
n = raft.StartNode(m.ID, cfg.Cluster.IDs(), 10, 1)
|
||||
} else {
|
||||
var index int64
|
||||
|
@ -712,7 +712,7 @@ func TestTriggerSnap(t *testing.T) {
|
||||
}
|
||||
|
||||
s.start()
|
||||
for i := 0; int64(i) < s.snapCount; i++ {
|
||||
for i := 0; int64(i) < s.snapCount-1; i++ {
|
||||
s.Do(ctx, pb.Request{Method: "PUT", ID: 1})
|
||||
}
|
||||
time.Sleep(time.Millisecond)
|
||||
@ -720,12 +720,12 @@ func TestTriggerSnap(t *testing.T) {
|
||||
|
||||
gaction := p.Action()
|
||||
// each operation is recorded as a Save
|
||||
// Nop + SnapCount * Puts + Cut + SaveSnap = Save + SnapCount * Save + Cut + SaveSnap
|
||||
if len(gaction) != 3+int(s.snapCount) {
|
||||
t.Fatalf("len(action) = %d, want %d", len(gaction), 3+int(s.snapCount))
|
||||
// BootstrapConfig/Nop + (SnapCount - 1) * Puts + Cut + SaveSnap = Save + (SnapCount - 1) * Save + Cut + SaveSnap
|
||||
if len(gaction) != 2+int(s.snapCount) {
|
||||
t.Fatalf("len(action) = %d, want %d", len(gaction), 2+int(s.snapCount))
|
||||
}
|
||||
if !reflect.DeepEqual(gaction[12], action{name: "SaveSnap"}) {
|
||||
t.Errorf("action = %s, want SaveSnap", gaction[12])
|
||||
if !reflect.DeepEqual(gaction[11], action{name: "SaveSnap"}) {
|
||||
t.Errorf("action = %s, want SaveSnap", gaction[11])
|
||||
}
|
||||
}
|
||||
|
||||
|
8
pkg/types/slice.go
Normal file
8
pkg/types/slice.go
Normal file
@ -0,0 +1,8 @@
|
||||
package types
|
||||
|
||||
// Int64Slice implements sort interface
|
||||
type Int64Slice []int64
|
||||
|
||||
func (p Int64Slice) Len() int { return len(p) }
|
||||
func (p Int64Slice) Less(i, j int) bool { return p[i] < p[j] }
|
||||
func (p Int64Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
|
14
raft/node.go
14
raft/node.go
@ -101,9 +101,23 @@ type Node interface {
|
||||
|
||||
// StartNode returns a new Node given a unique raft id, a list of raft peers, and
|
||||
// the election and heartbeat timeouts in units of ticks.
|
||||
// It also builds ConfChangeAddNode entry for each peer and puts them at the head of the log.
|
||||
func StartNode(id int64, peers []int64, election, heartbeat int) Node {
|
||||
n := newNode()
|
||||
r := newRaft(id, peers, election, heartbeat)
|
||||
|
||||
ents := make([]pb.Entry, len(peers))
|
||||
for i, peer := range peers {
|
||||
cc := pb.ConfChange{Type: pb.ConfChangeAddNode, NodeID: peer}
|
||||
data, err := cc.Marshal()
|
||||
if err != nil {
|
||||
panic("unexpected marshal error")
|
||||
}
|
||||
ents[i] = pb.Entry{Type: pb.EntryConfChange, Term: 1, Index: int64(i + 1), Data: data}
|
||||
}
|
||||
r.raftLog.append(0, ents...)
|
||||
r.raftLog.committed = int64(len(ents))
|
||||
|
||||
go n.run(r)
|
||||
return &n
|
||||
}
|
||||
|
@ -149,17 +149,29 @@ func TestNode(t *testing.T) {
|
||||
ctx, cancel := context.WithCancel(context.Background())
|
||||
defer cancel()
|
||||
|
||||
cc := raftpb.ConfChange{Type: raftpb.ConfChangeAddNode, NodeID: 1}
|
||||
ccdata, err := cc.Marshal()
|
||||
if err != nil {
|
||||
t.Fatalf("unexpected marshal error: %v", err)
|
||||
}
|
||||
wants := []Ready{
|
||||
{
|
||||
SoftState: &SoftState{Lead: 1, RaftState: StateLeader},
|
||||
HardState: raftpb.HardState{Term: 1, Commit: 1},
|
||||
Entries: []raftpb.Entry{{}, {Term: 1, Index: 1}},
|
||||
CommittedEntries: []raftpb.Entry{{Term: 1, Index: 1}},
|
||||
HardState: raftpb.HardState{Term: 1, Commit: 2},
|
||||
Entries: []raftpb.Entry{
|
||||
{},
|
||||
{Type: raftpb.EntryConfChange, Term: 1, Index: 1, Data: ccdata},
|
||||
{Term: 1, Index: 2},
|
||||
},
|
||||
CommittedEntries: []raftpb.Entry{
|
||||
{Type: raftpb.EntryConfChange, Term: 1, Index: 1, Data: ccdata},
|
||||
{Term: 1, Index: 2},
|
||||
},
|
||||
},
|
||||
{
|
||||
HardState: raftpb.HardState{Term: 1, Commit: 2},
|
||||
Entries: []raftpb.Entry{{Term: 1, Index: 2, Data: []byte("foo")}},
|
||||
CommittedEntries: []raftpb.Entry{{Term: 1, Index: 2, Data: []byte("foo")}},
|
||||
HardState: raftpb.HardState{Term: 1, Commit: 3},
|
||||
Entries: []raftpb.Entry{{Term: 1, Index: 3, Data: []byte("foo")}},
|
||||
CommittedEntries: []raftpb.Entry{{Term: 1, Index: 3, Data: []byte("foo")}},
|
||||
},
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user