mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +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>
13 lines
349 B
Go
13 lines
349 B
Go
package walimpls
|
|
|
|
import "github.com/milvus-io/milvus/pkg/v2/streaming/util/message"
|
|
|
|
// OpenerBuilderImpls is the interface for building wal opener impls.
|
|
type OpenerBuilderImpls interface {
|
|
// Name of the wal builder, should be a lowercase string.
|
|
Name() message.WALName
|
|
|
|
// Build build a opener impls instance.
|
|
Build() (OpenerImpls, error)
|
|
}
|