-
Notifications
You must be signed in to change notification settings - Fork 455
/
replace_up_node_remove.go
114 lines (98 loc) · 4.83 KB
/
replace_up_node_remove.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
// Copyright (c) 2018 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package dtests
import (
"github.com/m3db/m3/src/cluster/shard"
"github.com/m3db/m3/src/cmd/tools/dtest/harness"
xclock "github.com/m3db/m3x/clock"
"github.com/spf13/cobra"
)
var (
replaceUpNodeRemoveTestCmd = &cobra.Command{
Use: "replace_up_node_remove",
Short: "Run a dtest where a node that is UP is replaced from the cluster. The replacing Node is removed as it begins bootstrapping.",
Long: `
Perform the following operations on the provided set of nodes:
(1) Create a new cluster placement using all but one of the provided nodes.
(2) Seed the nodes used in (1), with initial data on their respective file-systems.
(3) Start the nodes from (1), and wait until they are bootstrapped.
(4) Replace any node in the cluster with the unused node in the cluster placement.
(5) Start the joining node's process.
(6) Wait until any shard on the joining node is marked as available.
(7) Remove the joining node from the cluster placement.
`,
Example: `./dtest replace_up_node_remove --m3db-build path/to/m3dbnode --m3db-config path/to/m3dbnode.yaml --dtest-config path/to/dtest.yaml`,
Run: replaceUpNodeRemoveDTest,
}
)
func replaceUpNodeRemoveDTest(cmd *cobra.Command, args []string) {
if err := globalArgs.Validate(); err != nil {
printUsage(cmd)
return
}
logger := newLogger(cmd)
dt := harness.New(globalArgs, logger)
defer dt.Close()
nodes := dt.Nodes()
numNodes := len(nodes) - 1 // leaving one spare
testCluster := dt.Cluster()
logger.Infof("setting up cluster")
setupNodes, err := testCluster.Setup(numNodes)
panicIfErr(err, "unable to setup cluster")
logger.Infof("setup cluster with %d nodes", numNodes)
logger.Infof("seeding nodes with initial data")
panicIfErr(dt.Seed(setupNodes), "unable to seed nodes")
logger.Infof("seeded nodes")
logger.Infof("starting cluster")
panicIfErr(testCluster.Start(), "unable to start nodes")
logger.Infof("started cluster with %d nodes", numNodes)
logger.Infof("waiting until all instances are bootstrapped")
panicIfErr(dt.WaitUntilAllBootstrapped(setupNodes), "unable to bootstrap all nodes")
logger.Infof("all nodes bootstrapped successfully!")
// pick first node from cluster
nodeToReplace := setupNodes[0]
logger.Infof("replacing node: %v", nodeToReplace.ID())
replacementNodes, err := testCluster.ReplaceNode(nodeToReplace)
panicIfErr(err, "unable to replace node")
panicIf(len(replacementNodes) < 1, "no replacement nodes returned")
logger.Infof("replaced node with: %+v", replacementNodes)
logger.Infof("starting replacement nodes")
// starting replacement nodes
for _, n := range replacementNodes {
panicIfErr(n.Start(), "unable to start node")
}
logger.Infof("started replacement nodes")
// NB(prateek): ideally we'd like to wait until the node begins bootstrapping, but we don't
// have a way to capture that node status. The rpc endpoint in m3dbnode only captures bootstrap
// status at the database level, and m3kv only captures state once a shard is marked as bootstrapped.
// So here we wait until any shard is marked as bootstrapped before continuing.
// wait until any shard is bootstrapped (i.e. marked available on new node)
replacementNode := replacementNodes[0]
logger.Infof("waiting till any shards are bootstrapped on node: %v", replacementNode.ID())
timeout := dt.BootstrapTimeout()
anyBootstrapped := xclock.WaitUntil(func() bool { return dt.AnyInstanceShardHasState(replacementNode.ID(), shard.Available) }, timeout)
panicIf(!anyBootstrapped, "all shards not available")
// remove the node once it has a shard available
logger.Infof("node has at least 1 shard available. removing replacement nodes")
for _, n := range replacementNodes {
panicIfErr(testCluster.RemoveNode(n), "unable to remove node")
}
logger.Infof("removed replacement nodes")
}