base_table.go 11.7 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
	"syscall"
C
cai.zhang 已提交
22

23
	"go.uber.org/zap"
24

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

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

37 38
const envPrefix string = "milvus"

39 40
// Base abstracts BaseTable
// TODO: it's never used, consider to substitute BaseTable or to remove it
C
cai.zhang 已提交
41 42 43 44 45 46 47 48 49
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()
}

50
// BaseTable the basics of paramtable
C
cai.zhang 已提交
51
type BaseTable struct {
52 53
	params    *memkv.MemoryKV
	configDir string
54

55 56 57
	RoleName   string
	Log        log.Config
	LogCfgFunc func(log.Config)
C
cai.zhang 已提交
58 59 60
}

func (gp *BaseTable) Init() {
Z
zhenshan.cao 已提交
61
	gp.params = memkv.NewMemoryKV()
X
XuanYang-cn 已提交
62

63
	gp.configDir = gp.initConfPath()
64
	log.Debug("config directory", zap.String("configDir", gp.configDir))
X
XuanYang-cn 已提交
65

66 67
	gp.loadFromCommonYaml()

68 69
	gp.loadFromComponentYaml()

X
Xiaofan 已提交
70 71
	gp.loadFromMilvusYaml()

S
sunby 已提交
72
	gp.tryloadFromEnv()
X
Xiaofan 已提交
73 74

	gp.InitLogCfg()
S
sunby 已提交
75 76
}

77 78 79 80
func (gp *BaseTable) GetConfigDir() string {
	return gp.configDir
}

81 82 83 84 85 86 87 88 89 90
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
}

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
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
}

func (gp *BaseTable) loadFromMilvusYaml() {
	if err := gp.LoadYaml("milvus.yaml"); err != nil {
		panic(err)
	}
}

115 116 117 118 119 120 121 122 123 124 125
func (gp *BaseTable) loadFromComponentYaml() bool {
	configFile := gp.configDir + "advanced/component.yaml"
	if _, err := os.Stat(configFile); err == nil {
		if err := gp.LoadYaml("advanced/component.yaml"); err != nil {
			panic(err)
		}
		return true
	}
	return false
}

126 127 128 129 130 131 132 133 134 135 136
func (gp *BaseTable) loadFromCommonYaml() bool {
	configFile := gp.configDir + "advanced/common.yaml"
	if _, err := os.Stat(configFile); err == nil {
		if err := gp.LoadYaml("advanced/common.yaml"); err != nil {
			panic(err)
		}
		return true
	}
	return false
}

S
sunby 已提交
137
func (gp *BaseTable) tryloadFromEnv() {
138
	var err error
Z
zhenshan.cao 已提交
139 140
	minioAddress := os.Getenv("MINIO_ADDRESS")
	if minioAddress == "" {
S
sunby 已提交
141 142 143 144 145 146 147 148 149
		minioHost, err := gp.Load("minio.address")
		if err != nil {
			panic(err)
		}
		port, err := gp.Load("minio.port")
		if err != nil {
			panic(err)
		}
		minioAddress = minioHost + ":" + port
150
	}
151
	gp.Save("_MinioAddress", minioAddress)
152

153 154 155
	etcdEndpoints := os.Getenv("ETCD_ENDPOINTS")
	if etcdEndpoints == "" {
		etcdEndpoints, err = gp.Load("etcd.endpoints")
S
sunby 已提交
156 157 158
		if err != nil {
			panic(err)
		}
C
cai.zhang 已提交
159
	}
160
	gp.Save("_EtcdEndpoints", etcdEndpoints)
C
cai.zhang 已提交
161

C
cai.zhang 已提交
162 163
	pulsarAddress := os.Getenv("PULSAR_ADDRESS")
	if pulsarAddress == "" {
S
sunby 已提交
164 165 166 167 168 169 170 171 172
		pulsarHost, err := gp.Load("pulsar.address")
		if err != nil {
			panic(err)
		}
		port, err := gp.Load("pulsar.port")
		if err != nil {
			panic(err)
		}
		pulsarAddress = "pulsar://" + pulsarHost + ":" + port
C
cai.zhang 已提交
173
	}
174
	gp.Save("_PulsarAddress", pulsarAddress)
C
cai.zhang 已提交
175

176 177 178 179 180 181 182 183
	rocksmqPath := os.Getenv("ROCKSMQ_PATH")
	if rocksmqPath == "" {
		path, err := gp.Load("rocksmq.path")
		if err != nil {
			panic(err)
		}
		rocksmqPath = path
	}
184
	gp.Save("_RocksmqPath", rocksmqPath)
185

186 187
	insertBufferFlushSize := os.Getenv("DATA_NODE_IBUFSIZE")
	if insertBufferFlushSize == "" {
188
		insertBufferFlushSize = gp.LoadWithDefault("datanode.flush.insertBufSize", "16777216")
X
xige-16 已提交
189
	}
190
	gp.Save("_DATANODE_INSERTBUFSIZE", insertBufferFlushSize)
191 192 193 194 195 196 197 198

	minioAccessKey := os.Getenv("MINIO_ACCESS_KEY")
	if minioAccessKey == "" {
		minioAccessKey, err = gp.Load("minio.accessKeyID")
		if err != nil {
			panic(err)
		}
	}
199
	gp.Save("_MinioAccessKeyID", minioAccessKey)
200 201 202 203 204 205 206 207

	minioSecretKey := os.Getenv("MINIO_SECRET_KEY")
	if minioSecretKey == "" {
		minioSecretKey, err = gp.Load("minio.secretAccessKey")
		if err != nil {
			panic(err)
		}
	}
208
	gp.Save("_MinioSecretAccessKey", minioSecretKey)
209 210 211 212 213 214 215 216

	minioUseSSL := os.Getenv("MINIO_USE_SSL")
	if minioUseSSL == "" {
		minioUseSSL, err = gp.Load("minio.useSSL")
		if err != nil {
			panic(err)
		}
	}
217
	gp.Save("_MinioUseSSL", minioUseSSL)
218 219 220 221 222 223 224 225

	minioBucketName := os.Getenv("MINIO_BUCKET_NAME")
	if minioBucketName == "" {
		minioBucketName, err = gp.Load("minio.bucketName")
		if err != nil {
			panic(err)
		}
	}
226 227 228 229 230 231 232 233 234 235 236 237
	gp.Save("_MinioBucketName", minioBucketName)

	// try to load environment start with ENV_PREFIX
	for _, e := range os.Environ() {
		parts := strings.SplitN(e, "=", 2)
		if strings.Contains(parts[0], envPrefix) {
			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])
		}
238
	}
C
cai.zhang 已提交
239 240
}

241
// Load loads an object with @key.
C
cai.zhang 已提交
242 243 244 245
func (gp *BaseTable) Load(key string) (string, error) {
	return gp.params.Load(strings.ToLower(key))
}

246
// LoadWithDefault loads an object with @key. If the object does not exist, @defaultValue will be returned.
B
BIKI DAS 已提交
247
func (gp *BaseTable) LoadWithDefault(key, defaultValue string) string {
248 249 250
	return gp.params.LoadWithDefault(strings.ToLower(key), defaultValue)
}

251
// LoadRange loads objects with range @startKey to @endKey with @limit number of objects.
C
cai.zhang 已提交
252 253 254 255 256 257
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()
258 259 260
	configFile := gp.configDir + fileName
	if _, err := os.Stat(configFile); err != nil {
		panic("cannot access config file: " + configFile)
261 262 263
	}

	config.SetConfigFile(configFile)
C
cai.zhang 已提交
264 265 266 267 268
	if err := config.ReadInConfig(); err != nil {
		panic(err)
	}

	for _, key := range config.AllKeys() {
N
neza2017 已提交
269 270 271 272 273 274 275 276 277
		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 {
278
						panic(err)
N
neza2017 已提交
279
					}
B
BIKI DAS 已提交
280
					if str == "" {
N
neza2017 已提交
281 282 283 284 285 286 287
						str = ss
					} else {
						str = str + "," + ss
					}
				}

			default:
288
				panic("undefined config type, key=" + key)
N
neza2017 已提交
289 290 291
			}
		}
		err = gp.params.Save(strings.ToLower(key), str)
C
cai.zhang 已提交
292 293 294
		if err != nil {
			panic(err)
		}
N
neza2017 已提交
295

C
cai.zhang 已提交
296 297 298 299 300 301 302 303 304 305 306 307
	}

	return nil
}

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 已提交
308

309
func (gp *BaseTable) ParseBool(key string, defaultValue bool) bool {
X
Xiaofan 已提交
310
	valueStr := gp.LoadWithDefault(key, strconv.FormatBool(defaultValue))
311 312 313 314 315 316 317
	value, err := strconv.ParseBool(valueStr)
	if err != nil {
		panic(err)
	}
	return value
}

X
XuanYang-cn 已提交
318 319 320 321 322 323 324 325 326 327 328 329
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 已提交
330 331 332 333 334 335 336 337 338
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 已提交
339 340 341 342 343
func (gp *BaseTable) ParseInt64(key string) int64 {
	valueStr, err := gp.Load(key)
	if err != nil {
		panic(err)
	}
344
	value, err := strconv.ParseInt(valueStr, 10, 64)
X
XuanYang-cn 已提交
345 346 347
	if err != nil {
		panic(err)
	}
348
	return value
X
XuanYang-cn 已提交
349 350
}

X
Xiaofan 已提交
351 352 353 354 355 356 357 358 359
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 已提交
360 361 362 363 364
func (gp *BaseTable) ParseInt32(key string) int32 {
	valueStr, err := gp.Load(key)
	if err != nil {
		panic(err)
	}
365
	value, err := strconv.ParseInt(valueStr, 10, 32)
X
XuanYang-cn 已提交
366 367 368 369 370 371
	if err != nil {
		panic(err)
	}
	return int32(value)
}

X
Xiaofan 已提交
372 373 374 375 376 377 378 379 380
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 已提交
381 382 383 384 385 386 387 388 389 390 391 392
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 已提交
393 394 395 396 397 398 399 400 401
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 已提交
402 403
// package methods

404
// ConvertRangeToIntRange converts a range of strings to a range of ints.
X
XuanYang-cn 已提交
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
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}
}

431
// ConvertRangeToIntSlice convert given @rangeStr & @sep to a slice of ints.
X
XuanYang-cn 已提交
432 433 434 435 436 437 438 439 440
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
}
441

442
// InitLogCfg init log of the base table
X
Xiaofan 已提交
443
func (gp *BaseTable) InitLogCfg() {
444 445 446 447 448 449 450 451 452 453 454 455 456 457
	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 已提交
458 459
}

460
// SetLogConfig set log config of the base table
461 462 463 464 465 466
func (gp *BaseTable) SetLogConfig() {
	gp.LogCfgFunc = func(cfg log.Config) {
		log.Info("Set log file to ", zap.String("path", cfg.File.Filename))
		logutil.SetupLogger(&cfg)
		defer log.Sync()
	}
X
Xiaofan 已提交
467 468
}

469
// SetLogger sets the logger file by given id
X
Xiaofan 已提交
470
func (gp *BaseTable) SetLogger(id UniqueID) {
471 472 473 474
	rootPath, err := gp.Load("log.file.rootPath")
	if err != nil {
		panic(err)
	}
B
BIKI DAS 已提交
475
	if rootPath != "" {
X
Xiaofan 已提交
476 477 478 479 480 481
		log.Debug("Set logger ", zap.Int64("id", id), zap.String("role", gp.RoleName))
		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")
		}
482 483 484
	} else {
		gp.Log.File.Filename = ""
	}
X
Xiaofan 已提交
485

486 487
	if gp.LogCfgFunc != nil {
		gp.LogCfgFunc(gp.Log)
X
Xiaofan 已提交
488
	}
489
}