mirror of
https://github.com/milvus-io/milvus.git
synced 2026-07-21 02:05:41 +00:00
issue: #47404 - message trace context: add trace context serialization and restore/inject helpers for WAL messages and msgstream conversion - WAL append trace: normalize WAL spans for autocommit, txn, broadcast, append, appendimpl, and broadcast callback paths - trace propagation: restore message trace context in producer, broadcast retry, replicate primary/secondary, recovery, flusher, and query/data flowgraph consumers --------- Signed-off-by: chyezh <chyezh@outlook.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
255 lines
8.2 KiB
Go
255 lines
8.2 KiB
Go
package producer
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/mock"
|
|
"github.com/stretchr/testify/require"
|
|
"go.opentelemetry.io/otel"
|
|
sdktrace "go.opentelemetry.io/otel/sdk/trace"
|
|
"go.opentelemetry.io/otel/sdk/trace/tracetest"
|
|
"go.opentelemetry.io/otel/trace"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/streamingutil/status"
|
|
"github.com/milvus-io/milvus/pkg/v3/mocks/proto/mock_streamingpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/mocks/streaming/util/mock_ratelimit"
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/streamingpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/streaming/util/message"
|
|
"github.com/milvus-io/milvus/pkg/v3/streaming/util/ratelimit"
|
|
"github.com/milvus-io/milvus/pkg/v3/streaming/util/types"
|
|
"github.com/milvus-io/milvus/pkg/v3/streaming/walimpls/impls/walimplstest"
|
|
)
|
|
|
|
func TestProducer(t *testing.T) {
|
|
c := mock_streamingpb.NewMockStreamingNodeHandlerServiceClient(t)
|
|
cc := mock_streamingpb.NewMockStreamingNodeHandlerService_ProduceClient(t)
|
|
recvCh := make(chan *streamingpb.ProduceResponse, 10)
|
|
cc.EXPECT().Recv().RunAndReturn(func() (*streamingpb.ProduceResponse, error) {
|
|
msg, ok := <-recvCh
|
|
if !ok {
|
|
return nil, io.EOF
|
|
}
|
|
return msg, nil
|
|
})
|
|
sendCh := make(chan struct{}, 5)
|
|
cc.EXPECT().Send(mock.Anything).RunAndReturn(func(pr *streamingpb.ProduceRequest) error {
|
|
sendCh <- struct{}{}
|
|
return nil
|
|
})
|
|
c.EXPECT().Produce(mock.Anything, mock.Anything).Return(cc, nil)
|
|
cc.EXPECT().CloseSend().RunAndReturn(func() error {
|
|
recvCh <- &streamingpb.ProduceResponse{Response: &streamingpb.ProduceResponse_Close{}}
|
|
close(recvCh)
|
|
return nil
|
|
})
|
|
|
|
ctx := context.Background()
|
|
opts := &ProducerOptions{
|
|
Assignment: &types.PChannelInfoAssigned{
|
|
Channel: types.PChannelInfo{Name: "test", Term: 1},
|
|
Node: types.StreamingNodeInfo{ServerID: 1, Address: "localhost"},
|
|
},
|
|
}
|
|
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Create{
|
|
Create: &streamingpb.CreateProducerResponse{},
|
|
},
|
|
}
|
|
producer, err := CreateProducer(ctx, opts, c)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, producer)
|
|
ch := make(chan struct{})
|
|
go func() {
|
|
msg := message.CreateTestEmptyInsertMesage(1, nil)
|
|
msgID, err := producer.Append(ctx, msg)
|
|
assert.Error(t, err)
|
|
assert.Nil(t, msgID)
|
|
|
|
msg = message.CreateTestEmptyInsertMesage(1, nil)
|
|
msgID, err = producer.Append(ctx, msg)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, msgID)
|
|
|
|
msg = message.CreateTestEmptyInsertMesage(1, nil)
|
|
_, err = producer.Append(ctx, msg)
|
|
assert.True(t, status.AsStreamingError(err).IsRateLimitRejected())
|
|
close(ch)
|
|
}()
|
|
<-sendCh
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Produce{
|
|
Produce: &streamingpb.ProduceMessageResponse{
|
|
RequestId: 1,
|
|
Response: &streamingpb.ProduceMessageResponse_Error{
|
|
Error: &streamingpb.StreamingError{Code: 1},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
<-sendCh
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Produce{
|
|
Produce: &streamingpb.ProduceMessageResponse{
|
|
RequestId: 2,
|
|
Response: &streamingpb.ProduceMessageResponse_Result{
|
|
Result: &streamingpb.ProduceMessageResponseResult{
|
|
Id: walimplstest.NewTestMessageID(1).IntoProto(),
|
|
LastConfirmedId: walimplstest.NewTestMessageID(1).IntoProto(),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
<-sendCh
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Produce{
|
|
Produce: &streamingpb.ProduceMessageResponse{
|
|
RequestId: 3,
|
|
Response: &streamingpb.ProduceMessageResponse_Error{
|
|
Error: &streamingpb.StreamingError{
|
|
Code: streamingpb.StreamingCode_STREAMING_CODE_RATE_LIMIT_REJECTED,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
<-ch
|
|
stateUpdateCh := make(chan struct{}, 1)
|
|
ob := mock_ratelimit.NewMockRateLimitObserver(t)
|
|
ob.EXPECT().UpdateRateLimitState(mock.Anything).Run(func(state ratelimit.RateLimitState) {
|
|
assert.Equal(t, streamingpb.WALRateLimitState_WAL_RATE_LIMIT_STATE_REJECT, state.State)
|
|
stateUpdateCh <- struct{}{}
|
|
})
|
|
producer.Register(ob)
|
|
<-stateUpdateCh
|
|
producer.Unregister(ob)
|
|
|
|
// Register observer BEFORE sending the RateLimit response to avoid race condition.
|
|
// The observer will first receive the current cached state (REJECT), then the new SLOWDOWN state.
|
|
ob = mock_ratelimit.NewMockRateLimitObserver(t)
|
|
slowdownReceived := make(chan struct{})
|
|
ob.EXPECT().UpdateRateLimitState(mock.Anything).Run(func(state ratelimit.RateLimitState) {
|
|
if state.State == streamingpb.WALRateLimitState_WAL_RATE_LIMIT_STATE_SLOWDOWN {
|
|
assert.Equal(t, int64(1024*1024), state.Rate)
|
|
close(slowdownReceived)
|
|
}
|
|
})
|
|
producer.Register(ob)
|
|
|
|
// Now send the RateLimit response
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_RateLimit{
|
|
RateLimit: &streamingpb.ProduceRateLimitResponse{
|
|
State: streamingpb.WALRateLimitState_WAL_RATE_LIMIT_STATE_SLOWDOWN,
|
|
Rate: 1024 * 1024,
|
|
},
|
|
},
|
|
}
|
|
<-slowdownReceived
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond)
|
|
defer cancel()
|
|
msg := message.CreateTestEmptyInsertMesage(1, nil)
|
|
_, err = producer.Append(ctx, msg)
|
|
assert.ErrorIs(t, err, context.DeadlineExceeded)
|
|
assert.True(t, producer.IsAvailable())
|
|
producer.Close()
|
|
assert.False(t, producer.IsAvailable())
|
|
}
|
|
|
|
func TestProducerAppendOverwritesTraceContextDuringSerialization(t *testing.T) {
|
|
exporter := tracetest.NewInMemoryExporter()
|
|
tp := sdktrace.NewTracerProvider(
|
|
sdktrace.WithSyncer(exporter),
|
|
sdktrace.WithSampler(sdktrace.AlwaysSample()),
|
|
)
|
|
prev := otel.GetTracerProvider()
|
|
otel.SetTracerProvider(tp)
|
|
defer otel.SetTracerProvider(prev)
|
|
|
|
c := mock_streamingpb.NewMockStreamingNodeHandlerServiceClient(t)
|
|
cc := mock_streamingpb.NewMockStreamingNodeHandlerService_ProduceClient(t)
|
|
recvCh := make(chan *streamingpb.ProduceResponse, 10)
|
|
cc.EXPECT().Recv().RunAndReturn(func() (*streamingpb.ProduceResponse, error) {
|
|
msg, ok := <-recvCh
|
|
if !ok {
|
|
return nil, io.EOF
|
|
}
|
|
return msg, nil
|
|
})
|
|
sendCh := make(chan *streamingpb.ProduceRequest, 1)
|
|
cc.EXPECT().Send(mock.Anything).RunAndReturn(func(pr *streamingpb.ProduceRequest) error {
|
|
sendCh <- pr
|
|
return nil
|
|
})
|
|
c.EXPECT().Produce(mock.Anything, mock.Anything).Return(cc, nil)
|
|
cc.EXPECT().CloseSend().RunAndReturn(func() error {
|
|
recvCh <- &streamingpb.ProduceResponse{Response: &streamingpb.ProduceResponse_Close{}}
|
|
close(recvCh)
|
|
return nil
|
|
})
|
|
|
|
opts := &ProducerOptions{
|
|
Assignment: &types.PChannelInfoAssigned{
|
|
Channel: types.PChannelInfo{Name: "test", Term: 1},
|
|
Node: types.StreamingNodeInfo{ServerID: 1, Address: "localhost"},
|
|
},
|
|
}
|
|
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Create{
|
|
Create: &streamingpb.CreateProducerResponse{},
|
|
},
|
|
}
|
|
producer, err := CreateProducer(context.Background(), opts, c)
|
|
require.NoError(t, err)
|
|
|
|
sourceCtx, sourceSpan := otel.Tracer("test").Start(context.Background(), "source")
|
|
sourceSpan.End()
|
|
distCtx, distSpan := otel.Tracer("test").Start(sourceCtx, message.SpanNameWALDistAppend)
|
|
distSC := trace.SpanContextFromContext(distCtx)
|
|
|
|
msg := message.CreateTestEmptyInsertMesage(1, nil)
|
|
message.InjectTraceContext(sourceCtx, msg)
|
|
appendDone := make(chan struct{})
|
|
go func() {
|
|
defer close(appendDone)
|
|
result, err := producer.Append(distCtx, msg)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, result)
|
|
}()
|
|
|
|
req := <-sendCh
|
|
serializedMsg := req.GetProduce().GetMessage()
|
|
serializedImmutable := message.NewImmutableMesasge(
|
|
walimplstest.NewTestMessageID(1),
|
|
serializedMsg.GetPayload(),
|
|
serializedMsg.GetProperties(),
|
|
)
|
|
serializedSC := trace.SpanContextFromContext(message.ExtractTraceContext(context.Background(), serializedImmutable))
|
|
assert.Equal(t, distSC.TraceID(), serializedSC.TraceID())
|
|
assert.Equal(t, distSC.SpanID(), serializedSC.SpanID())
|
|
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Produce{
|
|
Produce: &streamingpb.ProduceMessageResponse{
|
|
RequestId: req.GetProduce().GetRequestId(),
|
|
Response: &streamingpb.ProduceMessageResponse_Result{
|
|
Result: &streamingpb.ProduceMessageResponseResult{
|
|
Id: walimplstest.NewTestMessageID(1).IntoProto(),
|
|
LastConfirmedId: walimplstest.NewTestMessageID(1).IntoProto(),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
<-appendDone
|
|
distSpan.End()
|
|
producer.Close()
|
|
}
|