mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
This PR implements a new CDC service for Milvus 2.6, providing log-based cross-cluster replication. issue: https://github.com/milvus-io/milvus/issues/44123 --------- Signed-off-by: bigsheeper <yihao.dai@zilliz.com> Signed-off-by: chyezh <chyezh@outlook.com> Co-authored-by: chyezh <chyezh@outlook.com>
14 lines
430 B
Go
14 lines
430 B
Go
package streamingcoord
|
|
|
|
const (
|
|
MetaPrefix = "streamingcoord-meta/"
|
|
PChannelMetaPrefix = MetaPrefix + "pchannel/"
|
|
BroadcastTaskPrefix = MetaPrefix + "broadcast-task/"
|
|
VersionPrefix = MetaPrefix + "version/"
|
|
CChannelMetaPrefix = MetaPrefix + "cchannel/"
|
|
|
|
// Replicate
|
|
ReplicatePChannelMetaPrefix = MetaPrefix + "replicating-pchannel/"
|
|
ReplicateConfigurationKey = MetaPrefix + "replicate-configuration"
|
|
)
|