-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
cells_aliases.go
139 lines (115 loc) · 4.14 KB
/
cells_aliases.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
/*
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 CellsAliases command group for vtctl.
const cellsAliasesGroupName = "CellsAliases"
func init() {
addCommandGroup(cellsAliasesGroupName)
addCommand(cellsAliasesGroupName, command{
name: "AddCellsAlias",
method: commandAddCellsAlias,
params: "[--cells <cell,cell2...>] <alias>",
help: "Defines a group of cells within which replica/rdonly traffic can be routed across cells. Between cells that are not in the same group (alias), only primary traffic can be routed.",
})
addCommand(cellsAliasesGroupName, command{
name: "UpdateCellsAlias",
method: commandUpdateCellsAlias,
params: "[--cells <cell,cell2,...>] <alias>",
help: "Updates the content of a CellsAlias with the provided parameters. If a value is empty, it is not updated. The CellsAlias will be created if it doesn't exist.",
})
addCommand(cellsAliasesGroupName, command{
name: "DeleteCellsAlias",
method: commandDeleteCellsAlias,
params: "<alias>",
help: "Deletes the CellsAlias for the provided alias.",
})
addCommand(cellsAliasesGroupName, command{
name: "GetCellsAliases",
method: commandGetCellsAliases,
params: "",
help: "Lists all the cells for which we have a CellsAlias object.",
})
}
func commandAddCellsAlias(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag.FlagSet, args []string) error {
cells := subFlags.StringSlice("cells", nil, "The list of cell names that are members of this alias.")
if err := subFlags.Parse(args); err != nil {
return err
}
if subFlags.NArg() != 1 {
return fmt.Errorf("the <alias> argument is required for the AddCellsAlias command")
}
for i, cell := range *cells {
(*cells)[i] = strings.TrimSpace(cell)
}
alias := subFlags.Arg(0)
_, err := wr.VtctldServer().AddCellsAlias(ctx, &vtctldatapb.AddCellsAliasRequest{
Name: alias,
Cells: *cells,
})
return err
}
func commandUpdateCellsAlias(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag.FlagSet, args []string) error {
cells := subFlags.StringSlice("cells", nil, "The list of cell names that are members of this alias.")
if err := subFlags.Parse(args); err != nil {
return err
}
if subFlags.NArg() != 1 {
return fmt.Errorf("the <alias> argument is required for the UpdateCellsAlias command")
}
for i, cell := range *cells {
(*cells)[i] = strings.TrimSpace(cell)
}
alias := subFlags.Arg(0)
_, err := wr.VtctldServer().UpdateCellsAlias(ctx, &vtctldatapb.UpdateCellsAliasRequest{
Name: alias,
CellsAlias: &topodatapb.CellsAlias{
Cells: *cells,
},
})
return err
}
func commandDeleteCellsAlias(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 <alias> argument is required for the DeleteCellsAlias command")
}
alias := subFlags.Arg(0)
_, err := wr.VtctldServer().DeleteCellsAlias(ctx, &vtctldatapb.DeleteCellsAliasRequest{
Name: alias,
})
return err
}
func commandGetCellsAliases(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("GetCellsAliases command takes no parameter")
}
aliases, err := wr.TopoServer().GetCellsAliases(ctx, true /*strongRead*/)
if err != nil {
return err
}
return printJSON(wr.Logger(), aliases)
}