mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 21:09:06 +08:00
9828a52999
Signed-off-by: neza2017 <yefu.chen@zilliz.com>
31 lines
709 B
Go
31 lines
709 B
Go
package masterservice
|
|
|
|
import (
|
|
"github.com/zilliztech/milvus-distributed/internal/util/paramtable"
|
|
)
|
|
|
|
var Params ParamTable
|
|
|
|
type ParamTable struct {
|
|
paramtable.BaseTable
|
|
|
|
Address string
|
|
Port int
|
|
NodeID uint64
|
|
|
|
PulsarAddress string
|
|
EtcdAddress string
|
|
MetaRootPath string
|
|
KvRootPath string
|
|
ProxyTimeTickChannel string
|
|
MsgChannelSubName string
|
|
TimeTickChannel string
|
|
DdChannel string
|
|
StatisticsChannel string
|
|
DataServiceSegmentChannel string // data service create segment, or data node flush segment
|
|
|
|
MaxPartitionNum int64
|
|
DefaultPartitionName string
|
|
DefaultIndexName string
|
|
}
|