Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update --features flags and enable StableScheduling by default #677

Merged
merged 1 commit into from
Jul 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/tidb-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ scheduler:
replicas: 1
schedulerName: tidb-scheduler
# features:
# - StableScheduling
# - StableScheduling=true
resources:
limits:
cpu: 250m
Expand Down
2 changes: 1 addition & 1 deletion docs/design-proposals/tidb-stable-scheduling.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Add a new flag in tidb-scheduler which accepts a comma-separated list of
string.

```
tidb-scheduler --features StableScheduling
tidb-scheduler --features StableScheduling=true
```

tidb-scheduler will enable this functionality only when `StableScheduling`
Expand Down
24 changes: 16 additions & 8 deletions pkg/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ import (
)

var (
allFeatures = sets.NewString(StableScheduling)
allFeatures = sets.NewString(StableScheduling)
defaultFeatures = map[string]bool{
StableScheduling: true,
}
// DefaultFeatureGate is a shared global FeatureGate.
DefaultFeatureGate FeatureGate = NewFeatureGate()
)
Expand All @@ -41,21 +44,26 @@ type FeatureGate interface {
}

type featureGate struct {
defaultFeatures sets.String
enabledFeatures sets.String
enabledFeatures map[string]bool
}

func (f *featureGate) AddFlag(flagset *flag.FlagSet) {
flag.Var(utilflags.NewStringSetValue(f.defaultFeatures, &f.enabledFeatures), "features", fmt.Sprintf("features to enable, comma-separated list of string, available: %s", strings.Join(allFeatures.List(), ",")))
flag.Var(utilflags.NewMapStringBool(&f.enabledFeatures), "features", fmt.Sprintf("A set of key={true,false} pairs to enable/disable features, available features: %s", strings.Join(allFeatures.List(), ",")))
}

func (f *featureGate) Enabled(key string) bool {
return f.enabledFeatures.Has(key)
if b, ok := f.enabledFeatures[key]; ok {
return b
}
return false
}

func NewFeatureGate() FeatureGate {
return &featureGate{
defaultFeatures: sets.NewString(),
enabledFeatures: sets.NewString(),
f := &featureGate{
enabledFeatures: make(map[string]bool),
}
for k, v := range defaultFeatures {
f.enabledFeatures[k] = v
}
return f
}
106 changes: 106 additions & 0 deletions pkg/util/flags/map_string_bool.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
// Copyright 2019 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.

// This is copied from https://raw.githubusercontent.com/kubernetes/component-base/release-1.14/cli/flag/map_string_bool.go.
// TODO Vendor it when our dependencies has been upgraded to 1.14+.

/*
Copyright 2017 The Kubernetes 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 flags

import (
"fmt"
"sort"
"strconv"
"strings"
)

// MapStringBool can be set from the command line with the format `--flag "string=bool"`.
// Multiple comma-separated key-value pairs in a single invocation are supported. For example: `--flag "a=true,b=false"`.
// Multiple flag invocations are supported. For example: `--flag "a=true" --flag "b=false"`.
type MapStringBool struct {
Map *map[string]bool
initialized bool
}

// NewMapStringBool takes a pointer to a map[string]string and returns the
// MapStringBool flag parsing shim for that map
func NewMapStringBool(m *map[string]bool) *MapStringBool {
return &MapStringBool{Map: m}
}

// String implements github.com/spf13/pflag.Value
func (m *MapStringBool) String() string {
if m == nil || m.Map == nil {
return ""
}
pairs := []string{}
for k, v := range *m.Map {
pairs = append(pairs, fmt.Sprintf("%s=%t", k, v))
}
sort.Strings(pairs)
return strings.Join(pairs, ",")
}

// Set implements github.com/spf13/pflag.Value
func (m *MapStringBool) Set(value string) error {
if m.Map == nil {
return fmt.Errorf("no target (nil pointer to map[string]bool)")
}
if !m.initialized || *m.Map == nil {
// clear default values, or allocate if no existing map
*m.Map = make(map[string]bool)
m.initialized = true
}
for _, s := range strings.Split(value, ",") {
if len(s) == 0 {
continue
}
arr := strings.SplitN(s, "=", 2)
if len(arr) != 2 {
return fmt.Errorf("malformed pair, expect string=bool")
}
k := strings.TrimSpace(arr[0])
v := strings.TrimSpace(arr[1])
boolValue, err := strconv.ParseBool(v)
if err != nil {
return fmt.Errorf("invalid value of %s: %s, err: %v", k, v, err)
}
(*m.Map)[k] = boolValue
}
return nil
}

// Type implements github.com/spf13/pflag.Value
func (*MapStringBool) Type() string {
return "mapStringBool"
}

// Empty implements OmitEmpty
func (m *MapStringBool) Empty() bool {
return len(*m.Map) == 0
}
81 changes: 0 additions & 81 deletions pkg/util/flags/string_set.go

This file was deleted.

4 changes: 2 additions & 2 deletions tests/cmd/e2e/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/pingcap/tidb-operator/tests/pkg/apimachinery"

"k8s.io/api/core/v1"
v1 "k8s.io/api/core/v1"

"github.com/golang/glog"
"github.com/jinzhu/copier"
Expand Down Expand Up @@ -49,7 +49,7 @@ func main() {
SchedulerImage: "mirantis/hypokube",
SchedulerTag: "final",
SchedulerFeatures: []string{
"StableScheduling",
"StableScheduling=true",
},
LogLevel: "2",
WebhookServiceName: "webhook-service",
Expand Down
4 changes: 2 additions & 2 deletions tests/cmd/stability/stability.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/pingcap/tidb-operator/tests"
"k8s.io/api/core/v1"
v1 "k8s.io/api/core/v1"
)

func newOperatorConfig() *tests.OperatorConfig {
Expand All @@ -15,7 +15,7 @@ func newOperatorConfig() *tests.OperatorConfig {
Tag: cfg.OperatorTag,
SchedulerImage: "gcr.io/google-containers/hyperkube",
SchedulerFeatures: []string{
"StableScheduling",
"StableScheduling=true",
},
LogLevel: "2",
WebhookServiceName: tests.WebhookServiceName,
Expand Down