2021-06-07 09:47:36 +08:00
|
|
|
// Copyright (C) 2019-2020 Zilliz. All rights reserved.//
|
2021-04-19 11:35:38 +08:00
|
|
|
// 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 17:09:41 +08:00
|
|
|
package dataservice
|
|
|
|
|
|
|
|
import (
|
2021-02-19 15:37:04 +08:00
|
|
|
"path"
|
2021-01-26 09:43:41 +08:00
|
|
|
"strconv"
|
2021-06-11 22:04:41 +08:00
|
|
|
"strings"
|
2021-02-06 13:39:15 +08:00
|
|
|
"sync"
|
2021-01-26 09:43:41 +08:00
|
|
|
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
2021-02-19 15:37:04 +08:00
|
|
|
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/paramtable"
|
2021-01-15 17:09:41 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type ParamTable struct {
|
|
|
|
paramtable.BaseTable
|
|
|
|
|
2021-02-23 11:40:30 +08:00
|
|
|
NodeID int64
|
2021-01-22 19:43:27 +08:00
|
|
|
|
2021-05-21 19:28:52 +08:00
|
|
|
IP string
|
|
|
|
Port int
|
|
|
|
|
2021-05-20 11:34:45 +08:00
|
|
|
// --- ETCD ---
|
2021-06-11 22:04:41 +08:00
|
|
|
EtcdEndpoints []string
|
2021-05-20 11:34:45 +08:00
|
|
|
MetaRootPath string
|
|
|
|
KvRootPath string
|
|
|
|
SegmentBinlogSubPath string
|
|
|
|
CollectionBinlogSubPath string
|
|
|
|
|
|
|
|
// --- Pulsar ---
|
2021-01-22 11:07:07 +08:00
|
|
|
PulsarAddress string
|
2021-01-15 17:09:41 +08:00
|
|
|
|
2021-05-19 14:13:53 +08:00
|
|
|
FlushStreamPosSubPath string
|
|
|
|
StatsStreamPosSubPath string
|
|
|
|
|
2021-01-15 17:09:41 +08:00
|
|
|
// segment
|
|
|
|
SegmentSize float64
|
|
|
|
SegmentSizeFactor float64
|
|
|
|
SegIDAssignExpiration int64
|
|
|
|
|
2021-02-03 17:30:10 +08:00
|
|
|
InsertChannelPrefixName string
|
|
|
|
StatisticsChannelName string
|
|
|
|
TimeTickChannelName string
|
|
|
|
SegmentInfoChannelName string
|
|
|
|
DataServiceSubscriptionName string
|
2021-01-26 15:14:49 +08:00
|
|
|
|
2021-06-08 19:25:37 +08:00
|
|
|
Log log.Config
|
2021-01-15 17:09:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var Params ParamTable
|
2021-02-06 13:39:15 +08:00
|
|
|
var once sync.Once
|
2021-01-15 17:09:41 +08:00
|
|
|
|
|
|
|
func (p *ParamTable) Init() {
|
2021-02-06 13:39:15 +08:00
|
|
|
once.Do(func() {
|
|
|
|
// load yaml
|
|
|
|
p.BaseTable.Init()
|
|
|
|
|
|
|
|
if err := p.LoadYaml("advanced/data_service.yaml"); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// set members
|
2021-06-11 22:04:41 +08:00
|
|
|
p.initEtcdEndpoints()
|
2021-02-06 13:39:15 +08:00
|
|
|
p.initMetaRootPath()
|
|
|
|
p.initKvRootPath()
|
2021-05-20 11:34:45 +08:00
|
|
|
p.initSegmentBinlogSubPath()
|
|
|
|
p.initCollectionBinlogSubPath()
|
|
|
|
|
2021-02-06 13:39:15 +08:00
|
|
|
p.initPulsarAddress()
|
|
|
|
|
|
|
|
p.initSegmentSize()
|
|
|
|
p.initSegmentSizeFactor()
|
|
|
|
p.initSegIDAssignExpiration()
|
|
|
|
p.initInsertChannelPrefixName()
|
|
|
|
p.initStatisticsChannelName()
|
|
|
|
p.initTimeTickChannelName()
|
|
|
|
p.initSegmentInfoChannelName()
|
|
|
|
p.initDataServiceSubscriptionName()
|
2021-02-19 15:37:04 +08:00
|
|
|
p.initLogCfg()
|
2021-05-19 14:13:53 +08:00
|
|
|
|
|
|
|
p.initFlushStreamPosSubPath()
|
|
|
|
p.initStatsStreamPosSubPath()
|
2021-02-06 13:39:15 +08:00
|
|
|
})
|
2021-01-15 17:09:41 +08:00
|
|
|
}
|
|
|
|
|
2021-06-11 22:04:41 +08:00
|
|
|
func (p *ParamTable) initEtcdEndpoints() {
|
|
|
|
endpoints, err := p.Load("_EtcdEndpoints")
|
2021-01-15 17:09:41 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-11 22:04:41 +08:00
|
|
|
p.EtcdEndpoints = strings.Split(endpoints, ",")
|
2021-01-15 17:09:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initPulsarAddress() {
|
|
|
|
addr, err := p.Load("_PulsarAddress")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.PulsarAddress = addr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initMetaRootPath() {
|
|
|
|
rootPath, err := p.Load("etcd.rootPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
subPath, err := p.Load("etcd.metaSubPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.MetaRootPath = rootPath + "/" + subPath
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initKvRootPath() {
|
|
|
|
rootPath, err := p.Load("etcd.rootPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
subPath, err := p.Load("etcd.kvSubPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.KvRootPath = rootPath + "/" + subPath
|
|
|
|
}
|
2021-05-20 11:34:45 +08:00
|
|
|
|
|
|
|
func (p *ParamTable) initSegmentBinlogSubPath() {
|
|
|
|
subPath, err := p.Load("etcd.segmentBinlogSubPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.SegmentBinlogSubPath = subPath
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initCollectionBinlogSubPath() {
|
|
|
|
subPath, err := p.Load("etcd.collectionBinlogSubPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.CollectionBinlogSubPath = subPath
|
|
|
|
}
|
|
|
|
|
2021-01-15 17:09:41 +08:00
|
|
|
func (p *ParamTable) initSegmentSize() {
|
2021-01-26 09:43:41 +08:00
|
|
|
p.SegmentSize = p.ParseFloat("dataservice.segment.size")
|
2021-01-15 17:09:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initSegmentSizeFactor() {
|
2021-01-26 09:43:41 +08:00
|
|
|
p.SegmentSizeFactor = p.ParseFloat("dataservice.segment.sizeFactor")
|
2021-01-15 17:09:41 +08:00
|
|
|
}
|
|
|
|
|
2021-01-22 19:43:27 +08:00
|
|
|
func (p *ParamTable) initSegIDAssignExpiration() {
|
2021-01-26 09:43:41 +08:00
|
|
|
p.SegIDAssignExpiration = p.ParseInt64("dataservice.segment.IDAssignExpiration") //ms
|
2021-01-22 19:43:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initInsertChannelPrefixName() {
|
2021-01-26 09:43:41 +08:00
|
|
|
var err error
|
|
|
|
p.InsertChannelPrefixName, err = p.Load("msgChannel.chanNamePrefix.dataServiceInsertChannel")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-22 19:43:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initStatisticsChannelName() {
|
2021-01-26 09:43:41 +08:00
|
|
|
var err error
|
|
|
|
p.StatisticsChannelName, err = p.Load("msgChannel.chanNamePrefix.dataServiceStatistic")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-22 19:43:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initTimeTickChannelName() {
|
2021-01-26 09:43:41 +08:00
|
|
|
var err error
|
|
|
|
p.TimeTickChannelName, err = p.Load("msgChannel.chanNamePrefix.dataServiceTimeTick")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-22 19:43:27 +08:00
|
|
|
}
|
|
|
|
|
2021-01-25 15:17:17 +08:00
|
|
|
func (p *ParamTable) initSegmentInfoChannelName() {
|
2021-01-26 09:43:41 +08:00
|
|
|
var err error
|
|
|
|
p.SegmentInfoChannelName, err = p.Load("msgChannel.chanNamePrefix.dataServiceSegmentInfo")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-25 15:17:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initDataServiceSubscriptionName() {
|
2021-01-26 09:43:41 +08:00
|
|
|
var err error
|
2021-01-27 11:34:16 +08:00
|
|
|
p.DataServiceSubscriptionName, err = p.Load("msgChannel.subNamePrefix.dataServiceSubNamePrefix")
|
2021-01-26 09:43:41 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-19 15:37:04 +08:00
|
|
|
func (p *ParamTable) initLogCfg() {
|
|
|
|
p.Log = log.Config{}
|
|
|
|
format, err := p.Load("log.format")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.Log.Format = format
|
|
|
|
level, err := p.Load("log.level")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.Log.Level = level
|
|
|
|
p.Log.File.MaxSize = p.ParseInt("log.file.maxSize")
|
|
|
|
p.Log.File.MaxBackups = p.ParseInt("log.file.maxBackups")
|
|
|
|
p.Log.File.MaxDays = p.ParseInt("log.file.maxAge")
|
|
|
|
rootPath, err := p.Load("log.file.rootPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-03-08 16:24:55 +08:00
|
|
|
if len(rootPath) != 0 {
|
|
|
|
p.Log.File.Filename = path.Join(rootPath, "dataservice-"+strconv.FormatInt(p.NodeID, 10)+".log")
|
|
|
|
} else {
|
|
|
|
p.Log.File.Filename = ""
|
|
|
|
}
|
2021-02-19 15:37:04 +08:00
|
|
|
}
|
2021-03-27 14:01:52 +08:00
|
|
|
|
2021-05-19 14:13:53 +08:00
|
|
|
func (p *ParamTable) initFlushStreamPosSubPath() {
|
|
|
|
subPath, err := p.Load("etcd.flushStreamPosSubPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.FlushStreamPosSubPath = subPath
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ParamTable) initStatsStreamPosSubPath() {
|
|
|
|
subPath, err := p.Load("etcd.statsStreamPosSubPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.StatsStreamPosSubPath = subPath
|
|
|
|
}
|