2020-11-16 21:10:43 +08:00
|
|
|
// 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 (
|
2021-10-28 23:16:40 +08:00
|
|
|
"fmt"
|
2020-11-21 15:06:46 +08:00
|
|
|
"os"
|
2020-11-16 21:10:43 +08:00
|
|
|
"path"
|
|
|
|
"runtime"
|
2020-12-08 14:41:04 +08:00
|
|
|
"strconv"
|
2020-11-16 21:10:43 +08:00
|
|
|
"strings"
|
2022-03-10 10:35:59 +08:00
|
|
|
"sync"
|
2022-08-01 10:04:33 +08:00
|
|
|
"time"
|
2020-11-16 21:10:43 +08:00
|
|
|
|
2022-08-01 10:04:33 +08:00
|
|
|
config "github.com/milvus-io/milvus/internal/config"
|
2021-09-11 14:40:01 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
2022-02-09 18:55:46 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/logutil"
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
2022-06-16 17:28:11 +08:00
|
|
|
"go.uber.org/zap"
|
2020-11-16 21:10:43 +08:00
|
|
|
)
|
|
|
|
|
2021-10-26 22:35:05 +08:00
|
|
|
// UniqueID is type alias of typeutil.UniqueID
|
2020-12-08 14:41:04 +08:00
|
|
|
type UniqueID = typeutil.UniqueID
|
|
|
|
|
2022-03-02 18:51:55 +08:00
|
|
|
const (
|
2022-05-03 08:39:49 +08:00
|
|
|
DefaultMilvusYaml = "milvus.yaml"
|
|
|
|
DefaultEasyloggingYaml = "easylogging.yaml"
|
2022-03-02 18:51:55 +08:00
|
|
|
DefaultMinioHost = "localhost"
|
|
|
|
DefaultMinioPort = "9000"
|
|
|
|
DefaultMinioAccessKey = "minioadmin"
|
|
|
|
DefaultMinioSecretAccessKey = "minioadmin"
|
|
|
|
DefaultMinioUseSSL = "false"
|
|
|
|
DefaultMinioBucketName = "a-bucket"
|
2022-06-02 19:42:03 +08:00
|
|
|
DefaultMinioUseIAM = "false"
|
|
|
|
DefaultMinioIAMEndpoint = ""
|
2022-03-02 18:51:55 +08:00
|
|
|
DefaultEtcdEndpoints = "localhost:2379"
|
|
|
|
DefaultInsertBufferSize = "16777216"
|
|
|
|
DefaultEnvPrefix = "milvus"
|
2022-09-23 09:50:52 +08:00
|
|
|
|
|
|
|
DefaultLogFormat = "text"
|
|
|
|
DefaultLogLevelForBase = "debug"
|
|
|
|
DefaultRootPath = ""
|
|
|
|
DefaultMaxSize = 300
|
|
|
|
DefaultMaxAge = 10
|
|
|
|
DefaultMaxBackups = 20
|
2022-03-02 18:51:55 +08:00
|
|
|
)
|
2021-11-10 14:27:37 +08:00
|
|
|
|
2022-05-03 08:39:49 +08:00
|
|
|
var defaultYaml = DefaultMilvusYaml
|
2022-03-10 10:35:59 +08:00
|
|
|
|
2022-01-05 13:56:05 +08:00
|
|
|
// Base abstracts BaseTable
|
|
|
|
// TODO: it's never used, consider to substitute BaseTable or to remove it
|
2020-11-16 21:10:43 +08:00
|
|
|
type Base interface {
|
|
|
|
Load(key string) (string, error)
|
|
|
|
LoadRange(key, endKey string, limit int) ([]string, []string, error)
|
|
|
|
LoadYaml(fileName string) error
|
|
|
|
Remove(key string) error
|
|
|
|
Save(key, value string) error
|
|
|
|
Init()
|
|
|
|
}
|
|
|
|
|
2022-01-05 13:56:05 +08:00
|
|
|
// BaseTable the basics of paramtable
|
2020-11-16 21:10:43 +08:00
|
|
|
type BaseTable struct {
|
2022-08-01 10:04:33 +08:00
|
|
|
once sync.Once
|
|
|
|
mgr *config.Manager
|
|
|
|
// params *memkv.MemoryKV
|
|
|
|
|
2021-09-11 14:40:01 +08:00
|
|
|
configDir string
|
2021-09-26 21:18:11 +08:00
|
|
|
|
2021-12-14 18:31:25 +08:00
|
|
|
RoleName string
|
|
|
|
Log log.Config
|
|
|
|
LogCfgFunc func(log.Config)
|
2022-09-23 09:50:52 +08:00
|
|
|
|
|
|
|
YamlFile string
|
2020-11-16 21:10:43 +08:00
|
|
|
}
|
|
|
|
|
2022-03-10 10:35:59 +08:00
|
|
|
// GlobalInitWithYaml initializes the param table with the given yaml.
|
|
|
|
// We will update the global DefaultYaml variable directly, once and for all.
|
|
|
|
// GlobalInitWithYaml shall be called at the very beginning before initiating the base table.
|
|
|
|
// GlobalInitWithYaml should be called only in standalone and embedded Milvus.
|
|
|
|
func (gp *BaseTable) GlobalInitWithYaml(yaml string) {
|
|
|
|
gp.once.Do(func() {
|
2022-05-03 08:39:49 +08:00
|
|
|
defaultYaml = yaml
|
2022-03-10 10:35:59 +08:00
|
|
|
gp.Init()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Init initializes the param table.
|
2020-11-16 21:10:43 +08:00
|
|
|
func (gp *BaseTable) Init() {
|
2022-08-01 10:04:33 +08:00
|
|
|
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
|
|
|
|
}
|
2022-09-23 09:50:52 +08:00
|
|
|
if gp.YamlFile == "" {
|
|
|
|
gp.YamlFile = defaultYaml
|
|
|
|
}
|
2022-08-02 21:26:33 +08:00
|
|
|
gp.initConfigsFromLocal(formatter)
|
|
|
|
gp.initConfigsFromRemote(formatter)
|
|
|
|
gp.InitLogCfg()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) initConfigsFromLocal(formatter func(key string) string) {
|
|
|
|
var err error
|
2022-08-01 10:04:33 +08:00
|
|
|
gp.mgr, err = config.Init(config.WithEnvSource(formatter))
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-26 19:46:17 +08:00
|
|
|
gp.configDir = gp.initConfPath()
|
2022-09-23 09:50:52 +08:00
|
|
|
configFilePath := gp.configDir + "/" + gp.YamlFile
|
2022-08-01 10:04:33 +08:00
|
|
|
gp.mgr, err = config.Init(config.WithEnvSource(formatter), config.WithFilesSource(configFilePath))
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("init baseTable with file failed", zap.String("configFile", configFilePath), zap.Error(err))
|
|
|
|
return
|
|
|
|
}
|
2022-08-02 21:26:33 +08:00
|
|
|
}
|
2022-08-01 10:04:33 +08:00
|
|
|
|
2022-08-02 21:26:33 +08:00
|
|
|
func (gp *BaseTable) initConfigsFromRemote(formatter func(key string) string) {
|
2022-08-01 10:04:33 +08:00
|
|
|
endpoints, err := gp.mgr.GetConfig("etcd.endpoints")
|
|
|
|
if err != nil {
|
|
|
|
log.Info("cannot find etcd.endpoints")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rootPath, err := gp.mgr.GetConfig("etcd.rootPath")
|
|
|
|
if err != nil {
|
|
|
|
log.Info("cannot find etcd.rootPath")
|
|
|
|
return
|
|
|
|
}
|
2022-08-02 21:26:33 +08:00
|
|
|
|
2022-09-23 09:50:52 +08:00
|
|
|
configFilePath := gp.configDir + "/" + gp.YamlFile
|
2022-08-01 10:04:33 +08:00
|
|
|
gp.mgr, err = config.Init(config.WithEnvSource(formatter),
|
|
|
|
config.WithFilesSource(configFilePath),
|
|
|
|
config.WithEtcdSource(&config.EtcdInfo{
|
|
|
|
Endpoints: strings.Split(endpoints, ","),
|
|
|
|
KeyPrefix: rootPath,
|
|
|
|
RefreshMode: config.ModeInterval,
|
|
|
|
RefreshInterval: 10 * time.Second,
|
|
|
|
}))
|
|
|
|
if err != nil {
|
|
|
|
log.Info("init with etcd failed", zap.Error(err))
|
|
|
|
return
|
|
|
|
}
|
2020-12-31 11:20:03 +08:00
|
|
|
}
|
|
|
|
|
2022-01-06 13:49:27 +08:00
|
|
|
// GetConfigDir returns the config directory
|
2021-09-11 14:40:01 +08:00
|
|
|
func (gp *BaseTable) GetConfigDir() string {
|
|
|
|
return gp.configDir
|
|
|
|
}
|
|
|
|
|
2021-09-26 19:46:17 +08:00
|
|
|
func (gp *BaseTable) initConfPath() string {
|
|
|
|
// check if user set conf dir through env
|
2022-08-01 10:04:33 +08:00
|
|
|
configDir, err := gp.mgr.GetConfig("MILVUSCONF")
|
|
|
|
if err != nil {
|
2021-09-26 19:46:17 +08:00
|
|
|
runPath, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2022-09-26 17:36:54 +08:00
|
|
|
configDir = runPath + "/configs"
|
2021-09-26 19:46:17 +08:00
|
|
|
if _, err := os.Stat(configDir); err != nil {
|
|
|
|
_, fpath, _, _ := runtime.Caller(0)
|
2022-08-23 13:24:53 +08:00
|
|
|
configDir = path.Dir(fpath) + "/../../../configs"
|
2021-09-26 19:46:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return configDir
|
|
|
|
}
|
|
|
|
|
2022-09-23 09:50:52 +08:00
|
|
|
func (gp *BaseTable) Configs() map[string]string {
|
|
|
|
return gp.mgr.Configs()
|
|
|
|
}
|
|
|
|
|
2021-12-03 17:09:43 +08:00
|
|
|
// Load loads an object with @key.
|
2020-11-16 21:10:43 +08:00
|
|
|
func (gp *BaseTable) Load(key string) (string, error) {
|
2022-08-01 10:04:33 +08:00
|
|
|
return gp.mgr.GetConfig(key)
|
2020-11-16 21:10:43 +08:00
|
|
|
}
|
|
|
|
|
2022-06-07 14:52:06 +08:00
|
|
|
// LoadWithPriority loads an object with multiple @keys, return the first successful value.
|
2022-03-04 11:17:56 +08:00
|
|
|
// If all keys not exist, return error.
|
|
|
|
// This is to be compatible with old configuration file.
|
2022-06-07 14:52:06 +08:00
|
|
|
func (gp *BaseTable) LoadWithPriority(keys []string) (string, error) {
|
2022-03-04 11:17:56 +08:00
|
|
|
for _, key := range keys {
|
2022-08-01 10:04:33 +08:00
|
|
|
if str, err := gp.mgr.GetConfig(key); err == nil {
|
2022-03-04 11:17:56 +08:00
|
|
|
return str, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "", fmt.Errorf("invalid keys: %v", keys)
|
|
|
|
}
|
|
|
|
|
2021-12-03 17:09:43 +08:00
|
|
|
// LoadWithDefault loads an object with @key. If the object does not exist, @defaultValue will be returned.
|
2021-10-29 11:06:37 +08:00
|
|
|
func (gp *BaseTable) LoadWithDefault(key, defaultValue string) string {
|
2022-08-01 10:04:33 +08:00
|
|
|
str, err := gp.mgr.GetConfig(key)
|
|
|
|
if err != nil {
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return str
|
2021-08-24 09:45:51 +08:00
|
|
|
}
|
|
|
|
|
2022-03-04 11:17:56 +08:00
|
|
|
// LoadWithDefault2 loads an object with multiple @keys, return the first successful value.
|
|
|
|
// If all keys not exist, return @defaultValue.
|
|
|
|
// This is to be compatible with old configuration file.
|
|
|
|
func (gp *BaseTable) LoadWithDefault2(keys []string, defaultValue string) string {
|
|
|
|
for _, key := range keys {
|
2022-08-01 10:04:33 +08:00
|
|
|
str, err := gp.mgr.GetConfig(key)
|
|
|
|
if err == nil {
|
2022-03-04 11:17:56 +08:00
|
|
|
return str
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
|
2022-04-12 19:47:33 +08:00
|
|
|
func (gp *BaseTable) Get(key string) string {
|
2022-08-01 10:04:33 +08:00
|
|
|
value, err := gp.mgr.GetConfig(key)
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return value
|
2022-04-12 19:47:33 +08:00
|
|
|
}
|
|
|
|
|
2022-08-03 01:12:33 +08:00
|
|
|
func (gp *BaseTable) GetByPattern(pattern string) map[string]string {
|
2022-08-25 11:02:53 +08:00
|
|
|
return gp.mgr.GetConfigsByPattern(pattern, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) GetConfigSubSet(pattern string) map[string]string {
|
|
|
|
return gp.mgr.GetConfigsByPattern(pattern, false)
|
2022-08-03 01:12:33 +08:00
|
|
|
}
|
|
|
|
|
2022-08-01 10:04:33 +08:00
|
|
|
// For compatible reason, only visiable for Test
|
2020-11-16 21:10:43 +08:00
|
|
|
func (gp *BaseTable) Remove(key string) error {
|
2022-08-01 10:04:33 +08:00
|
|
|
gp.mgr.DeleteConfig(key)
|
|
|
|
return nil
|
2020-11-16 21:10:43 +08:00
|
|
|
}
|
|
|
|
|
2022-08-01 10:04:33 +08:00
|
|
|
// For compatible reason, only visiable for Test
|
2020-11-16 21:10:43 +08:00
|
|
|
func (gp *BaseTable) Save(key, value string) error {
|
2022-08-01 10:04:33 +08:00
|
|
|
gp.mgr.SetConfig(key, value)
|
|
|
|
return nil
|
2020-11-16 21:10:43 +08:00
|
|
|
}
|
2020-12-08 14:41:04 +08:00
|
|
|
|
2021-08-24 09:45:51 +08:00
|
|
|
func (gp *BaseTable) ParseBool(key string, defaultValue bool) bool {
|
2021-10-28 23:16:40 +08:00
|
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatBool(defaultValue))
|
2021-08-24 09:45:51 +08:00
|
|
|
value, err := strconv.ParseBool(valueStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
func (gp *BaseTable) ParseFloat(key string) float64 {
|
|
|
|
valueStr, err := gp.Load(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
value, err := strconv.ParseFloat(valueStr, 64)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2021-10-28 23:16:40 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
func (gp *BaseTable) ParseInt64(key string) int64 {
|
|
|
|
valueStr, err := gp.Load(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-09-14 18:35:48 +08:00
|
|
|
value, err := strconv.ParseInt(valueStr, 10, 64)
|
2020-12-08 14:41:04 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-09-14 18:35:48 +08:00
|
|
|
return value
|
2020-12-08 14:41:04 +08:00
|
|
|
}
|
|
|
|
|
2021-10-28 23:16:40 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
func (gp *BaseTable) ParseInt32(key string) int32 {
|
|
|
|
valueStr, err := gp.Load(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-09-14 18:35:48 +08:00
|
|
|
value, err := strconv.ParseInt(valueStr, 10, 32)
|
2020-12-08 14:41:04 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return int32(value)
|
|
|
|
}
|
|
|
|
|
2021-10-28 23:16:40 +08:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
func (gp *BaseTable) ParseInt(key string) int {
|
|
|
|
valueStr, err := gp.Load(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
value, err := strconv.Atoi(valueStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2021-10-28 23:16:40 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
// package methods
|
2021-12-21 21:04:25 +08:00
|
|
|
// ConvertRangeToIntRange converts a range of strings to a range of ints.
|
2020-12-08 14:41:04 +08:00
|
|
|
func ConvertRangeToIntRange(rangeStr, sep string) []int {
|
|
|
|
items := strings.Split(rangeStr, sep)
|
|
|
|
if len(items) != 2 {
|
|
|
|
panic("Illegal range ")
|
|
|
|
}
|
|
|
|
|
|
|
|
startStr := items[0]
|
|
|
|
endStr := items[1]
|
|
|
|
start, err := strconv.Atoi(startStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
end, err := strconv.Atoi(endStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if start < 0 || end < 0 {
|
|
|
|
panic("Illegal range value")
|
|
|
|
}
|
|
|
|
if start > end {
|
|
|
|
panic("Illegal range value, start > end")
|
|
|
|
}
|
|
|
|
return []int{start, end}
|
|
|
|
}
|
|
|
|
|
2022-01-04 10:47:27 +08:00
|
|
|
// ConvertRangeToIntSlice convert given @rangeStr & @sep to a slice of ints.
|
2020-12-08 14:41:04 +08:00
|
|
|
func ConvertRangeToIntSlice(rangeStr, sep string) []int {
|
|
|
|
rangeSlice := ConvertRangeToIntRange(rangeStr, sep)
|
|
|
|
start, end := rangeSlice[0], rangeSlice[1]
|
|
|
|
var ret []int
|
|
|
|
for i := start; i < end; i++ {
|
|
|
|
ret = append(ret, i)
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2021-09-26 21:18:11 +08:00
|
|
|
|
2022-01-04 10:47:27 +08:00
|
|
|
// InitLogCfg init log of the base table
|
2021-10-01 08:52:50 +08:00
|
|
|
func (gp *BaseTable) InitLogCfg() {
|
2021-09-26 21:18:11 +08:00
|
|
|
gp.Log = log.Config{}
|
2022-09-23 09:50:52 +08:00
|
|
|
format := gp.LoadWithDefault("log.format", DefaultLogFormat)
|
2021-09-26 21:18:11 +08:00
|
|
|
gp.Log.Format = format
|
2022-09-23 09:50:52 +08:00
|
|
|
level := gp.LoadWithDefault("log.level", DefaultLogLevelForBase)
|
2021-09-26 21:18:11 +08:00
|
|
|
gp.Log.Level = level
|
2022-09-23 09:50:52 +08:00
|
|
|
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)
|
2021-10-01 08:52:50 +08:00
|
|
|
}
|
|
|
|
|
2022-01-04 10:47:27 +08:00
|
|
|
// SetLogConfig set log config of the base table
|
2021-12-28 23:12:46 +08:00
|
|
|
func (gp *BaseTable) SetLogConfig() {
|
|
|
|
gp.LogCfgFunc = func(cfg log.Config) {
|
2022-05-05 10:35:50 +08:00
|
|
|
var err error
|
|
|
|
grpclog, err := gp.Load("grpc.log.level")
|
|
|
|
if err != nil {
|
|
|
|
cfg.GrpcLevel = DefaultLogLevel
|
|
|
|
} else {
|
|
|
|
cfg.GrpcLevel = strings.ToUpper(grpclog)
|
|
|
|
}
|
2021-12-28 23:12:46 +08:00
|
|
|
logutil.SetupLogger(&cfg)
|
|
|
|
defer log.Sync()
|
|
|
|
}
|
2021-10-01 08:52:50 +08:00
|
|
|
}
|
|
|
|
|
2022-01-04 10:47:27 +08:00
|
|
|
// SetLogger sets the logger file by given id
|
2021-10-01 08:52:50 +08:00
|
|
|
func (gp *BaseTable) SetLogger(id UniqueID) {
|
2022-09-23 09:50:52 +08:00
|
|
|
rootPath := gp.LoadWithDefault("log.file.rootPath", DefaultRootPath)
|
2021-10-27 14:44:24 +08:00
|
|
|
if rootPath != "" {
|
2021-10-01 08:52:50 +08:00
|
|
|
if id < 0 {
|
|
|
|
gp.Log.File.Filename = path.Join(rootPath, gp.RoleName+".log")
|
|
|
|
} else {
|
|
|
|
gp.Log.File.Filename = path.Join(rootPath, gp.RoleName+"-"+strconv.FormatInt(id, 10)+".log")
|
|
|
|
}
|
2021-09-26 21:18:11 +08:00
|
|
|
} else {
|
|
|
|
gp.Log.File.Filename = ""
|
|
|
|
}
|
2021-10-01 08:52:50 +08:00
|
|
|
|
2021-12-14 18:31:25 +08:00
|
|
|
if gp.LogCfgFunc != nil {
|
|
|
|
gp.LogCfgFunc(gp.Log)
|
2021-10-01 08:52:50 +08:00
|
|
|
}
|
2021-09-26 21:18:11 +08:00
|
|
|
}
|