-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
517 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright 2023 PingCAP, Inc. Licensed under Apache-2.0. | ||
|
||
package main | ||
|
||
import ( | ||
"github.com/pingcap/errors" | ||
"github.com/pingcap/tidb/br/pkg/task" | ||
"github.com/pingcap/tidb/br/pkg/task/operator" | ||
"github.com/pingcap/tidb/br/pkg/utils" | ||
"github.com/pingcap/tidb/br/pkg/version/build" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
func newOpeartorCommand() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "operator <subcommand>", | ||
Short: "utilities for operators like tidb-operator.", | ||
PersistentPreRunE: func(c *cobra.Command, args []string) error { | ||
if err := Init(c); err != nil { | ||
return errors.Trace(err) | ||
} | ||
build.LogInfo(build.BR) | ||
utils.LogEnvVariables() | ||
task.LogArguments(c) | ||
return nil | ||
}, | ||
Hidden: true, | ||
} | ||
cmd.AddCommand(newPauseGcCommand()) | ||
return cmd | ||
} | ||
|
||
func newPauseGcCommand() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "pause-gc", | ||
Short: "pause gc to the ts until the program exits.", | ||
Args: cobra.NoArgs, | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
cfg := operator.PauseGcConfig{} | ||
if err := cfg.ParseFromFlags(cmd.Flags()); err != nil { | ||
return err | ||
} | ||
ctx := GetDefaultContext() | ||
return operator.PauseGC(ctx, &cfg) | ||
}, | ||
} | ||
operator.DefineFlagsForPauseGcConfig(cmd.Flags()) | ||
return cmd | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||
|
||
go_library( | ||
name = "operator", | ||
srcs = [ | ||
"cmd.go", | ||
"config.go", | ||
], | ||
importpath = "github.com/pingcap/tidb/br/pkg/task/operator", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//br/pkg/pdutil", | ||
"//br/pkg/task", | ||
"//br/pkg/utils", | ||
"@com_github_pingcap_log//:log", | ||
"@com_github_spf13_pflag//:pflag", | ||
"@org_uber_go_zap//:zap", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
package operator | ||
|
||
import ( | ||
"context" | ||
"crypto/tls" | ||
"strings" | ||
|
||
"github.com/pingcap/log" | ||
"github.com/pingcap/tidb/br/pkg/pdutil" | ||
"github.com/pingcap/tidb/br/pkg/task" | ||
"github.com/pingcap/tidb/br/pkg/utils" | ||
"go.uber.org/zap" | ||
) | ||
|
||
func dialPD(ctx context.Context, cfg *task.Config) (*pdutil.PdController, error) { | ||
pdAddrs := strings.Join(cfg.PD, ",") | ||
var tc *tls.Config | ||
if cfg.TLS.IsEnabled() { | ||
var err error | ||
tc, err = cfg.TLS.ToTLSConfig() | ||
if err != nil { | ||
return nil, err | ||
} | ||
} | ||
mgr, err := pdutil.NewPdController(ctx, pdAddrs, tc, cfg.TLS.ToPDSecurityOption()) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return mgr, nil | ||
} | ||
|
||
// PauseGC blocks the current goroutine and pause the GC safepoint by the config. | ||
func PauseGC(ctx context.Context, cfg *PauseGcConfig) error { | ||
mgr, err := dialPD(ctx, &cfg.Config) | ||
if err != nil { | ||
return err | ||
} | ||
sp := utils.BRServiceSafePoint{ | ||
ID: utils.MakeSafePointID(), | ||
TTL: int64(cfg.TTL.Seconds()), | ||
BackupTS: cfg.SafePoint, | ||
} | ||
if sp.BackupTS == 0 { | ||
rts, err := mgr.GetMinResolvedTS(ctx) | ||
if err != nil { | ||
return err | ||
} | ||
log.Info("No service safepoint provided, using the minimal resolved TS.", zap.Uint64("min-resolved-ts", rts)) | ||
sp.BackupTS = rts | ||
} | ||
err = utils.StartServiceSafePointKeeper(ctx, mgr.GetPDClient(), sp) | ||
if err != nil { | ||
return err | ||
} | ||
<-ctx.Done() | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copyright 2023 PingCAP, Inc. Licensed under Apache-2.0. | ||
|
||
package operator | ||
|
||
import ( | ||
"time" | ||
|
||
"github.com/pingcap/tidb/br/pkg/task" | ||
"github.com/spf13/pflag" | ||
) | ||
|
||
type PauseGcConfig struct { | ||
task.Config | ||
|
||
SafePoint uint64 `json:"safepoint" yaml:"safepoint"` | ||
TTL time.Duration `json:"ttl" yaml:"ttl"` | ||
} | ||
|
||
func DefineFlagsForPauseGcConfig(f *pflag.FlagSet) { | ||
_ = f.DurationP("ttl", "i", 5*time.Minute, "The time-to-live of the safepoint.") | ||
_ = f.Uint64P("safepoint", "t", 0, "The GC safepoint to be kept.") | ||
} | ||
|
||
// ParseFromFlags fills the config via the flags. | ||
func (cfg *PauseGcConfig) ParseFromFlags(flags *pflag.FlagSet) error { | ||
if err := cfg.Config.ParseFromFlags(flags); err != nil { | ||
return err | ||
} | ||
|
||
var err error | ||
cfg.SafePoint, err = flags.GetUint64("safepoint") | ||
if err != nil { | ||
return err | ||
} | ||
cfg.TTL, err = flags.GetDuration("ttl") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.