mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
issue: #40532 - start timeticksync at rootcoord if the streaming service is not available - stop timeticksync if the streaming service is available - open a read-only wal if some nodes in cluster is not upgrading to 2.6 - allow to open read-write wal after all nodes in cluster is upgrading to 2.6 --------- Signed-off-by: chyezh <chyezh@outlook.com>
9 lines
229 B
Go
9 lines
229 B
Go
package streamingcoord
|
|
|
|
const (
|
|
MetaPrefix = "streamingcoord-meta/"
|
|
PChannelMetaPrefix = MetaPrefix + "pchannel/"
|
|
BroadcastTaskPrefix = MetaPrefix + "broadcast-task/"
|
|
VersionPrefix = MetaPrefix + "version/"
|
|
)
|