mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com> Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>
299 lines
8.6 KiB
Go
299 lines
8.6 KiB
Go
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// 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 paramtable
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"path"
|
|
"runtime"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
config "github.com/milvus-io/milvus/internal/config"
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
"github.com/milvus-io/milvus/internal/util/etcd"
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// UniqueID is type alias of typeutil.UniqueID
|
|
type UniqueID = typeutil.UniqueID
|
|
|
|
const (
|
|
DefaultMilvusYaml = "milvus.yaml"
|
|
DefaultEasyloggingYaml = "easylogging.yaml"
|
|
DefaultMinioHost = "localhost"
|
|
DefaultMinioPort = "9000"
|
|
DefaultMinioAccessKey = "minioadmin"
|
|
DefaultMinioSecretAccessKey = "minioadmin"
|
|
DefaultMinioUseSSL = "false"
|
|
DefaultMinioBucketName = "a-bucket"
|
|
DefaultMinioUseIAM = "false"
|
|
DefaultMinioCloudProvider = "aws"
|
|
DefaultMinioIAMEndpoint = ""
|
|
DefaultEtcdEndpoints = "localhost:2379"
|
|
DefaultInsertBufferSize = "16777216"
|
|
DefaultEnvPrefix = "milvus"
|
|
|
|
DefaultLogFormat = "text"
|
|
DefaultLogLevelForBase = "debug"
|
|
DefaultRootPath = ""
|
|
DefaultMaxSize = 300
|
|
DefaultMaxAge = 10
|
|
DefaultMaxBackups = 20
|
|
)
|
|
|
|
//Const of Global Config List
|
|
func globalConfigPrefixs() []string {
|
|
return []string{"metastore.", "localStorage.", "etcd.", "mysql.", "minio.", "pulsar.", "kafka.", "rocksmq.", "log.", "grpc.", "common.", "quotaAndLimits."}
|
|
}
|
|
|
|
var defaultYaml = DefaultMilvusYaml
|
|
|
|
// BaseTable the basics of paramtable
|
|
type BaseTable struct {
|
|
mgr *config.Manager
|
|
|
|
configDir string
|
|
YamlFile string
|
|
|
|
Log log.Config
|
|
}
|
|
|
|
// NewBaseTableFromYamlOnly only used in migration tool.
|
|
// Maybe we shouldn't limit the configDir internally.
|
|
func NewBaseTableFromYamlOnly(yaml string) *BaseTable {
|
|
mgr, _ := config.Init(config.WithFilesSource(&config.FileInfo{
|
|
Filepath: yaml,
|
|
RefreshInterval: 10 * time.Second,
|
|
}))
|
|
gp := &BaseTable{mgr: mgr, YamlFile: yaml}
|
|
return gp
|
|
}
|
|
|
|
// Init initializes the param table.
|
|
// if refreshInterval greater than 0 will auto refresh config from source
|
|
func (gp *BaseTable) Init(refreshInterval int) {
|
|
formatter := func(key string) string {
|
|
ret := strings.ToLower(key)
|
|
ret = strings.TrimPrefix(ret, "milvus.")
|
|
ret = strings.ReplaceAll(ret, "/", "")
|
|
ret = strings.ReplaceAll(ret, "_", "")
|
|
ret = strings.ReplaceAll(ret, ".", "")
|
|
return ret
|
|
}
|
|
if gp.YamlFile == "" {
|
|
gp.YamlFile = DefaultMilvusYaml
|
|
}
|
|
var err error
|
|
gp.mgr, err = config.Init(config.WithEnvSource(formatter))
|
|
if err != nil {
|
|
return
|
|
}
|
|
gp.initConfigsFromLocal(refreshInterval)
|
|
gp.initConfigsFromRemote(refreshInterval)
|
|
gp.InitLogCfg()
|
|
}
|
|
|
|
func (gp *BaseTable) initConfigsFromLocal(refreshInterval int) {
|
|
gp.configDir = gp.initConfPath()
|
|
configFilePath := gp.configDir + "/" + gp.YamlFile
|
|
err := gp.mgr.AddSource(config.NewFileSource(&config.FileInfo{
|
|
Filepath: configFilePath,
|
|
RefreshInterval: time.Duration(refreshInterval) * time.Second,
|
|
}))
|
|
if err != nil {
|
|
log.Warn("init baseTable with file failed", zap.String("configFile", configFilePath), zap.Error(err))
|
|
return
|
|
}
|
|
}
|
|
|
|
func (gp *BaseTable) initConfigsFromRemote(refreshInterval int) {
|
|
etcdConfig := EtcdConfig{}
|
|
etcdConfig.Init(gp)
|
|
etcdConfig.Endpoints.PanicIfEmpty = false
|
|
etcdConfig.RootPath.PanicIfEmpty = false
|
|
if etcdConfig.Endpoints.GetValue() == "" {
|
|
return
|
|
}
|
|
if etcdConfig.UseEmbedEtcd.GetAsBool() && !etcd.HasServer() {
|
|
return
|
|
}
|
|
info := &config.EtcdInfo{
|
|
UseEmbed: etcdConfig.UseEmbedEtcd.GetAsBool(),
|
|
UseSSL: etcdConfig.EtcdUseSSL.GetAsBool(),
|
|
Endpoints: etcdConfig.Endpoints.GetAsStrings(),
|
|
CertFile: etcdConfig.EtcdTLSCert.GetValue(),
|
|
KeyFile: etcdConfig.EtcdTLSKey.GetValue(),
|
|
CaCertFile: etcdConfig.EtcdTLSCACert.GetValue(),
|
|
MinVersion: etcdConfig.EtcdTLSMinVersion.GetValue(),
|
|
KeyPrefix: etcdConfig.RootPath.GetValue(),
|
|
RefreshInterval: time.Duration(refreshInterval) * time.Second,
|
|
}
|
|
|
|
s, err := config.NewEtcdSource(info)
|
|
if err != nil {
|
|
log.Info("init with etcd failed", zap.Error(err))
|
|
return
|
|
}
|
|
gp.mgr.AddSource(s)
|
|
s.SetEventHandler(gp.mgr)
|
|
}
|
|
|
|
// GetConfigDir returns the config directory
|
|
func (gp *BaseTable) GetConfigDir() string {
|
|
return gp.configDir
|
|
}
|
|
|
|
func (gp *BaseTable) initConfPath() string {
|
|
// check if user set conf dir through env
|
|
configDir, err := gp.mgr.GetConfig("MILVUSCONF")
|
|
if err != nil {
|
|
runPath, err := os.Getwd()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
configDir = runPath + "/configs"
|
|
if _, err := os.Stat(configDir); err != nil {
|
|
_, fpath, _, _ := runtime.Caller(0)
|
|
configDir = path.Dir(fpath) + "/../../../configs"
|
|
}
|
|
}
|
|
return configDir
|
|
}
|
|
|
|
func (gp *BaseTable) Configs() map[string]string {
|
|
return gp.mgr.GetConfigs()
|
|
}
|
|
|
|
// Load loads an object with @key.
|
|
func (gp *BaseTable) Load(key string) (string, error) {
|
|
return gp.mgr.GetConfig(key)
|
|
}
|
|
|
|
// LoadWithDefault loads an object with @key. If the object does not exist, @defaultValue will be returned.
|
|
func (gp *BaseTable) LoadWithDefault(key, defaultValue string) string {
|
|
str, err := gp.mgr.GetConfig(key)
|
|
if err != nil {
|
|
return defaultValue
|
|
}
|
|
return str
|
|
}
|
|
|
|
func (gp *BaseTable) Get(key string) string {
|
|
value, err := gp.mgr.GetConfig(key)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
return value
|
|
}
|
|
|
|
func (gp *BaseTable) GetConfigSubSet(pattern string) map[string]string {
|
|
return gp.mgr.GetBy(config.WithPrefix(pattern), config.RemovePrefix(pattern))
|
|
}
|
|
|
|
func (gp *BaseTable) GetComponentConfigurations(ctx context.Context, componentName string, sub string) map[string]string {
|
|
allownPrefixs := append(globalConfigPrefixs(), componentName+".")
|
|
return gp.mgr.GetBy(config.WithSubstr(sub), config.WithOneOfPrefixs(allownPrefixs...))
|
|
}
|
|
|
|
func (gp *BaseTable) GetAll() map[string]string {
|
|
return gp.mgr.GetConfigs()
|
|
}
|
|
|
|
// Remove Config by key
|
|
func (gp *BaseTable) Remove(key string) error {
|
|
gp.mgr.DeleteConfig(key)
|
|
return nil
|
|
}
|
|
|
|
// Update Config
|
|
func (gp *BaseTable) Save(key, value string) error {
|
|
gp.mgr.SetConfig(key, value)
|
|
return nil
|
|
}
|
|
|
|
// Reset Config to default value
|
|
func (gp *BaseTable) Reset(key string) error {
|
|
gp.mgr.ResetConfig(key)
|
|
return nil
|
|
}
|
|
|
|
func (gp *BaseTable) ParseBool(key string, defaultValue bool) bool {
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatBool(defaultValue))
|
|
value, err := strconv.ParseBool(valueStr)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return value
|
|
}
|
|
|
|
func (gp *BaseTable) ParseFloatWithDefault(key string, defaultValue float64) float64 {
|
|
valueStr := gp.LoadWithDefault(key, fmt.Sprintf("%f", defaultValue))
|
|
value, err := strconv.ParseFloat(valueStr, 64)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return value
|
|
}
|
|
|
|
func (gp *BaseTable) ParseInt64WithDefault(key string, defaultValue int64) int64 {
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatInt(defaultValue, 10))
|
|
value, err := strconv.ParseInt(valueStr, 10, 64)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return value
|
|
}
|
|
|
|
func (gp *BaseTable) ParseInt32WithDefault(key string, defaultValue int32) int32 {
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatInt(int64(defaultValue), 10))
|
|
value, err := strconv.ParseInt(valueStr, 10, 32)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return int32(value)
|
|
}
|
|
|
|
func (gp *BaseTable) ParseIntWithDefault(key string, defaultValue int) int {
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatInt(int64(defaultValue), 10))
|
|
value, err := strconv.Atoi(valueStr)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return value
|
|
}
|
|
|
|
// InitLogCfg init log of the base table
|
|
func (gp *BaseTable) InitLogCfg() {
|
|
gp.Log = log.Config{}
|
|
format := gp.LoadWithDefault("log.format", DefaultLogFormat)
|
|
gp.Log.Format = format
|
|
level := gp.LoadWithDefault("log.level", DefaultLogLevelForBase)
|
|
gp.Log.Level = level
|
|
gp.Log.File.MaxSize = gp.ParseIntWithDefault("log.file.maxSize", DefaultMaxSize)
|
|
gp.Log.File.MaxBackups = gp.ParseIntWithDefault("log.file.maxBackups", DefaultMaxBackups)
|
|
gp.Log.File.MaxDays = gp.ParseIntWithDefault("log.file.maxAge", DefaultMaxAge)
|
|
gp.Log.File.RootPath = gp.LoadWithDefault("log.file.rootPath", DefaultRootPath)
|
|
|
|
grpclog, err := gp.Load("grpc.log.level")
|
|
if err != nil {
|
|
gp.Log.GrpcLevel = DefaultLogLevel
|
|
} else {
|
|
gp.Log.GrpcLevel = strings.ToUpper(grpclog)
|
|
}
|
|
|
|
}
|