param_table.go 540 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
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

	MaxPartitionNum     int64
	DefaultPartitionTag string
}