-
Notifications
You must be signed in to change notification settings - Fork 312
/
pd.go
358 lines (315 loc) · 9.59 KB
/
pd.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
// Copyright 2020 PingCAP, Inc.
//
// 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package spec
import (
"context"
"crypto/tls"
"fmt"
"os"
"path/filepath"
"time"
"github.com/pingcap/errors"
"github.com/pingcap/tiup/pkg/cluster/api"
"github.com/pingcap/tiup/pkg/cluster/ctxt"
"github.com/pingcap/tiup/pkg/cluster/template/scripts"
"github.com/pingcap/tiup/pkg/logger/log"
"github.com/pingcap/tiup/pkg/meta"
"github.com/pingcap/tiup/pkg/utils"
)
// PDSpec represents the PD topology specification in topology.yaml
type PDSpec struct {
Host string `yaml:"host"`
ListenHost string `yaml:"listen_host,omitempty"`
SSHPort int `yaml:"ssh_port,omitempty" validate:"ssh_port:editable"`
Imported bool `yaml:"imported,omitempty"`
Patched bool `yaml:"patched,omitempty"`
// Use Name to get the name with a default value if it's empty.
Name string `yaml:"name"`
ClientPort int `yaml:"client_port" default:"2379"`
PeerPort int `yaml:"peer_port" default:"2380"`
DeployDir string `yaml:"deploy_dir,omitempty"`
DataDir string `yaml:"data_dir,omitempty"`
LogDir string `yaml:"log_dir,omitempty"`
NumaNode string `yaml:"numa_node,omitempty" validate:"numa_node:editable"`
Config map[string]interface{} `yaml:"config,omitempty" validate:"config:ignore"`
ResourceControl meta.ResourceControl `yaml:"resource_control,omitempty" validate:"resource_control:editable"`
Arch string `yaml:"arch,omitempty"`
OS string `yaml:"os,omitempty"`
}
// Status queries current status of the instance
func (s *PDSpec) Status(tlsCfg *tls.Config, _ ...string) string {
addr := fmt.Sprintf("%s:%d", s.Host, s.ClientPort)
pc := api.NewPDClient([]string{addr}, statusQueryTimeout, tlsCfg)
// check health
err := pc.CheckHealth()
if err != nil {
return "Down"
}
// find leader node
leader, err := pc.GetLeader()
if err != nil {
return "ERR"
}
res := "Up"
if s.Name == leader.Name {
res += "|L"
}
return res
}
// Role returns the component role of the instance
func (s *PDSpec) Role() string {
return ComponentPD
}
// SSH returns the host and SSH port of the instance
func (s *PDSpec) SSH() (string, int) {
return s.Host, s.SSHPort
}
// GetMainPort returns the main port of the instance
func (s *PDSpec) GetMainPort() int {
return s.ClientPort
}
// IsImported returns if the node is imported from TiDB-Ansible
func (s *PDSpec) IsImported() bool {
return s.Imported
}
// PDComponent represents PD component.
type PDComponent struct{ Topology *Specification }
// Name implements Component interface.
func (c *PDComponent) Name() string {
return ComponentPD
}
// Role implements Component interface.
func (c *PDComponent) Role() string {
return ComponentPD
}
// Instances implements Component interface.
func (c *PDComponent) Instances() []Instance {
ins := make([]Instance, 0, len(c.Topology.PDServers))
for _, s := range c.Topology.PDServers {
s := s
ins = append(ins, &PDInstance{
Name: s.Name,
BaseInstance: BaseInstance{
InstanceSpec: s,
Name: c.Name(),
Host: s.Host,
ListenHost: s.ListenHost,
Port: s.ClientPort,
SSHP: s.SSHPort,
Ports: []int{
s.ClientPort,
s.PeerPort,
},
Dirs: []string{
s.DeployDir,
s.DataDir,
},
StatusFn: s.Status,
},
topo: c.Topology,
})
}
return ins
}
// PDInstance represent the PD instance
type PDInstance struct {
Name string
BaseInstance
topo Topology
}
// InitConfig implement Instance interface
func (i *PDInstance) InitConfig(
ctx context.Context,
e ctxt.Executor,
clusterName,
clusterVersion,
deployUser string,
paths meta.DirPaths,
) error {
topo := i.topo.(*Specification)
if err := i.BaseInstance.InitConfig(ctx, e, topo.GlobalOptions, deployUser, paths); err != nil {
return err
}
enableTLS := topo.GlobalOptions.TLSEnabled
spec := i.InstanceSpec.(*PDSpec)
cfg := scripts.NewPDScript(
spec.Name,
i.GetHost(),
paths.Deploy,
paths.Data[0],
paths.Log,
).WithClientPort(spec.ClientPort).
WithPeerPort(spec.PeerPort).
AppendEndpoints(topo.Endpoints(deployUser)...).
WithListenHost(i.GetListenHost())
if enableTLS {
cfg = cfg.WithScheme("https")
}
fp := filepath.Join(paths.Cache, fmt.Sprintf("run_pd_%s_%d.sh", i.GetHost(), i.GetPort()))
if err := cfg.ConfigToFile(fp); err != nil {
return err
}
dst := filepath.Join(paths.Deploy, "scripts", "run_pd.sh")
if err := e.Transfer(ctx, fp, dst, false); err != nil {
return err
}
if _, _, err := e.Execute(ctx, "chmod +x "+dst, false); err != nil {
return err
}
globalConfig := topo.ServerConfigs.PD
// merge config files for imported instance
if i.IsImported() {
configPath := ClusterPath(
clusterName,
AnsibleImportedConfigPath,
fmt.Sprintf(
"%s-%s-%d.toml",
i.ComponentName(),
i.GetHost(),
i.GetPort(),
),
)
importConfig, err := os.ReadFile(configPath)
if err != nil {
return err
}
globalConfig, err = mergeImported(importConfig, globalConfig)
if err != nil {
return err
}
}
// set TLS configs
if enableTLS {
if spec.Config == nil {
spec.Config = make(map[string]interface{})
}
spec.Config["security.cacert-path"] = fmt.Sprintf(
"%s/tls/%s",
paths.Deploy,
TLSCACert,
)
spec.Config["security.cert-path"] = fmt.Sprintf(
"%s/tls/%s.crt",
paths.Deploy,
i.Role())
spec.Config["security.key-path"] = fmt.Sprintf(
"%s/tls/%s.pem",
paths.Deploy,
i.Role())
}
if err := i.MergeServerConfig(ctx, e, globalConfig, spec.Config, paths); err != nil {
return err
}
return checkConfig(ctx, e, i.ComponentName(), clusterVersion, i.OS(), i.Arch(), i.ComponentName()+".toml", paths, nil)
}
// ScaleConfig deploy temporary config on scaling
func (i *PDInstance) ScaleConfig(
ctx context.Context,
e ctxt.Executor,
topo Topology,
clusterName,
clusterVersion,
deployUser string,
paths meta.DirPaths,
) error {
// We need pd.toml here, but we don't need to check it
if err := i.InitConfig(ctx, e, clusterName, clusterVersion, deployUser, paths); err != nil &&
errors.Cause(err) != ErrorCheckConfig {
return err
}
cluster := mustBeClusterTopo(topo)
spec := i.InstanceSpec.(*PDSpec)
cfg0 := scripts.NewPDScript(
i.Name,
i.GetHost(),
paths.Deploy,
paths.Data[0],
paths.Log,
).WithPeerPort(spec.PeerPort).
WithNumaNode(spec.NumaNode).
WithClientPort(spec.ClientPort).
AppendEndpoints(cluster.Endpoints(deployUser)...).
WithListenHost(i.GetListenHost())
if topo.BaseTopo().GlobalOptions.TLSEnabled {
cfg0 = cfg0.WithScheme("https")
}
cfg := scripts.NewPDScaleScript(cfg0)
fp := filepath.Join(paths.Cache, fmt.Sprintf("run_pd_%s_%d.sh", i.GetHost(), i.GetPort()))
log.Infof("script path: %s", fp)
if err := cfg.ConfigToFile(fp); err != nil {
return err
}
dst := filepath.Join(paths.Deploy, "scripts", "run_pd.sh")
if err := e.Transfer(ctx, fp, dst, false); err != nil {
return err
}
if _, _, err := e.Execute(ctx, "chmod +x "+dst, false); err != nil {
return err
}
return nil
}
var _ RollingUpdateInstance = &PDInstance{}
// IsLeader checks if the instance is PD leader
func (i *PDInstance) IsLeader(topo Topology, apiTimeoutSeconds int, tlsCfg *tls.Config) (bool, error) {
tidbTopo, ok := topo.(*Specification)
if !ok {
panic("topo should be type of tidb topology")
}
pdClient := api.NewPDClient(tidbTopo.GetPDList(), time.Second*5, tlsCfg)
return i.isLeader(pdClient)
}
func (i *PDInstance) isLeader(pdClient *api.PDClient) (bool, error) {
leader, err := pdClient.GetLeader()
if err != nil {
return false, errors.Annotatef(err, "failed to get PD leader %s", i.GetHost())
}
return leader.Name == i.Name, nil
}
// PreRestart implements RollingUpdateInstance interface.
func (i *PDInstance) PreRestart(topo Topology, apiTimeoutSeconds int, tlsCfg *tls.Config) error {
timeoutOpt := &utils.RetryOption{
Timeout: time.Second * time.Duration(apiTimeoutSeconds),
Delay: time.Second * 2,
}
tidbTopo, ok := topo.(*Specification)
if !ok {
panic("topo should be type of tidb topology")
}
pdClient := api.NewPDClient(tidbTopo.GetPDList(), time.Second*5, tlsCfg)
isLeader, err := i.isLeader(pdClient)
if err != nil {
return err
}
if len(tidbTopo.PDServers) > 1 && isLeader {
if err := pdClient.EvictPDLeader(timeoutOpt); err != nil {
return errors.Annotatef(err, "failed to evict PD leader %s", i.GetHost())
}
}
return nil
}
// PostRestart implements RollingUpdateInstance interface.
func (i *PDInstance) PostRestart(topo Topology, tlsCfg *tls.Config) error {
// When restarting the next PD, if the PD has not been fully started and has become the target of
// the transfer leader, this may cause the PD service to be unavailable for about 10 seconds.
timeoutOpt := utils.RetryOption{
Attempts: 100,
Delay: time.Second,
Timeout: 120 * time.Second,
}
currentPDAddrs := []string{fmt.Sprintf("%s:%d", i.Host, i.Port)}
pdClient := api.NewPDClient(currentPDAddrs, 5*time.Second, tlsCfg)
if err := utils.Retry(pdClient.CheckHealth, timeoutOpt); err != nil {
return errors.Annotatef(err, "failed to start PD peer %s", i.GetHost())
}
return nil
}