Skip to content

Commit c285f93

Browse files
committed
featuregate: adds EtcdServer.FeatureEnabled interface.
The interface can be used throughout the etcd server binary to check if the feature is enabled or not.
1 parent 0bd7008 commit c285f93

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

pkg/featuregate/featuregate.go

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// Copyright 2015 The etcd Authors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
// Package featuregate implements feature gate for to track/manage new features being added to etcd servers.
16+
package featuregate
17+
18+
import "fmt"
19+
20+
type Feature string
21+
22+
// defaultFeatureGates tracks Features added (but not yet enabled) to etcd servers.
23+
// TODO(stackbaek): use VersionedSpecs, once kep-4330 is implemented.
24+
var defaultFeatureGates = map[Feature]interface{}{}
25+
26+
type FeatureGate struct{}
27+
28+
// Enabled returns true if a Feature is enabled, false otherwise.
29+
// Note that the error will be returned if the Feature is not added to the etcd servers.
30+
func (fg FeatureGate) Enabled(f Feature) (bool, error) {
31+
if _, ok := defaultFeatureGates[f]; !ok {
32+
return false, fmt.Errorf("Unknown feature %s.", f)
33+
}
34+
return false, nil
35+
}

server/config/config.go

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import (
2828
bolt "go.etcd.io/bbolt"
2929
"go.etcd.io/etcd/client/pkg/v3/transport"
3030
"go.etcd.io/etcd/client/pkg/v3/types"
31+
"go.etcd.io/etcd/pkg/v3/featuregate"
3132
"go.etcd.io/etcd/pkg/v3/netutil"
3233
"go.etcd.io/etcd/server/v3/etcdserver/api/v3discovery"
3334
"go.etcd.io/etcd/server/v3/storage/datadir"
@@ -204,6 +205,9 @@ type ServerConfig struct {
204205

205206
// V2Deprecation defines a phase of v2store deprecation process.
206207
V2Deprecation V2DeprecationEnum `json:"v2-deprecation"`
208+
209+
// ServerFeatureGate server level feature gate
210+
ServerFeatureGate featuregate.FeatureGate
207211
}
208212

209213
// VerifyBootstrap sanity-checks the initial config for bootstrap case

server/etcdserver/server.go

+10
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import (
3939
"go.etcd.io/etcd/client/pkg/v3/fileutil"
4040
"go.etcd.io/etcd/client/pkg/v3/types"
4141
"go.etcd.io/etcd/client/pkg/v3/verify"
42+
"go.etcd.io/etcd/pkg/v3/featuregate"
4243
"go.etcd.io/etcd/pkg/v3/idutil"
4344
"go.etcd.io/etcd/pkg/v3/notify"
4445
"go.etcd.io/etcd/pkg/v3/pbutil"
@@ -456,6 +457,15 @@ func (s *EtcdServer) Config() config.ServerConfig {
456457
return s.Cfg
457458
}
458459

460+
// FeatureEnabled returns true if the feature is enabled by the etcd server, false otherwise.
461+
func (s *EtcdServer) FeatureEnabled(f featuregate.Feature) bool {
462+
enabled, err := s.Cfg.ServerFeatureGate.Enabled(f)
463+
if err != nil {
464+
s.Logger().Warn(fmt.Sprintf("Failed to check if feature is enabled: %v", err))
465+
}
466+
return enabled
467+
}
468+
459469
func tickToDur(ticks int, tickMs uint) string {
460470
return fmt.Sprintf("%v", time.Duration(ticks)*time.Duration(tickMs)*time.Millisecond)
461471
}

0 commit comments

Comments
 (0)