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
58 行
2.3 KiB
Go
58 行
2.3 KiB
Go
package broadcaster
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v3/streaming/util/message"
|
|
"github.com/milvus-io/milvus/pkg/v3/streaming/util/types"
|
|
)
|
|
|
|
var (
|
|
ErrNotPrimary = errors.New("cluster is not primary, cannot do any DDL/DCL")
|
|
ErrNotSecondary = errors.New("cluster is not secondary, cannot perform force promote")
|
|
)
|
|
|
|
type Broadcaster interface {
|
|
// WithResourceKeys sets the resource keys of the broadcast operation.
|
|
// It will acquire locks of the resource keys and return the broadcast api.
|
|
// Once the broadcast api is returned, the Close() method of the broadcast api should be called to release the resource safely.
|
|
// Return ErrNotPrimary if the cluster is not primary, so no DDL message can be broadcasted.
|
|
WithResourceKeys(ctx context.Context, resourceKeys ...message.ResourceKey) (BroadcastAPI, error)
|
|
|
|
// WithSecondaryClusterResourceKey acquires an exclusive cluster-level resource key
|
|
// and verifies the cluster is secondary. Returns error if the cluster is primary.
|
|
// This is used for force promote operations that should only be executed on secondary clusters.
|
|
WithSecondaryClusterResourceKey(ctx context.Context) (BroadcastAPI, error)
|
|
|
|
// LegacyAck is the legacy ack interface for the 2.6.0 import message.
|
|
LegacyAck(ctx context.Context, broadcastID uint64, vchannel string) error
|
|
|
|
// Ack acknowledges the message at the specified vchannel.
|
|
Ack(ctx context.Context, msg message.ImmutableMessage) error
|
|
|
|
// GetPendingCreateCollectionResources returns collection ID → file resource IDs
|
|
// for all pending CreateCollection broadcast tasks that haven't completed
|
|
// their ack callback yet. Used during recovery to rebuild file resource refCnt.
|
|
GetPendingCreateCollectionResources() map[int64][]int64
|
|
|
|
// Close closes the broadcaster.
|
|
Close()
|
|
}
|
|
|
|
type BroadcastAPI interface {
|
|
// Broadcast broadcasts the message to all channels.
|
|
Broadcast(ctx context.Context, msg message.BroadcastMutableMessage) (*types.BroadcastAppendResult, error)
|
|
|
|
// Close releases the resource keys that broadcast api holds.
|
|
Close()
|
|
}
|
|
|
|
// AppendOperator is used to append messages, there's only two implement of this interface:
|
|
// 1. streaming.WAL()
|
|
// 2. old msgstream interface [deprecated]
|
|
type AppendOperator interface {
|
|
AppendMessages(ctx context.Context, msgs ...message.MutableMessage) types.AppendResponses
|
|
}
|