Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

296 lines
10 KiB
Go

package adaptor
import (
"context"
"time"
"github.com/cockroachdb/errors"
"github.com/milvus-io/milvus/internal/streamingnode/server/wal/interceptors/wab"
"github.com/milvus-io/milvus/internal/streamingnode/server/wal/vchantempstore"
"github.com/milvus-io/milvus/pkg/v3/metrics"
"github.com/milvus-io/milvus/pkg/v3/mlog"
"github.com/milvus-io/milvus/pkg/v3/streaming/util/message"
"github.com/milvus-io/milvus/pkg/v3/streaming/util/options"
"github.com/milvus-io/milvus/pkg/v3/streaming/walimpls"
"github.com/milvus-io/milvus/pkg/v3/util/paramtable"
"github.com/milvus-io/milvus/pkg/v3/util/typeutil"
)
var (
_ switchableScanner = (*tailingScanner)(nil)
_ switchableScanner = (*catchupScanner)(nil)
)
// newSwitchableScanner creates a new switchable scanner.
func newSwithableScanner(
scannerName string,
logger *mlog.Logger,
innerWAL walimpls.ROWALImpls,
writeAheadBuffer wab.ROWriteAheadBuffer,
deliverPolicy options.DeliverPolicy,
msgChan chan<- message.ImmutableMessage,
) switchableScanner {
return &catchupScanner{
switchableScannerImpl: switchableScannerImpl{
scannerName: scannerName,
logger: logger,
innerWAL: innerWAL,
msgChan: msgChan,
writeAheadBuffer: writeAheadBuffer,
},
deliverPolicy: deliverPolicy,
exclusiveStartTimeTick: 0,
}
}
// switchableScanner is a scanner that can switch between Catchup and Tailing mode
type switchableScanner interface {
// Execute make a scanner work at background.
// When the scanner want to change the mode, it will return a new scanner with the new mode.
// When error is returned, the scanner is canceled and unrecoverable forever.
Do(ctx context.Context) (switchableScanner, error)
}
type switchableScannerImpl struct {
scannerName string
logger *mlog.Logger
innerWAL walimpls.ROWALImpls
msgChan chan<- message.ImmutableMessage
writeAheadBuffer wab.ROWriteAheadBuffer
}
func (s *switchableScannerImpl) HandleMessage(ctx context.Context, msg message.ImmutableMessage) error {
select {
case <-ctx.Done():
return ctx.Err()
case s.msgChan <- msg:
return nil
}
}
// oldVersionLastConfirmedTracker tracks recent message IDs to provide a delayed
// lastConfirmedMessageID for old version (v0) messages.
// Old version messages don't carry lastConfirmedMessageID, so we must synthesize one.
// Using the first-ever v0 message ID (as before) causes the scanner to restart from
// a very old WAL position when tailing→catchup fallback occurs, leading to long catchup
// times and search unavailability.
// Instead, we keep a sliding window and use the message ID from N messages ago,
// so that fallback only replays a bounded number of messages.
type oldVersionLastConfirmedTracker struct {
window []message.MessageID
windowSize int
}
func newOldVersionLastConfirmedTracker(windowSize int) *oldVersionLastConfirmedTracker {
if windowSize <= 0 {
windowSize = 30
}
return &oldVersionLastConfirmedTracker{
window: make([]message.MessageID, 0, windowSize+1),
windowSize: windowSize,
}
}
// Track records a new message ID and returns the delayed lastConfirmedMessageID.
// It returns the message ID from windowSize messages ago, or the earliest recorded
// ID if fewer than windowSize messages have been tracked.
func (t *oldVersionLastConfirmedTracker) Track(msgID message.MessageID) message.MessageID {
t.window = append(t.window, msgID)
if len(t.window) > t.windowSize {
confirmed := t.window[0]
// Trim the oldest entry to prevent unbounded growth.
t.window = t.window[1:]
return confirmed
}
// Not enough messages yet, return the first one.
return t.window[0]
}
// catchupScanner is a scanner that make a read at underlying wal, and try to catchup the writeahead buffer then switch to tailing mode.
type catchupScanner struct {
switchableScannerImpl
deliverPolicy options.DeliverPolicy
exclusiveStartTimeTick uint64 // scanner should filter out the message that less than or equal to this time tick.
oldVersionLastConfirmedTracker *oldVersionLastConfirmedTracker
}
func (s *catchupScanner) Do(ctx context.Context) (switchableScanner, error) {
for {
if ctx.Err() != nil {
return nil, ctx.Err()
}
scanner, err := s.createReaderWithBackoff(ctx, s.deliverPolicy)
if err != nil {
// Only the cancellation error will be returned, other error will keep backoff.
return nil, err
}
switchedScanner, err := s.consumeWithScanner(ctx, scanner)
if err != nil {
s.logger.Warn(ctx, "scanner consuming was interrpurted with error, start a backoff", mlog.Err(err))
continue
}
return switchedScanner, nil
}
}
func (s *catchupScanner) consumeWithScanner(ctx context.Context, scanner walimpls.ScannerImpls) (switchableScanner, error) {
defer scanner.Close()
for {
select {
case <-ctx.Done():
return nil, ctx.Err()
case msg, ok := <-scanner.Chan():
if !ok {
return nil, scanner.Error()
}
if msg.Version() == message.VersionOld {
if s.oldVersionLastConfirmedTracker == nil {
windowSize := paramtable.Get().StreamingCfg.OldVersionLastConfirmedWindowSize.GetAsInt()
s.oldVersionLastConfirmedTracker = newOldVersionLastConfirmedTracker(windowSize)
}
// Use a sliding-window tracker to provide a delayed lastConfirmedMessageID.
// This ensures that when a tailing scanner falls back to catchup mode,
// it only needs to replay a bounded number of recent messages instead of
// the entire WAL from the very first v0 message.
lastConfirmedMessageID := s.oldVersionLastConfirmedTracker.Track(msg.MessageID())
var err error
messageID := msg.MessageID()
msg, err = newOldVersionImmutableMessage(ctx, s.innerWAL.Channel().Name, lastConfirmedMessageID, msg)
if errors.Is(err, vchantempstore.ErrNotFound) {
// Skip the message's vchannel is not found in the vchannel temp store.
s.logger.Info(ctx, "skip the old version message because vchannel not found", mlog.Stringer("messageID", messageID))
continue
}
if errors.IsAny(err, context.Canceled, context.DeadlineExceeded) {
return nil, err
}
if err != nil {
panic("unrechable: unexpected error found: " + err.Error())
}
}
if msg.TimeTick() <= s.exclusiveStartTimeTick {
// we should filter out the message that less than or equal to this time tick to remove duplicate message
// when we switch from tailing mode to catchup mode.
continue
}
if err := s.HandleMessage(ctx, msg); err != nil {
return nil, err
}
if msg.MessageType() != message.MessageTypeTimeTick || s.writeAheadBuffer == nil {
// Only timetick message is keep the same order with the write ahead buffer.
// So we can only use the timetick message to catchup the write ahead buffer.
continue
}
// Here's a timetick message from the scanner, make tailing read if we catch up the writeahead buffer.
if reader, err := s.writeAheadBuffer.ReadFromExclusiveTimeTick(ctx, msg.TimeTick()); err == nil {
s.logger.Info(ctx, "scanner consuming was interrpted because catup done",
mlog.Uint64("timetick", msg.TimeTick()),
mlog.Stringer("messageID", msg.MessageID()),
mlog.Stringer("lastConfirmedMessageID", msg.LastConfirmedMessageID()),
)
return &tailingScanner{
switchableScannerImpl: s.switchableScannerImpl,
reader: reader,
lastConsumedMessage: msg,
}, nil
}
}
}
}
func (s *catchupScanner) createReaderWithBackoff(ctx context.Context, deliverPolicy options.DeliverPolicy) (walimpls.ScannerImpls, error) {
backoffTimer := typeutil.NewBackoffTimer(typeutil.BackoffTimerConfig{
Default: 5 * time.Second,
Backoff: typeutil.BackoffConfig{
InitialInterval: 100 * time.Millisecond,
Multiplier: 2.0,
MaxInterval: 5 * time.Second,
},
})
backoffTimer.EnableBackoff()
for {
bufSize := paramtable.Get().StreamingCfg.WALReadAheadBufferLength.GetAsInt()
if bufSize < 0 {
bufSize = 0
}
innerScanner, err := s.innerWAL.Read(ctx, walimpls.ReadOption{
Name: s.scannerName,
DeliverPolicy: deliverPolicy,
ReadAheadBufferSize: bufSize,
})
if err == nil {
return innerScanner, nil
}
if ctx.Err() != nil {
// The scanner is closing, so stop the backoff.
return nil, ctx.Err()
}
waker, nextInterval := backoffTimer.NextTimer()
s.logger.Warn(ctx, "create underlying scanner for wal scanner, start a backoff",
mlog.Duration("nextInterval", nextInterval),
mlog.Err(err),
)
select {
case <-ctx.Done():
return nil, ctx.Err()
case <-waker:
}
}
}
// tailingScanner is used to perform a tailing read from the writeaheadbuffer of wal.
type tailingScanner struct {
switchableScannerImpl
reader *wab.WriteAheadBufferReader
lastConsumedMessage message.ImmutableMessage
}
func (s *tailingScanner) Do(ctx context.Context) (switchableScanner, error) {
for {
msg, err := s.reader.Next(ctx)
if errors.Is(err, wab.ErrEvicted) {
// The tailing read is failure, switch into catchup mode.
s.logger.Info(ctx, "scanner consuming was interrpted because tailing eviction",
mlog.Uint64("timetick", s.lastConsumedMessage.TimeTick()),
mlog.Stringer("messageID", s.lastConsumedMessage.MessageID()),
mlog.Stringer("lastConfirmedMessageID", s.lastConsumedMessage.LastConfirmedMessageID()),
)
return &catchupScanner{
switchableScannerImpl: s.switchableScannerImpl,
deliverPolicy: options.DeliverPolicyStartFrom(s.lastConsumedMessage.LastConfirmedMessageID()),
exclusiveStartTimeTick: s.lastConsumedMessage.TimeTick(),
}, nil
}
if err != nil {
return nil, err
}
if err := s.HandleMessage(ctx, tailingImmutableMesasge{msg}); err != nil {
return nil, err
}
s.lastConsumedMessage = msg
}
}
// getScannerModel returns the scanner model.
func getScannerModel(scanner switchableScanner) string {
if _, ok := scanner.(*tailingScanner); ok {
return metrics.WALScannerModelTailing
}
return metrics.WALScannerModelCatchup
}
type tailingImmutableMesasge struct {
message.ImmutableMessage
}
// isTailingScanImmutableMessage check whether the message is a tailing message.
func isTailingScanImmutableMessage(msg message.ImmutableMessage) (message.ImmutableMessage, bool) {
if msg, ok := msg.(tailingImmutableMesasge); ok {
return msg.ImmutableMessage, true
}
return msg, false
}