2021-04-19 13:50:12 +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.
|
|
|
|
|
2021-01-15 14:38:36 +08:00
|
|
|
package indexnode
|
2020-12-10 17:55:55 +08:00
|
|
|
|
|
|
|
import (
|
2021-01-29 17:08:31 +08:00
|
|
|
"bytes"
|
2021-03-10 09:56:09 +08:00
|
|
|
"fmt"
|
|
|
|
"path"
|
2020-12-10 17:55:55 +08:00
|
|
|
"strconv"
|
2021-02-06 13:39:15 +08:00
|
|
|
"sync"
|
2020-12-10 17:55:55 +08:00
|
|
|
|
2021-03-10 09:56:09 +08:00
|
|
|
"go.uber.org/zap"
|
|
|
|
|
2021-01-29 17:08:31 +08:00
|
|
|
"github.com/spf13/cast"
|
|
|
|
"github.com/spf13/viper"
|
2021-03-10 09:56:09 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/log"
|
2021-03-12 14:22:09 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb"
|
2020-12-10 17:55:55 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/util/paramtable"
|
|
|
|
)
|
|
|
|
|
2021-01-29 17:08:31 +08:00
|
|
|
const (
|
|
|
|
StartParamsKey = "START_PARAMS"
|
|
|
|
)
|
|
|
|
|
2020-12-10 17:55:55 +08:00
|
|
|
type ParamTable struct {
|
|
|
|
paramtable.BaseTable
|
|
|
|
|
2021-01-29 17:08:31 +08:00
|
|
|
IP string
|
2020-12-10 17:55:55 +08:00
|
|
|
Address string
|
|
|
|
Port int
|
|
|
|
|
2021-01-20 18:26:20 +08:00
|
|
|
NodeID int64
|
|
|
|
|
2020-12-10 17:55:55 +08:00
|
|
|
MasterAddress string
|
|
|
|
|
2020-12-22 08:14:36 +08:00
|
|
|
MinIOAddress string
|
|
|
|
MinIOAccessKeyID string
|
|
|
|
MinIOSecretAccessKey string
|
|
|
|
MinIOUseSSL bool
|
2021-01-05 15:58:13 +08:00
|
|
|
MinioBucketName string
|
2021-03-10 09:56:09 +08:00
|
|
|
|
|
|
|
Log log.Config
|
2020-12-10 17:55:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var Params ParamTable
|
2021-02-06 13:39:15 +08:00
|
|
|
var once sync.Once
|
2020-12-10 17:55:55 +08:00
|
|
|
|
|
|
|
func (pt *ParamTable) Init() {
|
2021-02-06 13:39:15 +08:00
|
|
|
once.Do(func() {
|
|
|
|
pt.BaseTable.Init()
|
2021-03-12 19:47:37 +08:00
|
|
|
pt.initLogCfg()
|
2021-02-06 13:39:15 +08:00
|
|
|
pt.initParams()
|
|
|
|
})
|
2021-01-29 17:08:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pt *ParamTable) initParams() {
|
2020-12-30 16:41:24 +08:00
|
|
|
pt.initMinIOAddress()
|
|
|
|
pt.initMinIOAccessKeyID()
|
|
|
|
pt.initMinIOSecretAccessKey()
|
|
|
|
pt.initMinIOUseSSL()
|
2021-01-05 15:58:13 +08:00
|
|
|
pt.initMinioBucketName()
|
2020-12-10 17:55:55 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
func (pt *ParamTable) LoadConfigFromInitParams(initParams *internalpb.InitParams) error {
|
2021-01-29 17:08:31 +08:00
|
|
|
pt.NodeID = initParams.NodeID
|
2020-12-10 17:55:55 +08:00
|
|
|
|
2021-01-29 17:08:31 +08:00
|
|
|
config := viper.New()
|
|
|
|
config.SetConfigType("yaml")
|
|
|
|
for _, pair := range initParams.StartParams {
|
|
|
|
if pair.Key == StartParamsKey {
|
|
|
|
err := config.ReadConfig(bytes.NewBuffer([]byte(pair.Value)))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
break
|
2020-12-10 17:55:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 17:08:31 +08:00
|
|
|
for _, key := range config.AllKeys() {
|
|
|
|
val := config.Get(key)
|
|
|
|
str, err := cast.ToStringE(val)
|
2021-01-20 18:26:20 +08:00
|
|
|
if err != nil {
|
2021-01-29 17:08:31 +08:00
|
|
|
switch val := val.(type) {
|
|
|
|
case []interface{}:
|
|
|
|
str = str[:0]
|
|
|
|
for _, v := range val {
|
|
|
|
ss, err := cast.ToStringE(v)
|
|
|
|
if err != nil {
|
2021-03-10 09:56:09 +08:00
|
|
|
log.Debug("indexnode", zap.String("error", err.Error()))
|
2021-01-29 17:08:31 +08:00
|
|
|
}
|
|
|
|
if len(str) == 0 {
|
|
|
|
str = ss
|
|
|
|
} else {
|
|
|
|
str = str + "," + ss
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2021-03-10 09:56:09 +08:00
|
|
|
log.Debug("indexnode", zap.String("undefine config type, key=", key))
|
2021-01-20 18:26:20 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-29 17:08:31 +08:00
|
|
|
err = pt.Save(key, str)
|
2021-01-20 18:26:20 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-29 17:08:31 +08:00
|
|
|
pt.initParams()
|
|
|
|
return nil
|
2021-01-20 18:26:20 +08:00
|
|
|
}
|
|
|
|
|
2020-12-22 08:14:36 +08:00
|
|
|
func (pt *ParamTable) initMinIOAddress() {
|
|
|
|
ret, err := pt.Load("_MinioAddress")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pt.MinIOAddress = ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pt *ParamTable) initMinIOAccessKeyID() {
|
|
|
|
ret, err := pt.Load("minio.accessKeyID")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pt.MinIOAccessKeyID = ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pt *ParamTable) initMinIOSecretAccessKey() {
|
|
|
|
ret, err := pt.Load("minio.secretAccessKey")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pt.MinIOSecretAccessKey = ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pt *ParamTable) initMinIOUseSSL() {
|
|
|
|
ret, err := pt.Load("minio.useSSL")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pt.MinIOUseSSL, err = strconv.ParseBool(ret)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
2021-01-05 15:58:13 +08:00
|
|
|
|
|
|
|
func (pt *ParamTable) initMinioBucketName() {
|
|
|
|
bucketName, err := pt.Load("minio.bucketName")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pt.MinioBucketName = bucketName
|
|
|
|
}
|
2021-03-10 09:56:09 +08:00
|
|
|
|
|
|
|
func (pt *ParamTable) initLogCfg() {
|
|
|
|
pt.Log = log.Config{}
|
|
|
|
format, err := pt.Load("log.format")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pt.Log.Format = format
|
|
|
|
level, err := pt.Load("log.level")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pt.Log.Level = level
|
|
|
|
devStr, err := pt.Load("log.dev")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
dev, err := strconv.ParseBool(devStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pt.Log.Development = dev
|
|
|
|
pt.Log.File.MaxSize = pt.ParseInt("log.file.maxSize")
|
|
|
|
pt.Log.File.MaxBackups = pt.ParseInt("log.file.maxBackups")
|
|
|
|
pt.Log.File.MaxDays = pt.ParseInt("log.file.maxAge")
|
|
|
|
rootPath, err := pt.Load("log.file.rootPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-03-12 19:47:37 +08:00
|
|
|
if len(rootPath) != 0 {
|
|
|
|
pt.Log.File.Filename = path.Join(rootPath, fmt.Sprintf("indexnode-%d.log", pt.NodeID))
|
|
|
|
} else {
|
|
|
|
pt.Log.File.Filename = ""
|
|
|
|
}
|
2021-03-10 09:56:09 +08:00
|
|
|
}
|