milvus-io--milvus
498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
66 行
2.1 KiB
Go
66 行
2.1 KiB
Go
package msgstream
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v3/mq/common"
|
|
"github.com/milvus-io/milvus/pkg/v3/mq/msgstream/mqwrapper"
|
|
)
|
|
|
|
var _ Factory = &CommonFactory{}
|
|
|
|
// CommonFactory is a Factory for creating message streams with common logic.
|
|
//
|
|
// It contains a function field named newer, which is a function that creates
|
|
// an mqwrapper.Client when called.
|
|
type CommonFactory struct {
|
|
Newer func(context.Context) (mqwrapper.Client, error) // client constructor
|
|
DispatcherFactory ProtoUDFactory
|
|
ReceiveBufSize int64
|
|
MQBufSize int64
|
|
}
|
|
|
|
// NewMsgStream is used to generate a new Msgstream object
|
|
func (f *CommonFactory) NewMsgStream(initCtx context.Context) (ms MsgStream, err error) {
|
|
defer wrapError(&err, "NewMsgStream")
|
|
cli, err := f.Newer(context.TODO())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return NewMqMsgStream(initCtx, f.ReceiveBufSize, f.MQBufSize, cli, f.DispatcherFactory.NewUnmarshalDispatcher())
|
|
}
|
|
|
|
// NewTtMsgStream is used to generate a new TtMsgstream object
|
|
func (f *CommonFactory) NewTtMsgStream(ctx context.Context) (ms MsgStream, err error) {
|
|
defer wrapError(&err, "NewTtMsgStream")
|
|
cli, err := f.Newer(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return NewMqTtMsgStream(context.Background(), f.ReceiveBufSize, f.MQBufSize, cli, f.DispatcherFactory.NewUnmarshalDispatcher())
|
|
}
|
|
|
|
// NewMsgStreamDisposer returns a function that can be used to dispose of a message stream.
|
|
// The returned function takes a slice of channel names and a subscription name, and
|
|
// disposes of the message stream associated with those arguments.
|
|
func (f *CommonFactory) NewMsgStreamDisposer(ctx context.Context) func([]string, string) error {
|
|
return func(channels []string, subName string) (err error) {
|
|
defer wrapError(&err, "NewMsgStreamDisposer")
|
|
msgs, err := f.NewMsgStream(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
msgs.AsConsumer(ctx, channels, subName, common.SubscriptionPositionUnknown)
|
|
msgs.Close()
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func wrapError(err *error, method string) {
|
|
if *err != nil {
|
|
*err = errors.Wrapf(*err, "in method: %s", method)
|
|
}
|
|
}
|