-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
cell_info.go
166 lines (141 loc) · 5.41 KB
/
cell_info.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
Copyright 2019 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package vtctl
import (
"context"
"fmt"
"strings"
"github.com/spf13/pflag"
"vitess.io/vitess/go/vt/wrangler"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
)
// This file contains the Cells command group for vtctl.
const cellsGroupName = "Cells"
func init() {
addCommandGroup(cellsGroupName)
addCommand(cellsGroupName, command{
name: "AddCellInfo",
method: commandAddCellInfo,
params: "[--server_address <addr>] [--root <root>] <cell>",
help: "Registers a local topology service in a new cell by creating the CellInfo with the provided parameters. The address will be used to connect to the topology service, and we'll put Vitess data starting at the provided root.",
})
addCommand(cellsGroupName, command{
name: "UpdateCellInfo",
method: commandUpdateCellInfo,
params: "[--server_address <addr>] [--root <root>] <cell>",
help: "Updates the content of a CellInfo with the provided parameters. If a value is empty, it is not updated. The CellInfo will be created if it doesn't exist.",
})
addCommand(cellsGroupName, command{
name: "DeleteCellInfo",
method: commandDeleteCellInfo,
params: "[--force] <cell>",
help: "Deletes the CellInfo for the provided cell. The cell cannot be referenced by any Shard record.",
})
addCommand(cellsGroupName, command{
name: "GetCellInfoNames",
method: commandGetCellInfoNames,
params: "",
help: "Lists all the cells for which we have a CellInfo object, meaning we have a local topology service registered.",
})
addCommand(cellsGroupName, command{
name: "GetCellInfo",
method: commandGetCellInfo,
params: "<cell>",
help: "Prints a JSON representation of the CellInfo for a cell.",
})
}
func commandAddCellInfo(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag.FlagSet, args []string) error {
serverAddress := subFlags.String("server_address", "", "The address the topology server is using for that cell.")
root := subFlags.String("root", "", "The root path the topology server is using for that cell.")
if err := subFlags.Parse(args); err != nil {
return err
}
if subFlags.NArg() != 1 {
return fmt.Errorf("the <cell> argument is required for the AddCellInfo command")
}
cell := subFlags.Arg(0)
_, err := wr.VtctldServer().AddCellInfo(ctx, &vtctldatapb.AddCellInfoRequest{
Name: cell,
CellInfo: &topodatapb.CellInfo{
ServerAddress: *serverAddress,
Root: *root,
},
})
return err
}
func commandUpdateCellInfo(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag.FlagSet, args []string) error {
serverAddress := subFlags.String("server_address", "", "The address the topology server is using for that cell.")
root := subFlags.String("root", "", "The root path the topology server is using for that cell.")
if err := subFlags.Parse(args); err != nil {
return err
}
if subFlags.NArg() != 1 {
return fmt.Errorf("the <cell> argument is required for the UpdateCellInfo command")
}
cell := subFlags.Arg(0)
_, err := wr.VtctldServer().UpdateCellInfo(ctx, &vtctldatapb.UpdateCellInfoRequest{
Name: cell,
CellInfo: &topodatapb.CellInfo{
ServerAddress: *serverAddress,
Root: *root,
},
})
return err
}
func commandDeleteCellInfo(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag.FlagSet, args []string) error {
force := subFlags.Bool("force", false, "Proceeds even if the cell's topology server cannot be reached. The assumption is that you turned down the entire cell, and just need to update the global topo data.")
if err := subFlags.Parse(args); err != nil {
return err
}
if subFlags.NArg() != 1 {
return fmt.Errorf("the <cell> argument is required for the DeleteCellInfo command")
}
cell := subFlags.Arg(0)
_, err := wr.VtctldServer().DeleteCellInfo(ctx, &vtctldatapb.DeleteCellInfoRequest{
Name: cell,
Force: *force,
})
return err
}
func commandGetCellInfoNames(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag.FlagSet, args []string) error {
if err := subFlags.Parse(args); err != nil {
return err
}
if subFlags.NArg() != 0 {
return fmt.Errorf("GetCellInfoNames command takes no parameter")
}
names, err := wr.TopoServer().GetCellInfoNames(ctx)
if err != nil {
return err
}
wr.Logger().Printf("%v\n", strings.Join(names, "\n"))
return nil
}
func commandGetCellInfo(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag.FlagSet, args []string) error {
if err := subFlags.Parse(args); err != nil {
return err
}
if subFlags.NArg() != 1 {
return fmt.Errorf("the <cell> argument is required for the GetCellInfo command")
}
// We use a strong read, because users using this command want the
// latest data, and this is user-generated, not used in any
// automated process.
cell := subFlags.Arg(0)
ci, err := wr.TopoServer().GetCellInfo(ctx, cell, true /*strongRead*/)
if err != nil {
return err
}
return printJSON(wr.Logger(), ci)
}