mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 19:39:21 +08:00
a5e2d6b6fb
Signed-off-by: longjiquan <jiquan.long@zilliz.com> Co-authored-by: xaxys <tpnnghd@163.com> Signed-off-by: longjiquan <jiquan.long@zilliz.com> Co-authored-by: xaxys <tpnnghd@163.com>
12 lines
379 B
Go
12 lines
379 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.
|
|
snapshotsSep = "_ts"
|
|
snapshotPrefix = "snapshots"
|
|
globalIDAllocatorKey = "idTimestamp"
|
|
globalIDAllocatorSubPath = "gid"
|
|
globalTSOAllocatorKey = "timestamp"
|
|
globalTSOAllocatorSubPath = "tso"
|
|
)
|