mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
0eee7e5252
Change session. Signed-off-by: godchen <qingxiang.chen@zilliz.com>
68 lines
1.5 KiB
Go
68 lines
1.5 KiB
Go
// 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 grpcdataserviceclient
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/paramtable"
|
|
)
|
|
|
|
type ParamTable struct {
|
|
paramtable.BaseTable
|
|
|
|
IP string
|
|
Port int
|
|
MasterAddress string
|
|
}
|
|
|
|
var Params ParamTable
|
|
var once sync.Once
|
|
|
|
func (pt *ParamTable) Init() {
|
|
once.Do(func() {
|
|
pt.BaseTable.Init()
|
|
pt.initPort()
|
|
pt.initParams()
|
|
pt.LoadFromEnv()
|
|
})
|
|
}
|
|
|
|
func (pt *ParamTable) initParams() {
|
|
pt.initMasterAddress()
|
|
pt.initDataServiceAddress()
|
|
}
|
|
|
|
func (pt *ParamTable) LoadFromEnv() {
|
|
|
|
}
|
|
|
|
func (pt *ParamTable) initPort() {
|
|
pt.Port = pt.ParseInt("dataService.port")
|
|
}
|
|
|
|
func (pt *ParamTable) initMasterAddress() {
|
|
ret, err := pt.Load("_MasterAddress")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
pt.MasterAddress = ret
|
|
}
|
|
|
|
func (pt *ParamTable) initDataServiceAddress() {
|
|
ret, err := pt.Load("_DataServiceAddress")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
pt.IP = ret
|
|
}
|