mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +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>
66 lines
2.0 KiB
Go
66 lines
2.0 KiB
Go
package pulsar
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/apache/pulsar-client-go/pulsar"
|
|
"github.com/cockroachdb/errors"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v2/metrics"
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/util/message"
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/walimpls"
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/walimpls/impls/pulsar/pulsarlog"
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/walimpls/registry"
|
|
"github.com/milvus-io/milvus/pkg/v2/util/paramtable"
|
|
)
|
|
|
|
func init() {
|
|
// register the builder to the wal registry.
|
|
registry.RegisterBuilder(&builderImpl{})
|
|
// register the unmarshaler to the message registry.
|
|
message.RegisterMessageIDUnmsarshaler(message.WALNamePulsar, UnmarshalMessageID)
|
|
}
|
|
|
|
// builderImpl is the builder for pulsar wal.
|
|
type builderImpl struct{}
|
|
|
|
// Name returns the name of the wal.
|
|
func (b *builderImpl) Name() message.WALName {
|
|
return message.WALNamePulsar
|
|
}
|
|
|
|
// Build build a wal instance.
|
|
func (b *builderImpl) Build() (walimpls.OpenerImpls, error) {
|
|
options, err := b.getPulsarClientOptions()
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "build pulsar client options failed")
|
|
}
|
|
c, err := pulsar.NewClient(options)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &openerImpl{
|
|
c: c,
|
|
}, nil
|
|
}
|
|
|
|
// getPulsarClientOptions gets the pulsar client options from the config.
|
|
func (b *builderImpl) getPulsarClientOptions() (pulsar.ClientOptions, error) {
|
|
cfg := ¶mtable.Get().PulsarCfg
|
|
auth, err := pulsar.NewAuthentication(cfg.AuthPlugin.GetValue(), cfg.AuthParams.GetValue())
|
|
if err != nil {
|
|
return pulsar.ClientOptions{}, errors.New("build authencation from config failed")
|
|
}
|
|
options := pulsar.ClientOptions{
|
|
URL: cfg.Address.GetValue(),
|
|
OperationTimeout: cfg.RequestTimeout.GetAsDuration(time.Second),
|
|
Authentication: auth,
|
|
Logger: pulsarlog.NewLogger(),
|
|
}
|
|
if cfg.EnableClientMetrics.GetAsBool() {
|
|
// Enable client metrics if config.EnableClientMetrics is true, use pkg-defined registerer.
|
|
options.MetricsRegisterer = metrics.GetRegisterer()
|
|
}
|
|
return options, nil
|
|
}
|