mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
cb51d410a2
Signed-off-by: longjiquan <jiquan.long@zilliz.com> Signed-off-by: longjiquan <jiquan.long@zilliz.com>
12 lines
322 B
Go
12 lines
322 B
Go
package rootcoord
|
|
|
|
const (
|
|
// TODO: better to make them configurable, use default value if no config was set since we never explode these before.
|
|
globalIDAllocatorKey = "idTimestamp"
|
|
globalIDAllocatorSubPath = "gid"
|
|
globalTSOAllocatorKey = "timestamp"
|
|
globalTSOAllocatorSubPath = "tso"
|
|
|
|
maxShardNum = 64
|
|
)
|