base_table.go 14.0 KB
Newer Older
C
cai.zhang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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 (
X
Xiaofan 已提交
15
	"fmt"
C
cai.zhang 已提交
16
	"os"
C
cai.zhang 已提交
17 18
	"path"
	"runtime"
X
XuanYang-cn 已提交
19
	"strconv"
C
cai.zhang 已提交
20
	"strings"
21
	"sync"
22
	"syscall"
C
cai.zhang 已提交
23

G
godchen 已提交
24 25 26
	"github.com/spf13/cast"
	"github.com/spf13/viper"

X
Xiangyu Wang 已提交
27
	memkv "github.com/milvus-io/milvus/internal/kv/mem"
28 29
	"github.com/milvus-io/milvus/internal/log"
	"github.com/milvus-io/milvus/internal/proto/commonpb"
X
Xiaofan 已提交
30
	"github.com/milvus-io/milvus/internal/util/logutil"
X
Xiangyu Wang 已提交
31
	"github.com/milvus-io/milvus/internal/util/typeutil"
C
cai.zhang 已提交
32 33
)

34
// UniqueID is type alias of typeutil.UniqueID
X
XuanYang-cn 已提交
35 36
type UniqueID = typeutil.UniqueID

37
const (
38 39
	DefaultMilvusYaml           = "milvus.yaml"
	DefaultEasyloggingYaml      = "easylogging.yaml"
40 41 42 43 44 45
	DefaultMinioHost            = "localhost"
	DefaultMinioPort            = "9000"
	DefaultMinioAccessKey       = "minioadmin"
	DefaultMinioSecretAccessKey = "minioadmin"
	DefaultMinioUseSSL          = "false"
	DefaultMinioBucketName      = "a-bucket"
46 47
	DefaultMinioUseIAM          = "false"
	DefaultMinioIAMEndpoint     = ""
48 49 50 51
	DefaultEtcdEndpoints        = "localhost:2379"
	DefaultInsertBufferSize     = "16777216"
	DefaultEnvPrefix            = "milvus"
)
52

53
var defaultYaml = DefaultMilvusYaml
54

55 56
// Base abstracts BaseTable
// TODO: it's never used, consider to substitute BaseTable or to remove it
C
cai.zhang 已提交
57 58 59 60 61 62 63 64 65
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()
}

66
// BaseTable the basics of paramtable
C
cai.zhang 已提交
67
type BaseTable struct {
68
	once      sync.Once
69 70
	params    *memkv.MemoryKV
	configDir string
71

72 73 74
	RoleName   string
	Log        log.Config
	LogCfgFunc func(log.Config)
C
cai.zhang 已提交
75 76
}

77 78 79 80 81 82
// 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() {
83
		defaultYaml = yaml
84 85 86 87 88
		gp.Init()
	})
}

// Init initializes the param table.
C
cai.zhang 已提交
89
func (gp *BaseTable) Init() {
Z
zhenshan.cao 已提交
90
	gp.params = memkv.NewMemoryKV()
91
	gp.configDir = gp.initConfPath()
92
	gp.loadFromYaml(defaultYaml)
J
jaime 已提交
93
	gp.tryLoadFromEnv()
X
Xiaofan 已提交
94
	gp.InitLogCfg()
S
sunby 已提交
95 96
}

97
// GetConfigDir returns the config directory
98 99 100 101
func (gp *BaseTable) GetConfigDir() string {
	return gp.configDir
}

102
// LoadFromKVPair saves given kv pair to paramtable
103 104 105 106 107 108 109 110 111 112
func (gp *BaseTable) LoadFromKVPair(kvPairs []*commonpb.KeyValuePair) error {
	for _, pair := range kvPairs {
		err := gp.Save(pair.Key, pair.Value)
		if err != nil {
			return err
		}
	}
	return nil
}

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
func (gp *BaseTable) initConfPath() string {
	// check if user set conf dir through env
	configDir, find := syscall.Getenv("MILVUSCONF")
	if !find {
		runPath, err := os.Getwd()
		if err != nil {
			panic(err)
		}
		configDir = runPath + "/configs/"
		if _, err := os.Stat(configDir); err != nil {
			_, fpath, _, _ := runtime.Caller(0)
			// TODO, this is a hack, need to find better solution for relative path
			configDir = path.Dir(fpath) + "/../../../configs/"
		}
	}
	return configDir
}

131 132
func (gp *BaseTable) loadFromYaml(file string) {
	if err := gp.LoadYaml(file); err != nil {
133 134 135 136
		panic(err)
	}
}

J
jaime 已提交
137 138 139 140 141 142
func (gp *BaseTable) tryLoadFromEnv() {
	gp.loadEtcdConfig()
	gp.loadMinioConfig()
	gp.loadMQConfig()
	gp.loadDataNodeConfig()
	gp.loadOtherEnvs()
C
cai.zhang 已提交
143 144
}

145
// Load loads an object with @key.
C
cai.zhang 已提交
146 147 148 149
func (gp *BaseTable) Load(key string) (string, error) {
	return gp.params.Load(strings.ToLower(key))
}

X
Xiaofan 已提交
150
// LoadWithPriority loads an object with multiple @keys, return the first successful value.
151 152
// If all keys not exist, return error.
// This is to be compatible with old configuration file.
X
Xiaofan 已提交
153
func (gp *BaseTable) LoadWithPriority(keys []string) (string, error) {
154 155 156 157 158 159 160 161
	for _, key := range keys {
		if str, err := gp.params.Load(strings.ToLower(key)); err == nil {
			return str, nil
		}
	}
	return "", fmt.Errorf("invalid keys: %v", keys)
}

162
// LoadWithDefault loads an object with @key. If the object does not exist, @defaultValue will be returned.
B
BIKI DAS 已提交
163
func (gp *BaseTable) LoadWithDefault(key, defaultValue string) string {
164 165 166
	return gp.params.LoadWithDefault(strings.ToLower(key), defaultValue)
}

167 168 169 170 171 172 173 174 175 176 177 178
// 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 {
		if str, err := gp.params.Load(strings.ToLower(key)); err == nil {
			return str
		}
	}
	return defaultValue
}

179
// LoadRange loads objects with range @startKey to @endKey with @limit number of objects.
C
cai.zhang 已提交
180 181 182 183 184 185
func (gp *BaseTable) LoadRange(key, endKey string, limit int) ([]string, []string, error) {
	return gp.params.LoadRange(strings.ToLower(key), strings.ToLower(endKey), limit)
}

func (gp *BaseTable) LoadYaml(fileName string) error {
	config := viper.New()
186 187 188
	configFile := gp.configDir + fileName
	if _, err := os.Stat(configFile); err != nil {
		panic("cannot access config file: " + configFile)
189 190 191
	}

	config.SetConfigFile(configFile)
C
cai.zhang 已提交
192 193 194 195 196
	if err := config.ReadInConfig(); err != nil {
		panic(err)
	}

	for _, key := range config.AllKeys() {
N
neza2017 已提交
197 198 199 200 201 202 203 204 205
		val := config.Get(key)
		str, err := cast.ToStringE(val)
		if err != nil {
			switch val := val.(type) {
			case []interface{}:
				str = str[:0]
				for _, v := range val {
					ss, err := cast.ToStringE(v)
					if err != nil {
206
						panic(err)
N
neza2017 已提交
207
					}
B
BIKI DAS 已提交
208
					if str == "" {
N
neza2017 已提交
209 210 211 212 213 214 215
						str = ss
					} else {
						str = str + "," + ss
					}
				}

			default:
216
				panic("undefined config type, key=" + key)
N
neza2017 已提交
217 218 219
			}
		}
		err = gp.params.Save(strings.ToLower(key), str)
C
cai.zhang 已提交
220 221 222
		if err != nil {
			panic(err)
		}
N
neza2017 已提交
223

C
cai.zhang 已提交
224 225 226 227 228
	}

	return nil
}

J
jaime 已提交
229 230 231 232
func (gp *BaseTable) Get(key string) string {
	return gp.params.Get(strings.ToLower(key))
}

C
cai.zhang 已提交
233 234 235 236 237 238 239
func (gp *BaseTable) Remove(key string) error {
	return gp.params.Remove(strings.ToLower(key))
}

func (gp *BaseTable) Save(key, value string) error {
	return gp.params.Save(strings.ToLower(key), value)
}
X
XuanYang-cn 已提交
240

241
func (gp *BaseTable) ParseBool(key string, defaultValue bool) bool {
X
Xiaofan 已提交
242
	valueStr := gp.LoadWithDefault(key, strconv.FormatBool(defaultValue))
243 244 245 246 247 248 249
	value, err := strconv.ParseBool(valueStr)
	if err != nil {
		panic(err)
	}
	return value
}

X
XuanYang-cn 已提交
250 251 252 253 254 255 256 257 258 259 260 261
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
}

X
Xiaofan 已提交
262 263 264 265 266 267 268 269 270
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
}

X
XuanYang-cn 已提交
271 272 273 274 275
func (gp *BaseTable) ParseInt64(key string) int64 {
	valueStr, err := gp.Load(key)
	if err != nil {
		panic(err)
	}
276
	value, err := strconv.ParseInt(valueStr, 10, 64)
X
XuanYang-cn 已提交
277 278 279
	if err != nil {
		panic(err)
	}
280
	return value
X
XuanYang-cn 已提交
281 282
}

X
Xiaofan 已提交
283 284 285 286 287 288 289 290 291
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
}

X
XuanYang-cn 已提交
292 293 294 295 296
func (gp *BaseTable) ParseInt32(key string) int32 {
	valueStr, err := gp.Load(key)
	if err != nil {
		panic(err)
	}
297
	value, err := strconv.ParseInt(valueStr, 10, 32)
X
XuanYang-cn 已提交
298 299 300 301 302 303
	if err != nil {
		panic(err)
	}
	return int32(value)
}

X
Xiaofan 已提交
304 305 306 307 308 309 310 311 312
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)
}

X
XuanYang-cn 已提交
313 314 315 316 317 318 319 320 321 322 323 324
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
}

X
Xiaofan 已提交
325 326 327 328 329 330 331 332 333
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
}

X
XuanYang-cn 已提交
334 335
// package methods

336
// ConvertRangeToIntRange converts a range of strings to a range of ints.
X
XuanYang-cn 已提交
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
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}
}

363
// ConvertRangeToIntSlice convert given @rangeStr & @sep to a slice of ints.
X
XuanYang-cn 已提交
364 365 366 367 368 369 370 371 372
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
}
373

374
// InitLogCfg init log of the base table
X
Xiaofan 已提交
375
func (gp *BaseTable) InitLogCfg() {
376 377 378 379 380 381 382 383 384 385 386 387 388 389
	gp.Log = log.Config{}
	format, err := gp.Load("log.format")
	if err != nil {
		panic(err)
	}
	gp.Log.Format = format
	level, err := gp.Load("log.level")
	if err != nil {
		panic(err)
	}
	gp.Log.Level = level
	gp.Log.File.MaxSize = gp.ParseInt("log.file.maxSize")
	gp.Log.File.MaxBackups = gp.ParseInt("log.file.maxBackups")
	gp.Log.File.MaxDays = gp.ParseInt("log.file.maxAge")
X
Xiaofan 已提交
390 391
}

392
// SetLogConfig set log config of the base table
393 394
func (gp *BaseTable) SetLogConfig() {
	gp.LogCfgFunc = func(cfg log.Config) {
X
Xiaofan 已提交
395 396 397 398 399 400 401
		var err error
		grpclog, err := gp.Load("grpc.log.level")
		if err != nil {
			cfg.GrpcLevel = DefaultLogLevel
		} else {
			cfg.GrpcLevel = strings.ToUpper(grpclog)
		}
402 403 404
		logutil.SetupLogger(&cfg)
		defer log.Sync()
	}
X
Xiaofan 已提交
405 406
}

407
// SetLogger sets the logger file by given id
X
Xiaofan 已提交
408
func (gp *BaseTable) SetLogger(id UniqueID) {
409 410 411 412
	rootPath, err := gp.Load("log.file.rootPath")
	if err != nil {
		panic(err)
	}
B
BIKI DAS 已提交
413
	if rootPath != "" {
X
Xiaofan 已提交
414 415 416 417 418
		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")
		}
419 420 421
	} else {
		gp.Log.File.Filename = ""
	}
X
Xiaofan 已提交
422

423 424
	if gp.LogCfgFunc != nil {
		gp.LogCfgFunc(gp.Log)
X
Xiaofan 已提交
425
	}
426
}
J
jaime 已提交
427

J
jaime 已提交
428 429 430 431 432 433 434 435
func (gp *BaseTable) loadKafkaConfig() {
	brokerList := os.Getenv("KAFKA_BROKER_LIST")
	if brokerList == "" {
		brokerList = gp.Get("kafka.brokerList")
	}
	gp.Save("_KafkaBrokerList", brokerList)
}

J
jaime 已提交
436 437 438
func (gp *BaseTable) loadPulsarConfig() {
	pulsarAddress := os.Getenv("PULSAR_ADDRESS")
	if pulsarAddress == "" {
J
jaime 已提交
439 440 441 442 443 444
		pulsarHost := gp.Get("pulsar.address")
		port := gp.Get("pulsar.port")

		if len(pulsarHost) != 0 && len(port) != 0 {
			pulsarAddress = "pulsar://" + pulsarHost + ":" + port
		}
J
jaime 已提交
445 446 447 448 449 450 451 452
	}

	gp.Save("_PulsarAddress", pulsarAddress)
}

func (gp *BaseTable) loadRocksMQConfig() {
	rocksmqPath := os.Getenv("ROCKSMQ_PATH")
	if rocksmqPath == "" {
J
jaime 已提交
453
		rocksmqPath = gp.Get("rocksmq.path")
J
jaime 已提交
454 455 456 457 458 459
	}
	gp.Save("_RocksmqPath", rocksmqPath)
}

func (gp *BaseTable) loadMQConfig() {
	gp.loadPulsarConfig()
J
jaime 已提交
460
	gp.loadKafkaConfig()
J
jaime 已提交
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
	gp.loadRocksMQConfig()
}

func (gp *BaseTable) loadEtcdConfig() {
	etcdEndpoints := os.Getenv("ETCD_ENDPOINTS")
	if etcdEndpoints == "" {
		etcdEndpoints = gp.LoadWithDefault("etcd.endpoints", DefaultEtcdEndpoints)
	}
	gp.Save("_EtcdEndpoints", etcdEndpoints)
}

func (gp *BaseTable) loadMinioConfig() {
	minioAddress := os.Getenv("MINIO_ADDRESS")
	if minioAddress == "" {
		minioHost := gp.LoadWithDefault("minio.address", DefaultMinioHost)
		port := gp.LoadWithDefault("minio.port", DefaultMinioPort)
		minioAddress = minioHost + ":" + port
	}
	gp.Save("_MinioAddress", minioAddress)

	minioAccessKey := os.Getenv("MINIO_ACCESS_KEY")
	if minioAccessKey == "" {
		minioAccessKey = gp.LoadWithDefault("minio.accessKeyID", DefaultMinioAccessKey)
	}
	gp.Save("_MinioAccessKeyID", minioAccessKey)

	minioSecretKey := os.Getenv("MINIO_SECRET_KEY")
	if minioSecretKey == "" {
		minioSecretKey = gp.LoadWithDefault("minio.secretAccessKey", DefaultMinioSecretAccessKey)
	}
	gp.Save("_MinioSecretAccessKey", minioSecretKey)

	minioUseSSL := os.Getenv("MINIO_USE_SSL")
	if minioUseSSL == "" {
		minioUseSSL = gp.LoadWithDefault("minio.useSSL", DefaultMinioUseSSL)
	}
	gp.Save("_MinioUseSSL", minioUseSSL)

	minioBucketName := os.Getenv("MINIO_BUCKET_NAME")
	if minioBucketName == "" {
		minioBucketName = gp.LoadWithDefault("minio.bucketName", DefaultMinioBucketName)
	}
	gp.Save("_MinioBucketName", minioBucketName)
504 505 506 507 508 509 510 511 512 513 514 515

	minioUseIAM := os.Getenv("MINIO_USE_IAM")
	if minioUseIAM == "" {
		minioUseIAM = gp.LoadWithDefault("minio.useIAM", DefaultMinioUseIAM)
	}
	gp.Save("_MinioUseIAM", minioUseIAM)

	minioIAMEndpoint := os.Getenv("MINIO_IAM_ENDPOINT")
	if minioIAMEndpoint == "" {
		minioIAMEndpoint = gp.LoadWithDefault("minio.iamEndpoint", DefaultMinioIAMEndpoint)
	}
	gp.Save("_MinioIAMEndpoint", minioIAMEndpoint)
J
jaime 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
}

func (gp *BaseTable) loadDataNodeConfig() {
	insertBufferFlushSize := os.Getenv("DATA_NODE_IBUFSIZE")
	if insertBufferFlushSize == "" {
		insertBufferFlushSize = gp.LoadWithDefault("datanode.flush.insertBufSize", DefaultInsertBufferSize)
	}
	gp.Save("_DATANODE_INSERTBUFSIZE", insertBufferFlushSize)
}

func (gp *BaseTable) loadOtherEnvs() {
	// try to load environment start with ENV_PREFIX
	for _, e := range os.Environ() {
		parts := strings.SplitN(e, "=", 2)
		if strings.Contains(parts[0], DefaultEnvPrefix) {
			parts := strings.SplitN(e, "=", 2)
			// remove the ENV PREFIX and use the rest as key
			keyParts := strings.SplitAfterN(parts[0], ".", 2)
			// mem kv throw no errors
			gp.Save(keyParts[1], parts[1])
		}
	}
}