mirror of
https://github.com/milvus-io/milvus.git
synced 2026-07-21 02:05:41 +00:00
issue: #47420 ## What this PR does Project-wide migration of raw `fmt.Errorf` / `errors.New` in function bodies onto the `merr` framework, plus the Sys-vs-Input error classification and the machinery it drives (retriability, fine-grained metrics, segcore unification), plus the convention docs and a linter that keeps it from regressing. Scope: storage, proxy, coordinators (root/data/query), query node, data node, `pkg/util` & `internal/util`, expression parser, message queue, streaming, and misc packages. Bare raw-error usages went from ~3000 to a ~340 allowlist (package-level sentinels / build-tag / test sites). --- ## How to review this PR It is large but the vast majority is mechanical. Changes fall into three tiers; spend review budget on Part 2 and Part 3. ### Part 1 — Mechanical standardization (low risk, verify by rule) Each converted call follows one of a small fixed set of rules. To review, check that each site obeys the matching rule rather than reading every line: | Pattern | Rule | |---|---| | `fmt.Errorf("...")` originating a new error | → `merr.WrapErrXxxMsg("...")` with a code matching the failure's meaning | | Adding context to an existing typed error | → `merr.Wrap(err, "...")` / `merr.Wrapf(...)` — **preserves** the inner code (never `WrapErr*Err`, which overwrites it) | | Errors inside the streaming subsystem | → `status.New*` factories (StreamingError), **not** merr — this is the component-internal dialect (see `docs/dev/error_handling_guide.md`) | | Low-level / control-flow signal caught by `errors.Is` | → kept as a package-level `errors.New` sentinel (lowercase, same-package) | Conventions are documented in `docs/dev/error_handling_guide.md` (how-to) and `docs/dev/error_sentinel_convention.md` (rules + audit). A `gocritic`/`ruleguard` rule (`rawmerrerror`, in `rules.go`) enforces "no raw `return errors.New/fmt.Errorf`" under `make verifiers`. ### Part 2 — Behavior changes (review these closely) These are the sites where the wire contract or runtime behavior changes, not just the source text. Listed by category; representative locations given, full set in the diff. **A. gRPC wire-code shifts: `UnexpectedError(1)/Code 65535` → typed code.** Where a handler previously returned a raw error (collapsed to `Code=65535` on the wire), it now returns a typed merr, so the client sees a real code. The most common shift is to `IllegalArgument(5)/Code 1100` (ParameterInvalid). Touch points include datanode task handlers (CreateTask/Query/Drop), proxy Upsert, querynode GetMetrics, datacoord CreateIndex, httpserver query-response builder, and typeutil schema validation. One code refinement: an index-param validation moved `1100` → `1101` (ParameterMissing). **Client/SDK assertions and any code that switched on `Code=65535` for these paths must be re-checked** (the go_client e2e assertions were already aligned in this PR). **B. Prometheus `status` label contract change (externally visible).** The proxy metric's coarse `fail` / `rejected` values are split into `fail_input` / `fail_system` and `rejected_user` / `rejected_system` (in `requestutil.ParseMetricLabel`; auth/privilege rejections count as `rejected_user`), so dashboards can attribute a failure to caller vs operator. **Dashboards/alerts querying `status="fail"` must migrate to `status=~"fail_.*"`, and `status="rejected"` to `status=~"rejected_.*"`.** The in-repo Grafana dashboard is already migrated; external dashboards built on the old values silently go empty after upgrade. This is the one change that requires an ops-side migration. **C. Retriability semantics.** - C1: `merr.Status(err)` now forces `Retriable=false` when the error is an `InputError` — a malformed request can never succeed on blind retry, so clients never get the self-contradictory "your input is wrong but you may retry". - C2: `retry.Do` short-circuits an `InputError` (non-retriable) — **but only when the caller did not pass a `RetryErr` predicate**. The check is an `if c.isRetryErr != nil { ... } else if InputError { ... }` *mutually exclusive* branch (`pkg/util/retry/retry.go`): an explicit `RetryErr` takes precedence and bypasses the InputError abort. `retry.Handle` deliberately does **not** apply the InputError abort (its callers signal abort via `shouldRetry=false`). Four flusher startup callsites that must retry through transient "not ready" errors were given explicit `RetryErr` escape hatches. **D. segcore (C++→Go) error classification.** A single shared Go-side table (`pkg/util/merr/segcore.go`) maps each segcore code to a merr sentinel + InputError/signal category, replacing scattered hand-written `if errorCode == ...` switches in the cgo wrappers. **Wire `Code` values change for every segcore pass-through error, not just the remapped ones.** Named sentinels remap (C++ `2003` → merr `2001`, `2033` → `2002`, Folly/Knowhere codes likewise); **all remaining pass-through codes (`2004`–`2043`, previously surfaced to clients as raw C++ enum values) now serialize as `2000`** (`ErrSegcore`), with the original C++ code preserved in the `Reason` text (`segcoreCode=...`); unknown/future codes collapse to `2000` as well (pinned by the `wire_code_projection` test). Transient segcore classes (object storage / file IO / OOM / mmap / FieldNotLoaded — 11 codes) now report `Retriable=true`. **Any client switching on raw segcore codes in the `2004`–`2043` range must be re-checked**; the in-Reason code remains available for diagnostics. Signal codes (PretendFinished / FollyCancel) are recognized centrally. `errors.Is`-based control flow on these (e.g. scheduler skip/retry) is preserved. **E. InputError classification (25 sentinels + dynamic marks).** 25 sentinels in `errors.go` carry `WithErrorType(InputError)` (the Collection / ResourceGroup / Database families, `ErrIndexDuplicate`, `ErrParameterInvalid`, `ErrPrivilegeNotAuthenticated`, `ErrImportFailed`, `ErrQueryPlan`, ...), plus dynamic marks for the 8 segcore input codes (ExprInvalid, DimNotMatch, MetricTypeInvalid, FieldIDInvalid, ...) and `WrapErrAsInputError`. The widest blast radius is `ErrParameterInvalid` (1100): ~2335 `WrapErrParameterInvalid*` callsites now classify as input / non-retriable. Because of C1/C2 this changes retriability for any path that returns these. **The audit to confirm no transient path was mis-marked is the single most important review item** (see Part 3). One reverse correction: storage field-stats parsing moved from `ErrParameterInvalid` (input) to `ErrDataIntegrity` — a corrupted stored stat is data corruption, not user input. ### Part 3 — Known risks & traps (called out proactively) 1. **`merr.Wrap` vs `WrapErr*Err` (code-masking).** `WrapErr*Err` builds a `wrappedMilvusError{sentinel: ErrServiceInternal}` whose `code()` returns the *outer* sentinel — it overwrites the inner typed code and hides the `errors.Is` chain. This is intentional (use it to *deliberately* downgrade), but it was a recurring conversion defect; the rule "add context with `merr.Wrap`, downgrade with `WrapErr*Err`" is enforced by convention and reviewed across the diff. 2. **InputError × `retry.Do` blast radius.** Marking a sentinel `InputError` makes any `retry.Do(...)` without a `RetryErr` predicate stop retrying it. Reviewers should sanity-check that no transient use of the 19 newly-marked sentinels (especially `ErrParameterInvalid`) sits inside a retry loop that needed to keep spinning. The known flusher cases were handled (see C2). 3. **The ~340 raw-error allowlist.** What remains as bare `errors.New` is, by design: package-level sentinels (caught by `errors.Is`), `//go:build test` sites, and out-of-band trees (`cmd/`, `tests/`, codegen, walimpls). The linter only bans the *direct-return* form; assignment-then-return escapes and the full no-exceptions ban are deferred to an AST-based linter (Tier 2, documented). 4. **segcore C++ second step deferred.** This PR unifies classification on the Go side; splitting the dual-semantic C++ codes at the source is a follow-up. --- ## Validation - `make verifiers`: Go side clean (gofmt + static-check across modules, including the new `rawmerrerror` rule with a 0-hit baseline repo-wide). - `make test-go`: passing; the one real regression introduced (a datanode `invalid_task_type` assertion shifting `1` → `5` from a ParameterInvalid conversion) was fixed in-tree. - go_client e2e CreateIndex assertions aligned to the new merr messages. --------- Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
5580 lines
179 KiB
Go
5580 lines
179 KiB
Go
package datacoord
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math/rand"
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/bytedance/mockey"
|
|
"github.com/cockroachdb/errors"
|
|
"github.com/samber/lo"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/mock"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/stretchr/testify/suite"
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v3/commonpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v3/milvuspb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v3/msgpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v3/schemapb"
|
|
"github.com/milvus-io/milvus/internal/coordinator/snmanager"
|
|
"github.com/milvus-io/milvus/internal/datacoord/allocator"
|
|
"github.com/milvus-io/milvus/internal/datacoord/broker"
|
|
"github.com/milvus-io/milvus/internal/distributed/streaming"
|
|
etcdkv "github.com/milvus-io/milvus/internal/kv/etcd"
|
|
datacoordkv "github.com/milvus-io/milvus/internal/metastore/kv/datacoord"
|
|
"github.com/milvus-io/milvus/internal/metastore/mocks"
|
|
"github.com/milvus-io/milvus/internal/metastore/model"
|
|
mocks2 "github.com/milvus-io/milvus/internal/mocks"
|
|
"github.com/milvus-io/milvus/internal/mocks/distributed/mock_streaming"
|
|
"github.com/milvus-io/milvus/internal/mocks/mock_storage"
|
|
"github.com/milvus-io/milvus/internal/mocks/streamingcoord/server/mock_balancer"
|
|
"github.com/milvus-io/milvus/internal/mocks/streamingcoord/server/mock_broadcaster"
|
|
"github.com/milvus-io/milvus/internal/storage"
|
|
"github.com/milvus-io/milvus/internal/storagev2/packed"
|
|
"github.com/milvus-io/milvus/internal/streamingcoord/server/balancer"
|
|
"github.com/milvus-io/milvus/internal/streamingcoord/server/balancer/balance"
|
|
"github.com/milvus-io/milvus/internal/streamingcoord/server/balancer/channel"
|
|
"github.com/milvus-io/milvus/internal/streamingcoord/server/broadcaster"
|
|
"github.com/milvus-io/milvus/internal/streamingcoord/server/broadcaster/broadcast"
|
|
"github.com/milvus-io/milvus/internal/streamingcoord/server/broadcaster/registry"
|
|
"github.com/milvus-io/milvus/internal/types"
|
|
"github.com/milvus-io/milvus/pkg/v3/kv"
|
|
"github.com/milvus-io/milvus/pkg/v3/log"
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/datapb"
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/indexpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/internalpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/messagespb"
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/workerpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/streaming/util/message"
|
|
types2 "github.com/milvus-io/milvus/pkg/v3/streaming/util/types"
|
|
"github.com/milvus-io/milvus/pkg/v3/streaming/walimpls/impls/rmq"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/funcutil"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/lock"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/merr"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/metautil"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/paramtable"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/retry"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/timerecord"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/tsoutil"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/typeutil"
|
|
)
|
|
|
|
type ServerSuite struct {
|
|
suite.Suite
|
|
|
|
testServer *Server
|
|
mockMixCoord *mocks2.MixCoord
|
|
}
|
|
|
|
func (s *ServerSuite) SetupSuite() {
|
|
snmanager.ResetStreamingNodeManager()
|
|
b := mock_balancer.NewMockBalancer(s.T())
|
|
b.EXPECT().WatchChannelAssignments(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, cb balancer.WatchChannelAssignmentsCallback) error {
|
|
<-ctx.Done()
|
|
return ctx.Err()
|
|
})
|
|
b.EXPECT().GetLatestWALLocated(mock.Anything, mock.Anything).Return(0, true).Maybe()
|
|
balance.Register(b)
|
|
}
|
|
|
|
func (s *ServerSuite) SetupTest() {
|
|
s.testServer = newTestServer(s.T())
|
|
s.mockMixCoord = mocks2.NewMixCoord(s.T())
|
|
s.testServer.mixCoord = s.mockMixCoord
|
|
}
|
|
|
|
func (s *ServerSuite) TearDownTest() {
|
|
if s.testServer != nil {
|
|
log.Info("ServerSuite tears down test", zap.String("name", s.T().Name()))
|
|
closeTestServer(s.T(), s.testServer)
|
|
}
|
|
}
|
|
|
|
func TestServerSuite(t *testing.T) {
|
|
suite.Run(t, new(ServerSuite))
|
|
}
|
|
|
|
func (s *ServerSuite) TestGetFlushState_ByFlushTs() {
|
|
s.mockMixCoord.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, req *milvuspb.DescribeCollectionRequest) (*milvuspb.DescribeCollectionResponse, error) {
|
|
if req.CollectionID == 0 {
|
|
return &milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
CollectionID: 0,
|
|
VirtualChannelNames: []string{"ch1"},
|
|
}, nil
|
|
}
|
|
return &milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
CollectionID: 1,
|
|
}, nil
|
|
})
|
|
tests := []struct {
|
|
description string
|
|
inTs Timestamp
|
|
|
|
expected bool
|
|
}{
|
|
{"channel cp > flush ts", 11, true},
|
|
{"channel cp = flush ts", 12, true},
|
|
{"channel cp < flush ts", 13, false},
|
|
}
|
|
|
|
err := s.testServer.meta.UpdateChannelCheckpoint(context.TODO(), "ch1", &msgpb.MsgPosition{
|
|
MsgID: []byte{1},
|
|
Timestamp: 12,
|
|
})
|
|
s.Require().NoError(err)
|
|
for _, test := range tests {
|
|
s.Run(test.description, func() {
|
|
resp, err := s.testServer.GetFlushState(context.TODO(), &datapb.GetFlushStateRequest{FlushTs: test.inTs})
|
|
s.NoError(err)
|
|
s.EqualValues(&milvuspb.GetFlushStateResponse{
|
|
Status: merr.Success(),
|
|
Flushed: test.expected,
|
|
}, resp)
|
|
})
|
|
}
|
|
|
|
resp, err := s.testServer.GetFlushState(context.TODO(), &datapb.GetFlushStateRequest{CollectionID: 1, FlushTs: 13})
|
|
s.NoError(err)
|
|
s.EqualValues(&milvuspb.GetFlushStateResponse{
|
|
Status: merr.Success(),
|
|
Flushed: true,
|
|
}, resp)
|
|
}
|
|
|
|
func (s *ServerSuite) TestGetFlushState_ByFlushTsMissingCheckpoint() {
|
|
s.mockMixCoord.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
CollectionID: 0,
|
|
VirtualChannelNames: []string{"missing-cp-channel"},
|
|
}, nil)
|
|
|
|
resp, err := s.testServer.GetFlushState(context.TODO(), &datapb.GetFlushStateRequest{FlushTs: 13})
|
|
s.NoError(err)
|
|
s.EqualValues(&milvuspb.GetFlushStateResponse{
|
|
Status: merr.Success(),
|
|
Flushed: false,
|
|
}, resp)
|
|
}
|
|
|
|
func (s *ServerSuite) TestGetFlushState_BySegment() {
|
|
s.mockMixCoord.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, req *milvuspb.DescribeCollectionRequest) (*milvuspb.DescribeCollectionResponse, error) {
|
|
return &milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
VirtualChannelNames: []string{"ch1"},
|
|
}, nil
|
|
})
|
|
tests := []struct {
|
|
description string
|
|
segID int64
|
|
state commonpb.SegmentState
|
|
|
|
expected bool
|
|
}{
|
|
{"flushed seg1", 1, commonpb.SegmentState_Flushed, true},
|
|
{"flushed seg2", 2, commonpb.SegmentState_Flushed, true},
|
|
{"sealed seg3", 3, commonpb.SegmentState_Sealed, false},
|
|
{"compacted/dropped seg4", 4, commonpb.SegmentState_Dropped, true},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
s.Run(test.description, func() {
|
|
err := s.testServer.meta.AddSegment(context.TODO(), &SegmentInfo{
|
|
SegmentInfo: &datapb.SegmentInfo{
|
|
ID: test.segID,
|
|
State: test.state,
|
|
},
|
|
})
|
|
|
|
s.Require().NoError(err)
|
|
err = s.testServer.meta.UpdateChannelCheckpoint(context.TODO(), "ch1", &msgpb.MsgPosition{
|
|
MsgID: []byte{1},
|
|
Timestamp: 12,
|
|
})
|
|
s.Require().NoError(err)
|
|
|
|
resp, err := s.testServer.GetFlushState(context.TODO(), &datapb.GetFlushStateRequest{SegmentIDs: []int64{test.segID}})
|
|
s.NoError(err)
|
|
s.EqualValues(&milvuspb.GetFlushStateResponse{
|
|
Status: merr.Success(),
|
|
Flushed: test.expected,
|
|
}, resp)
|
|
})
|
|
}
|
|
}
|
|
|
|
func (s *ServerSuite) TestSaveBinlogPath_ClosedServer() {
|
|
s.TearDownTest()
|
|
resp, err := s.testServer.SaveBinlogPaths(context.Background(), &datapb.SaveBinlogPathsRequest{
|
|
SegmentID: 1,
|
|
Channel: "test",
|
|
})
|
|
s.NoError(err)
|
|
s.ErrorIs(merr.Error(resp), merr.ErrServiceNotReady)
|
|
}
|
|
|
|
func (s *ServerSuite) TestSaveBinlogPath_ChannelNotMatch() {
|
|
resp, err := s.testServer.SaveBinlogPaths(context.Background(), &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
SourceID: 1,
|
|
},
|
|
SegmentID: 1,
|
|
Channel: "test",
|
|
})
|
|
s.NoError(err)
|
|
s.ErrorIs(merr.Error(resp), merr.ErrChannelNotFound)
|
|
}
|
|
|
|
func (s *ServerSuite) TestSaveBinlogPath_SaveUnhealthySegment() {
|
|
s.testServer.meta.AddCollection(&collectionInfo{ID: 0})
|
|
|
|
segments := map[int64]commonpb.SegmentState{
|
|
1: commonpb.SegmentState_NotExist,
|
|
2: commonpb.SegmentState_Dropped,
|
|
}
|
|
for segID, state := range segments {
|
|
info := &datapb.SegmentInfo{
|
|
ID: segID,
|
|
InsertChannel: "ch1",
|
|
State: state,
|
|
}
|
|
err := s.testServer.meta.AddSegment(context.TODO(), NewSegmentInfo(info))
|
|
s.Require().NoError(err)
|
|
}
|
|
|
|
tests := []struct {
|
|
description string
|
|
inSeg int64
|
|
|
|
expectedError error
|
|
}{
|
|
{"segment not exist", 1, merr.ErrSegmentNotFound},
|
|
{"segment dropped", 2, nil},
|
|
{"segment not in meta", 3, merr.ErrSegmentNotFound},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
s.Run(test.description, func() {
|
|
ctx := context.Background()
|
|
resp, err := s.testServer.SaveBinlogPaths(ctx, &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
Timestamp: uint64(time.Now().Unix()),
|
|
},
|
|
SegmentID: test.inSeg,
|
|
Channel: "ch1",
|
|
})
|
|
s.NoError(err)
|
|
s.ErrorIs(merr.Error(resp), test.expectedError)
|
|
})
|
|
}
|
|
}
|
|
|
|
func (s *ServerSuite) TestSaveBinlogPath_SaveDroppedSegment() {
|
|
s.testServer.meta.AddCollection(&collectionInfo{ID: 0})
|
|
|
|
segments := map[int64]commonpb.SegmentState{
|
|
0: commonpb.SegmentState_Flushed,
|
|
1: commonpb.SegmentState_Sealed,
|
|
2: commonpb.SegmentState_Sealed,
|
|
}
|
|
for segID, state := range segments {
|
|
numOfRows := int64(100)
|
|
if segID == 2 {
|
|
numOfRows = 0
|
|
}
|
|
info := &datapb.SegmentInfo{
|
|
ID: segID,
|
|
InsertChannel: "ch1",
|
|
State: state,
|
|
Level: datapb.SegmentLevel_L1,
|
|
NumOfRows: numOfRows,
|
|
}
|
|
err := s.testServer.meta.AddSegment(context.TODO(), NewSegmentInfo(info))
|
|
s.Require().NoError(err)
|
|
}
|
|
|
|
tests := []struct {
|
|
description string
|
|
inSegID int64
|
|
inDropped bool
|
|
inFlushed bool
|
|
numOfRows int64
|
|
|
|
expectedState commonpb.SegmentState
|
|
}{
|
|
{"segID=0, flushed to dropped", 0, true, false, 100, commonpb.SegmentState_Dropped},
|
|
{"segID=1, sealed to flushing", 1, false, true, 100, commonpb.SegmentState_Flushed},
|
|
// empty segment flush should be dropped directly.
|
|
{"segID=2, sealed to dropped", 2, false, true, 0, commonpb.SegmentState_Dropped},
|
|
}
|
|
|
|
paramtable.Get().Save(paramtable.Get().DataCoordCfg.EnableAutoCompaction.Key, "False")
|
|
defer paramtable.Get().Reset(paramtable.Get().DataCoordCfg.EnableAutoCompaction.Key)
|
|
for _, test := range tests {
|
|
s.Run(test.description, func() {
|
|
ctx := context.Background()
|
|
resp, err := s.testServer.SaveBinlogPaths(ctx, &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
Timestamp: uint64(time.Now().Unix()),
|
|
},
|
|
SegmentID: test.inSegID,
|
|
Channel: "ch1",
|
|
Flushed: test.inFlushed,
|
|
Dropped: test.inDropped,
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(resp.ErrorCode, commonpb.ErrorCode_Success)
|
|
|
|
segment := s.testServer.meta.GetSegment(context.TODO(), test.inSegID)
|
|
s.NotNil(segment)
|
|
s.EqualValues(0, len(segment.GetBinlogs()))
|
|
s.EqualValues(segment.NumOfRows, test.numOfRows)
|
|
|
|
s.Equal(test.expectedState, segment.GetState())
|
|
})
|
|
}
|
|
}
|
|
|
|
func (s *ServerSuite) TestSaveBinlogPath_TextRequiresStorageV3Manifest() {
|
|
s.testServer.meta.AddCollection(&collectionInfo{
|
|
ID: 0,
|
|
Schema: &schemapb.CollectionSchema{
|
|
Fields: []*schemapb.FieldSchema{
|
|
{FieldID: 100, DataType: schemapb.DataType_Int64, IsPrimaryKey: true},
|
|
{FieldID: 101, DataType: schemapb.DataType_Text},
|
|
},
|
|
},
|
|
})
|
|
err := s.testServer.meta.AddSegment(context.TODO(), NewSegmentInfo(&datapb.SegmentInfo{
|
|
ID: 10,
|
|
CollectionID: 0,
|
|
PartitionID: 1,
|
|
InsertChannel: "ch1",
|
|
State: commonpb.SegmentState_Sealed,
|
|
Level: datapb.SegmentLevel_L1,
|
|
NumOfRows: 1,
|
|
}))
|
|
s.Require().NoError(err)
|
|
|
|
resp, err := s.testServer.SaveBinlogPaths(context.Background(), &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{Timestamp: uint64(time.Now().Unix())},
|
|
SegmentID: 10,
|
|
CollectionID: 0,
|
|
PartitionID: 1,
|
|
Channel: "ch1",
|
|
SegLevel: datapb.SegmentLevel_L1,
|
|
Flushed: true,
|
|
StorageVersion: storage.StorageV2,
|
|
})
|
|
s.NoError(err)
|
|
s.ErrorIs(merr.Error(resp), merr.ErrParameterInvalid)
|
|
|
|
resp, err = s.testServer.SaveBinlogPaths(context.Background(), &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{Timestamp: uint64(time.Now().Unix())},
|
|
SegmentID: 10,
|
|
CollectionID: 0,
|
|
PartitionID: 1,
|
|
Channel: "ch1",
|
|
SegLevel: datapb.SegmentLevel_L1,
|
|
Flushed: true,
|
|
StorageVersion: storage.StorageV3,
|
|
})
|
|
s.NoError(err)
|
|
s.ErrorIs(merr.Error(resp), merr.ErrParameterInvalid)
|
|
|
|
resp, err = s.testServer.SaveBinlogPaths(context.Background(), &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{Timestamp: uint64(time.Now().Unix())},
|
|
SegmentID: 10,
|
|
CollectionID: 0,
|
|
PartitionID: 1,
|
|
Channel: "ch1",
|
|
SegLevel: datapb.SegmentLevel_L1,
|
|
Flushed: false,
|
|
StorageVersion: storage.StorageV3,
|
|
})
|
|
s.NoError(err)
|
|
s.ErrorIs(merr.Error(resp), merr.ErrParameterInvalid)
|
|
|
|
err = s.testServer.meta.AddSegment(context.TODO(), NewSegmentInfo(&datapb.SegmentInfo{
|
|
ID: 11,
|
|
CollectionID: 0,
|
|
PartitionID: 1,
|
|
InsertChannel: "ch1",
|
|
State: commonpb.SegmentState_Dropped,
|
|
Level: datapb.SegmentLevel_L1,
|
|
NumOfRows: 1,
|
|
}))
|
|
s.Require().NoError(err)
|
|
|
|
resp, err = s.testServer.SaveBinlogPaths(context.Background(), &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{Timestamp: uint64(time.Now().Unix())},
|
|
SegmentID: 11,
|
|
CollectionID: 0,
|
|
PartitionID: 1,
|
|
Channel: "ch1",
|
|
SegLevel: datapb.SegmentLevel_L1,
|
|
Flushed: true,
|
|
StorageVersion: storage.StorageV2,
|
|
})
|
|
s.NoError(err)
|
|
s.True(merr.Ok(resp))
|
|
}
|
|
|
|
func (s *ServerSuite) TestSaveBinlogPath_L0Segment() {
|
|
s.testServer.meta.AddCollection(&collectionInfo{ID: 0})
|
|
|
|
segment := s.testServer.meta.GetHealthySegment(context.TODO(), 1)
|
|
s.Require().Nil(segment)
|
|
ctx := context.Background()
|
|
resp, err := s.testServer.SaveBinlogPaths(ctx, &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
Timestamp: uint64(time.Now().Unix()),
|
|
},
|
|
SegmentID: 1,
|
|
PartitionID: 1,
|
|
CollectionID: 0,
|
|
SegLevel: datapb.SegmentLevel_L0,
|
|
Channel: "ch1",
|
|
Deltalogs: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/1",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/2",
|
|
EntriesNum: 5,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
CheckPoints: []*datapb.CheckPoint{
|
|
{
|
|
SegmentID: 1,
|
|
Position: &msgpb.MsgPosition{
|
|
ChannelName: "ch1",
|
|
MsgID: []byte{1, 2, 3},
|
|
MsgGroup: "",
|
|
Timestamp: 0,
|
|
},
|
|
NumOfRows: 12,
|
|
},
|
|
},
|
|
Flushed: true,
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(resp.ErrorCode, commonpb.ErrorCode_Success)
|
|
|
|
segment = s.testServer.meta.GetHealthySegment(context.TODO(), 1)
|
|
s.NotNil(segment)
|
|
s.EqualValues(datapb.SegmentLevel_L0, segment.GetLevel())
|
|
}
|
|
|
|
func (s *ServerSuite) TestSaveBinlogPath_NormalCase() {
|
|
s.testServer.meta.AddCollection(&collectionInfo{ID: 0})
|
|
|
|
segments := map[int64]int64{
|
|
0: 0,
|
|
1: 0,
|
|
2: 0,
|
|
3: 0,
|
|
}
|
|
for segID, collID := range segments {
|
|
info := &datapb.SegmentInfo{
|
|
ID: segID,
|
|
CollectionID: collID,
|
|
InsertChannel: "ch1",
|
|
State: commonpb.SegmentState_Growing,
|
|
}
|
|
err := s.testServer.meta.AddSegment(context.TODO(), NewSegmentInfo(info))
|
|
s.Require().NoError(err)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
resp, err := s.testServer.SaveBinlogPaths(ctx, &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
Timestamp: uint64(time.Now().Unix()),
|
|
},
|
|
SegmentID: 1,
|
|
CollectionID: 0,
|
|
Channel: "ch1",
|
|
Field2BinlogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/1",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/2",
|
|
EntriesNum: 5,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Field2StatslogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogPath: "/by-dev/test_stats/0/1/1/1/1",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test_stats/0/1/1/1/2",
|
|
EntriesNum: 5,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
CheckPoints: []*datapb.CheckPoint{
|
|
{
|
|
SegmentID: 1,
|
|
Position: &msgpb.MsgPosition{
|
|
ChannelName: "ch1",
|
|
MsgID: []byte{1, 2, 3},
|
|
MsgGroup: "",
|
|
Timestamp: 0,
|
|
},
|
|
NumOfRows: 12,
|
|
},
|
|
},
|
|
Flushed: false,
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(resp.ErrorCode, commonpb.ErrorCode_Success)
|
|
|
|
segment := s.testServer.meta.GetHealthySegment(context.TODO(), 1)
|
|
s.NotNil(segment)
|
|
binlogs := segment.GetBinlogs()
|
|
s.EqualValues(1, len(binlogs))
|
|
fieldBinlogs := binlogs[0]
|
|
s.NotNil(fieldBinlogs)
|
|
s.EqualValues(2, len(fieldBinlogs.GetBinlogs()))
|
|
s.EqualValues(1, fieldBinlogs.GetFieldID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[0].GetLogPath())
|
|
s.EqualValues(int64(1), fieldBinlogs.GetBinlogs()[0].GetLogID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[1].GetLogPath())
|
|
s.EqualValues(int64(2), fieldBinlogs.GetBinlogs()[1].GetLogID())
|
|
|
|
s.EqualValues(segment.DmlPosition.ChannelName, "ch1")
|
|
s.EqualValues(segment.DmlPosition.MsgID, []byte{1, 2, 3})
|
|
s.EqualValues(segment.NumOfRows, 10)
|
|
|
|
resp, err = s.testServer.SaveBinlogPaths(ctx, &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
Timestamp: uint64(time.Now().Unix()),
|
|
},
|
|
SegmentID: 2,
|
|
CollectionID: 0,
|
|
Channel: "ch1",
|
|
Field2BinlogPaths: []*datapb.FieldBinlog{},
|
|
Field2StatslogPaths: []*datapb.FieldBinlog{},
|
|
CheckPoints: []*datapb.CheckPoint{},
|
|
Flushed: true,
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(resp.ErrorCode, commonpb.ErrorCode_Success)
|
|
segment = s.testServer.meta.GetSegment(context.TODO(), 2)
|
|
s.NotNil(segment)
|
|
s.Equal(commonpb.SegmentState_Dropped, segment.GetState())
|
|
|
|
resp, err = s.testServer.SaveBinlogPaths(ctx, &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
Timestamp: uint64(time.Now().Unix()),
|
|
},
|
|
SegmentID: 3,
|
|
CollectionID: 0,
|
|
Channel: "ch1",
|
|
Field2BinlogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/1",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/2",
|
|
EntriesNum: 5,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Field2StatslogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogPath: "/by-dev/test_stats/0/1/1/1/1",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test_stats/0/1/1/1/2",
|
|
EntriesNum: 5,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
CheckPoints: []*datapb.CheckPoint{
|
|
{
|
|
SegmentID: 3,
|
|
Position: &msgpb.MsgPosition{
|
|
ChannelName: "ch1",
|
|
MsgID: []byte{1, 2, 3},
|
|
MsgGroup: "",
|
|
Timestamp: 0,
|
|
},
|
|
NumOfRows: 12,
|
|
},
|
|
},
|
|
Flushed: false,
|
|
WithFullBinlogs: true,
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(resp.ErrorCode, commonpb.ErrorCode_Success)
|
|
|
|
segment = s.testServer.meta.GetHealthySegment(context.TODO(), 3)
|
|
s.NotNil(segment)
|
|
binlogs = segment.GetBinlogs()
|
|
s.EqualValues(1, len(binlogs))
|
|
fieldBinlogs = binlogs[0]
|
|
s.NotNil(fieldBinlogs)
|
|
s.EqualValues(2, len(fieldBinlogs.GetBinlogs()))
|
|
s.EqualValues(1, fieldBinlogs.GetFieldID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[0].GetLogPath())
|
|
s.EqualValues(int64(1), fieldBinlogs.GetBinlogs()[0].GetLogID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[1].GetLogPath())
|
|
s.EqualValues(int64(2), fieldBinlogs.GetBinlogs()[1].GetLogID())
|
|
|
|
resp, err = s.testServer.SaveBinlogPaths(ctx, &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
Timestamp: uint64(time.Now().Unix()),
|
|
},
|
|
SegmentID: 3,
|
|
CollectionID: 0,
|
|
Channel: "ch1",
|
|
Field2BinlogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/1",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/2",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test/0/1/1/1/3",
|
|
EntriesNum: 5,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Field2StatslogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogPath: "/by-dev/test_stats/0/1/1/1/1",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test_stats/0/1/1/1/2",
|
|
EntriesNum: 5,
|
|
},
|
|
{
|
|
LogPath: "/by-dev/test_stats/0/1/1/1/3",
|
|
EntriesNum: 5,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
CheckPoints: []*datapb.CheckPoint{
|
|
{
|
|
SegmentID: 3,
|
|
Position: &msgpb.MsgPosition{
|
|
ChannelName: "ch1",
|
|
MsgID: []byte{1, 2, 3},
|
|
MsgGroup: "",
|
|
Timestamp: 1,
|
|
},
|
|
NumOfRows: 12,
|
|
},
|
|
},
|
|
Flushed: false,
|
|
WithFullBinlogs: true,
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(resp.ErrorCode, commonpb.ErrorCode_Success)
|
|
|
|
segment = s.testServer.meta.GetHealthySegment(context.TODO(), 3)
|
|
s.NotNil(segment)
|
|
binlogs = segment.GetBinlogs()
|
|
s.EqualValues(1, len(binlogs))
|
|
fieldBinlogs = binlogs[0]
|
|
s.NotNil(fieldBinlogs)
|
|
s.EqualValues(3, len(fieldBinlogs.GetBinlogs()))
|
|
s.EqualValues(1, fieldBinlogs.GetFieldID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[0].GetLogPath())
|
|
s.EqualValues(int64(1), fieldBinlogs.GetBinlogs()[0].GetLogID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[1].GetLogPath())
|
|
s.EqualValues(int64(2), fieldBinlogs.GetBinlogs()[1].GetLogID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[2].GetLogPath())
|
|
s.EqualValues(int64(3), fieldBinlogs.GetBinlogs()[2].GetLogID())
|
|
|
|
resp, err = s.testServer.SaveBinlogPaths(ctx, &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
Timestamp: uint64(time.Now().Unix()),
|
|
},
|
|
SegmentID: 3,
|
|
CollectionID: 0,
|
|
Channel: "ch1",
|
|
Field2BinlogPaths: []*datapb.FieldBinlog{},
|
|
Field2StatslogPaths: []*datapb.FieldBinlog{},
|
|
CheckPoints: []*datapb.CheckPoint{
|
|
{
|
|
SegmentID: 3,
|
|
Position: &msgpb.MsgPosition{
|
|
ChannelName: "ch1",
|
|
MsgID: []byte{1, 2, 3},
|
|
MsgGroup: "",
|
|
Timestamp: 0,
|
|
},
|
|
NumOfRows: 12,
|
|
},
|
|
},
|
|
Flushed: false,
|
|
WithFullBinlogs: true,
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(resp.ErrorCode, commonpb.ErrorCode_Success)
|
|
|
|
segment = s.testServer.meta.GetHealthySegment(context.TODO(), 3)
|
|
s.NotNil(segment)
|
|
binlogs = segment.GetBinlogs()
|
|
s.EqualValues(1, len(binlogs))
|
|
fieldBinlogs = binlogs[0]
|
|
s.NotNil(fieldBinlogs)
|
|
s.EqualValues(3, len(fieldBinlogs.GetBinlogs()))
|
|
s.EqualValues(1, fieldBinlogs.GetFieldID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[0].GetLogPath())
|
|
s.EqualValues(int64(1), fieldBinlogs.GetBinlogs()[0].GetLogID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[1].GetLogPath())
|
|
s.EqualValues(int64(2), fieldBinlogs.GetBinlogs()[1].GetLogID())
|
|
s.EqualValues("", fieldBinlogs.GetBinlogs()[2].GetLogPath())
|
|
s.EqualValues(int64(3), fieldBinlogs.GetBinlogs()[2].GetLogID())
|
|
}
|
|
|
|
func (s *ServerSuite) TestFlush_NormalCase() {
|
|
req := &datapb.FlushRequest{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_Flush,
|
|
MsgID: 0,
|
|
Timestamp: 0,
|
|
SourceID: 0,
|
|
},
|
|
DbID: 0,
|
|
CollectionID: 0,
|
|
}
|
|
|
|
schema := newTestSchema()
|
|
s.testServer.meta.AddCollection(&collectionInfo{ID: 0, Schema: schema, Partitions: []int64{}, VChannelNames: []string{"channel-1"}})
|
|
allocations, err := s.testServer.segmentManager.AllocSegment(context.TODO(), 0, 1, "channel-1", 1, storage.StorageV1)
|
|
s.NoError(err)
|
|
s.EqualValues(1, len(allocations))
|
|
expireTs := allocations[0].ExpireTime
|
|
segID := allocations[0].SegmentID
|
|
|
|
info, err := s.testServer.segmentManager.AllocNewGrowingSegment(context.TODO(), AllocNewGrowingSegmentRequest{
|
|
CollectionID: 0,
|
|
PartitionID: 1,
|
|
SegmentID: 1,
|
|
ChannelName: "channel1-1",
|
|
StorageVersion: storage.StorageV1,
|
|
IsCreatedByStreaming: true,
|
|
})
|
|
s.NoError(err)
|
|
s.NotNil(info)
|
|
|
|
resp, err := s.testServer.Flush(context.TODO(), req)
|
|
s.NoError(err)
|
|
s.EqualValues(commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
|
|
s.testServer.meta.SetRowCount(segID, 1)
|
|
ids, err := s.testServer.segmentManager.GetFlushableSegments(context.TODO(), "channel-1", expireTs)
|
|
s.NoError(err)
|
|
s.EqualValues(1, len(ids))
|
|
s.EqualValues(segID, ids[0])
|
|
}
|
|
|
|
func (s *ServerSuite) TestFlush_CollectionNotExist() {
|
|
req := &datapb.FlushRequest{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_Flush,
|
|
MsgID: 0,
|
|
Timestamp: 0,
|
|
SourceID: 0,
|
|
},
|
|
DbID: 0,
|
|
CollectionID: 0,
|
|
}
|
|
|
|
resp, err := s.testServer.Flush(context.TODO(), req)
|
|
s.NoError(err)
|
|
s.EqualValues(commonpb.ErrorCode_CollectionNotExists, resp.GetStatus().GetErrorCode())
|
|
|
|
mockHandler := NewNMockHandler(s.T())
|
|
mockHandler.EXPECT().GetCollection(mock.Anything, mock.Anything).
|
|
Return(nil, errors.New("mock error"))
|
|
s.testServer.handler = mockHandler
|
|
|
|
resp2, err2 := s.testServer.Flush(context.TODO(), req)
|
|
s.NoError(err2)
|
|
s.EqualValues(commonpb.ErrorCode_UnexpectedError, resp2.GetStatus().GetErrorCode())
|
|
}
|
|
|
|
func (s *ServerSuite) TestFlush_ClosedServer() {
|
|
s.TearDownTest()
|
|
req := &datapb.FlushRequest{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_Flush,
|
|
MsgID: 0,
|
|
Timestamp: 0,
|
|
SourceID: 0,
|
|
},
|
|
DbID: 0,
|
|
CollectionID: 0,
|
|
}
|
|
resp, err := s.testServer.Flush(context.Background(), req)
|
|
s.NoError(err)
|
|
s.ErrorIs(merr.Error(resp.GetStatus()), merr.ErrServiceNotReady)
|
|
}
|
|
|
|
func (s *ServerSuite) TestGetSegmentInfoChannel() {
|
|
resp, err := s.testServer.GetSegmentInfoChannel(context.TODO(), nil)
|
|
s.NoError(err)
|
|
s.EqualValues(commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
s.EqualValues(Params.CommonCfg.DataCoordSegmentInfo.GetValue(), resp.Value)
|
|
}
|
|
|
|
func (s *ServerSuite) TestGetSegmentInfo() {
|
|
testSegmentID := int64(1)
|
|
s.testServer.meta.AddSegment(context.TODO(), &SegmentInfo{
|
|
SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 1,
|
|
Deltalogs: []*datapb.FieldBinlog{{FieldID: 100, Binlogs: []*datapb.Binlog{{LogID: 100}}}},
|
|
},
|
|
})
|
|
|
|
s.testServer.meta.AddSegment(context.TODO(), &SegmentInfo{
|
|
SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 2,
|
|
Deltalogs: []*datapb.FieldBinlog{{FieldID: 100, Binlogs: []*datapb.Binlog{{LogID: 101}}}},
|
|
CompactionFrom: []int64{1},
|
|
},
|
|
})
|
|
|
|
resp, err := s.testServer.GetSegmentInfo(context.TODO(), &datapb.GetSegmentInfoRequest{
|
|
SegmentIDs: []int64{testSegmentID},
|
|
IncludeUnHealthy: true,
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(2, len(resp.Infos[0].Deltalogs))
|
|
}
|
|
|
|
func (s *ServerSuite) TestAssignSegmentID() {
|
|
s.TearDownTest()
|
|
const collID = 100
|
|
const collIDInvalid = 101
|
|
const partID = 0
|
|
const channel0 = "channel0"
|
|
|
|
s.Run("assign segment normally", func() {
|
|
s.SetupTest()
|
|
defer s.TearDownTest()
|
|
|
|
schema := newTestSchema()
|
|
s.testServer.meta.AddCollection(&collectionInfo{
|
|
ID: collID,
|
|
Schema: schema,
|
|
Partitions: []int64{},
|
|
})
|
|
req := &datapb.SegmentIDRequest{
|
|
Count: 1000,
|
|
ChannelName: channel0,
|
|
CollectionID: collID,
|
|
PartitionID: partID,
|
|
}
|
|
|
|
resp, err := s.testServer.AssignSegmentID(context.TODO(), &datapb.AssignSegmentIDRequest{
|
|
NodeID: 0,
|
|
PeerRole: "",
|
|
SegmentIDRequests: []*datapb.SegmentIDRequest{req},
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(1, len(resp.SegIDAssignments))
|
|
assign := resp.SegIDAssignments[0]
|
|
s.EqualValues(commonpb.ErrorCode_Success, assign.GetStatus().GetErrorCode())
|
|
s.EqualValues(collID, assign.CollectionID)
|
|
s.EqualValues(partID, assign.PartitionID)
|
|
s.EqualValues(channel0, assign.ChannelName)
|
|
s.EqualValues(1000, assign.Count)
|
|
})
|
|
|
|
s.Run("with closed server", func() {
|
|
s.SetupTest()
|
|
s.TearDownTest()
|
|
|
|
req := &datapb.SegmentIDRequest{
|
|
Count: 100,
|
|
ChannelName: channel0,
|
|
CollectionID: collID,
|
|
PartitionID: partID,
|
|
}
|
|
resp, err := s.testServer.AssignSegmentID(context.Background(), &datapb.AssignSegmentIDRequest{
|
|
NodeID: 0,
|
|
PeerRole: "",
|
|
SegmentIDRequests: []*datapb.SegmentIDRequest{req},
|
|
})
|
|
s.NoError(err)
|
|
s.ErrorIs(merr.Error(resp.GetStatus()), merr.ErrServiceNotReady)
|
|
})
|
|
|
|
s.Run("assign segment with invalid collection", func() {
|
|
s.SetupTest()
|
|
defer s.TearDownTest()
|
|
|
|
schema := newTestSchema()
|
|
s.testServer.meta.AddCollection(&collectionInfo{
|
|
ID: collID,
|
|
Schema: schema,
|
|
Partitions: []int64{},
|
|
})
|
|
req := &datapb.SegmentIDRequest{
|
|
Count: 1000,
|
|
ChannelName: channel0,
|
|
CollectionID: collIDInvalid,
|
|
PartitionID: partID,
|
|
}
|
|
|
|
resp, err := s.testServer.AssignSegmentID(context.TODO(), &datapb.AssignSegmentIDRequest{
|
|
NodeID: 0,
|
|
PeerRole: "",
|
|
SegmentIDRequests: []*datapb.SegmentIDRequest{req},
|
|
})
|
|
s.NoError(err)
|
|
s.EqualValues(1, len(resp.SegIDAssignments))
|
|
})
|
|
}
|
|
|
|
func TestBroadcastAlteredCollection(t *testing.T) {
|
|
t.Run("test server is closed", func(t *testing.T) {
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Initializing)
|
|
ctx := context.Background()
|
|
resp, err := s.BroadcastAlteredCollection(ctx, nil)
|
|
assert.NotNil(t, resp.Reason)
|
|
assert.NoError(t, err)
|
|
})
|
|
|
|
t.Run("test meta non exist", func(t *testing.T) {
|
|
s := &Server{meta: &meta{collections: typeutil.NewConcurrentMap[UniqueID, *collectionInfo]()}}
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
ctx := context.Background()
|
|
req := &datapb.AlterCollectionRequest{
|
|
CollectionID: 1,
|
|
PartitionIDs: []int64{1},
|
|
Properties: []*commonpb.KeyValuePair{{Key: "k", Value: "v"}},
|
|
}
|
|
resp, err := s.BroadcastAlteredCollection(ctx, req)
|
|
assert.NotNil(t, resp)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, 1, s.meta.collections.Len())
|
|
})
|
|
|
|
t.Run("test update meta", func(t *testing.T) {
|
|
collections := typeutil.NewConcurrentMap[UniqueID, *collectionInfo]()
|
|
collections.Insert(1, &collectionInfo{ID: 1})
|
|
s := &Server{meta: &meta{collections: collections}}
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
ctx := context.Background()
|
|
req := &datapb.AlterCollectionRequest{
|
|
CollectionID: 1,
|
|
PartitionIDs: []int64{1},
|
|
Properties: []*commonpb.KeyValuePair{{Key: "k", Value: "v"}},
|
|
}
|
|
|
|
coll, ok := s.meta.collections.Get(1)
|
|
assert.True(t, ok)
|
|
assert.Nil(t, coll.Properties)
|
|
resp, err := s.BroadcastAlteredCollection(ctx, req)
|
|
assert.NotNil(t, resp)
|
|
assert.NoError(t, err)
|
|
coll, ok = s.meta.collections.Get(1)
|
|
assert.True(t, ok)
|
|
assert.NotNil(t, coll.Properties)
|
|
})
|
|
}
|
|
|
|
func TestServer_GcConfirm(t *testing.T) {
|
|
t.Run("closed server", func(t *testing.T) {
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Initializing)
|
|
resp, err := s.GcConfirm(context.TODO(), &datapb.GcConfirmRequest{CollectionId: 100, PartitionId: 10000})
|
|
assert.NoError(t, err)
|
|
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
})
|
|
|
|
t.Run("normal case", func(t *testing.T) {
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
m := &meta{}
|
|
catalog := mocks.NewDataCoordCatalog(t)
|
|
m.catalog = catalog
|
|
|
|
catalog.On("GcConfirm",
|
|
mock.Anything,
|
|
mock.AnythingOfType("int64"),
|
|
mock.AnythingOfType("int64")).
|
|
Return(false)
|
|
|
|
s.meta = m
|
|
|
|
resp, err := s.GcConfirm(context.TODO(), &datapb.GcConfirmRequest{CollectionId: 100, PartitionId: 10000})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
assert.False(t, resp.GetGcFinished())
|
|
})
|
|
}
|
|
|
|
func TestGetRecoveryInfoV2(t *testing.T) {
|
|
t.Run("test get recovery info with no segments", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
assert.EqualValues(t, 0, len(resp.GetSegments()))
|
|
assert.EqualValues(t, 1, len(resp.GetChannels()))
|
|
})
|
|
|
|
createSegment := func(id, collectionID, partitionID, numOfRows int64, posTs uint64,
|
|
channel string, state commonpb.SegmentState,
|
|
) *datapb.SegmentInfo {
|
|
return &datapb.SegmentInfo{
|
|
ID: id,
|
|
CollectionID: collectionID,
|
|
PartitionID: partitionID,
|
|
InsertChannel: channel,
|
|
NumOfRows: numOfRows,
|
|
State: state,
|
|
DmlPosition: &msgpb.MsgPosition{
|
|
ChannelName: channel,
|
|
MsgID: []byte{},
|
|
Timestamp: posTs,
|
|
},
|
|
StartPosition: &msgpb.MsgPosition{
|
|
ChannelName: "",
|
|
MsgID: []byte{},
|
|
MsgGroup: "",
|
|
Timestamp: 0,
|
|
},
|
|
}
|
|
}
|
|
|
|
t.Run("test get earliest position of flushed segments as seek position", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
Schema: newTestSchema(),
|
|
})
|
|
|
|
err := svr.meta.UpdateChannelCheckpoint(context.TODO(), "vchan1", &msgpb.MsgPosition{
|
|
ChannelName: "vchan1",
|
|
Timestamp: 10,
|
|
MsgID: []byte{0, 0, 0, 0, 0, 0, 0, 0},
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
err = svr.meta.indexMeta.CreateIndex(context.TODO(), &model.Index{
|
|
CollectionID: 0,
|
|
FieldID: 2,
|
|
IndexID: rand.Int63n(1000),
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
seg1 := createSegment(0, 0, 0, 100, 10, "vchan1", commonpb.SegmentState_Flushed)
|
|
seg1.Binlogs = []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
EntriesNum: 20,
|
|
LogID: 901,
|
|
},
|
|
{
|
|
EntriesNum: 20,
|
|
LogID: 902,
|
|
},
|
|
{
|
|
EntriesNum: 20,
|
|
LogID: 903,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
seg2 := createSegment(1, 0, 0, 100, 20, "vchan1", commonpb.SegmentState_Flushed)
|
|
seg2.Binlogs = []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
EntriesNum: 30,
|
|
LogID: 801,
|
|
},
|
|
{
|
|
EntriesNum: 70,
|
|
LogID: 802,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg1))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg2))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.AddSegmentIndex(context.TODO(), &model.SegmentIndex{
|
|
SegmentID: seg1.ID,
|
|
BuildID: seg1.ID,
|
|
})
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.FinishTask(&workerpb.IndexTaskInfo{
|
|
BuildID: seg1.ID,
|
|
State: commonpb.IndexState_Finished,
|
|
})
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.AddSegmentIndex(context.TODO(), &model.SegmentIndex{
|
|
SegmentID: seg2.ID,
|
|
BuildID: seg2.ID,
|
|
})
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.FinishTask(&workerpb.IndexTaskInfo{
|
|
BuildID: seg2.ID,
|
|
State: commonpb.IndexState_Finished,
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
assert.EqualValues(t, 1, len(resp.GetChannels()))
|
|
assert.EqualValues(t, 0, len(resp.GetChannels()[0].GetUnflushedSegmentIds()))
|
|
// assert.ElementsMatch(t, []int64{0, 1}, resp.GetChannels()[0].GetFlushedSegmentIds())
|
|
assert.EqualValues(t, 10, resp.GetChannels()[0].GetSeekPosition().GetTimestamp())
|
|
// assert.EqualValues(t, 2, len(resp.GetSegments()))
|
|
// Row count corrected from 100 + 100 -> 100 + 60.
|
|
// assert.EqualValues(t, 160, resp.GetSegments()[0].GetNumOfRows()+resp.GetSegments()[1].GetNumOfRows())
|
|
})
|
|
|
|
t.Run("test get recovery of unflushed segments ", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
ID: 0,
|
|
Schema: newTestSchema(),
|
|
})
|
|
|
|
err := svr.meta.UpdateChannelCheckpoint(context.TODO(), "vchan1", &msgpb.MsgPosition{
|
|
ChannelName: "vchan1",
|
|
Timestamp: 0,
|
|
MsgID: []byte{0, 0, 0, 0, 0, 0, 0, 0},
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
seg1 := createSegment(3, 0, 0, 100, 30, "vchan1", commonpb.SegmentState_Growing)
|
|
seg1.Binlogs = []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
EntriesNum: 20,
|
|
LogID: 901,
|
|
},
|
|
{
|
|
EntriesNum: 20,
|
|
LogID: 902,
|
|
},
|
|
{
|
|
EntriesNum: 20,
|
|
LogID: 903,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
seg2 := createSegment(4, 0, 0, 100, 40, "vchan1", commonpb.SegmentState_Growing)
|
|
seg2.Binlogs = []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
EntriesNum: 30,
|
|
LogID: 801,
|
|
},
|
|
{
|
|
EntriesNum: 70,
|
|
LogID: 802,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg1))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg2))
|
|
assert.NoError(t, err)
|
|
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
assert.EqualValues(t, 0, len(resp.GetSegments()))
|
|
assert.EqualValues(t, 1, len(resp.GetChannels()))
|
|
assert.NotNil(t, resp.GetChannels()[0].SeekPosition)
|
|
assert.NotEqual(t, 0, resp.GetChannels()[0].GetSeekPosition().GetTimestamp())
|
|
})
|
|
|
|
t.Run("test get binlogs", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
Schema: newTestSchema(),
|
|
})
|
|
|
|
binlogReq := &datapb.SaveBinlogPathsRequest{
|
|
SegmentID: 10087,
|
|
CollectionID: 0,
|
|
Field2BinlogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogID: 801,
|
|
},
|
|
{
|
|
LogID: 801,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Field2StatslogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogID: 10000,
|
|
},
|
|
{
|
|
LogID: 10000,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Deltalogs: []*datapb.FieldBinlog{
|
|
{
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
TimestampFrom: 0,
|
|
TimestampTo: 1,
|
|
LogPath: metautil.BuildDeltaLogPath("a", 0, 100, 0, 100000),
|
|
LogSize: 1,
|
|
LogID: 100000,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Flushed: true,
|
|
}
|
|
segment := createSegment(binlogReq.SegmentID, 0, 1, 100, 10, "vchan1", commonpb.SegmentState_Growing)
|
|
err := svr.meta.AddSegment(context.TODO(), NewSegmentInfo(segment))
|
|
assert.NoError(t, err)
|
|
|
|
err = svr.meta.indexMeta.CreateIndex(context.TODO(), &model.Index{
|
|
CollectionID: 0,
|
|
FieldID: 2,
|
|
IndexID: rand.Int63n(1000),
|
|
})
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.AddSegmentIndex(context.TODO(), &model.SegmentIndex{
|
|
SegmentID: segment.ID,
|
|
BuildID: segment.ID,
|
|
})
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.FinishTask(&workerpb.IndexTaskInfo{
|
|
BuildID: segment.ID,
|
|
State: commonpb.IndexState_Finished,
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
paramtable.Get().Save(Params.DataCoordCfg.EnableSortCompaction.Key, "false")
|
|
defer paramtable.Get().Reset(Params.DataCoordCfg.EnableSortCompaction.Key)
|
|
|
|
sResp, err := svr.SaveBinlogPaths(context.TODO(), binlogReq)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, sResp.ErrorCode)
|
|
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
PartitionIDs: []int64{1},
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.Status))
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
assert.EqualValues(t, 1, len(resp.GetSegments()))
|
|
assert.EqualValues(t, binlogReq.SegmentID, resp.GetSegments()[0].GetID())
|
|
assert.EqualValues(t, 0, len(resp.GetSegments()[0].GetBinlogs()))
|
|
})
|
|
t.Run("test data version propagated to querycoord", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
Schema: newTestSchema(),
|
|
})
|
|
|
|
const expectedDataVersion int32 = 7
|
|
binlogReq := &datapb.SaveBinlogPathsRequest{
|
|
SegmentID: 20087,
|
|
CollectionID: 0,
|
|
Field2BinlogPaths: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 1,
|
|
Binlogs: []*datapb.Binlog{
|
|
{
|
|
LogID: 801,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Flushed: true,
|
|
}
|
|
segment := createSegment(binlogReq.SegmentID, 0, 1, 100, 10, "vchan1", commonpb.SegmentState_Growing)
|
|
segment.DataVersion = expectedDataVersion
|
|
err := svr.meta.AddSegment(context.TODO(), NewSegmentInfo(segment))
|
|
assert.NoError(t, err)
|
|
|
|
err = svr.meta.indexMeta.CreateIndex(context.TODO(), &model.Index{
|
|
CollectionID: 0,
|
|
FieldID: 2,
|
|
IndexID: rand.Int63n(1000),
|
|
})
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.AddSegmentIndex(context.TODO(), &model.SegmentIndex{
|
|
SegmentID: segment.ID,
|
|
BuildID: segment.ID,
|
|
})
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.FinishTask(&workerpb.IndexTaskInfo{
|
|
BuildID: segment.ID,
|
|
State: commonpb.IndexState_Finished,
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
paramtable.Get().Save(Params.DataCoordCfg.EnableSortCompaction.Key, "false")
|
|
defer paramtable.Get().Reset(Params.DataCoordCfg.EnableSortCompaction.Key)
|
|
|
|
sResp, err := svr.SaveBinlogPaths(context.TODO(), binlogReq)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, sResp.ErrorCode)
|
|
|
|
// Sanity check: DataVersion survives SaveBinlogPaths in meta.
|
|
assert.EqualValues(t, expectedDataVersion, svr.meta.GetSegment(context.TODO(), binlogReq.SegmentID).GetDataVersion())
|
|
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
PartitionIDs: []int64{1},
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.Status))
|
|
assert.EqualValues(t, 1, len(resp.GetSegments()))
|
|
assert.EqualValues(t, binlogReq.SegmentID, resp.GetSegments()[0].GetID())
|
|
// Regression: DataVersion must be propagated to the QueryCoord response.
|
|
assert.EqualValues(t, expectedDataVersion, resp.GetSegments()[0].GetDataVersion())
|
|
})
|
|
t.Run("with dropped segments", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
ID: 0,
|
|
Schema: newTestSchema(),
|
|
})
|
|
|
|
err := svr.meta.UpdateChannelCheckpoint(context.TODO(), "vchan1", &msgpb.MsgPosition{
|
|
ChannelName: "vchan1",
|
|
Timestamp: 0,
|
|
MsgID: []byte{0, 0, 0, 0, 0, 0, 0, 0},
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
seg1 := createSegment(7, 0, 0, 100, 30, "vchan1", commonpb.SegmentState_Growing)
|
|
seg2 := createSegment(8, 0, 0, 100, 40, "vchan1", commonpb.SegmentState_Dropped)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg1))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg2))
|
|
assert.NoError(t, err)
|
|
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
assert.EqualValues(t, 0, len(resp.GetSegments()))
|
|
assert.EqualValues(t, 1, len(resp.GetChannels()))
|
|
assert.NotNil(t, resp.GetChannels()[0].SeekPosition)
|
|
assert.NotEqual(t, 0, resp.GetChannels()[0].GetSeekPosition().GetTimestamp())
|
|
// assert.Len(t, resp.GetChannels()[0].GetDroppedSegmentIds(), 1)
|
|
// assert.Equal(t, UniqueID(8), resp.GetChannels()[0].GetDroppedSegmentIds()[0])
|
|
})
|
|
|
|
t.Run("with fake segments", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
ID: 0,
|
|
Schema: newTestSchema(),
|
|
})
|
|
|
|
err := svr.meta.UpdateChannelCheckpoint(context.TODO(), "vchan1", &msgpb.MsgPosition{
|
|
ChannelName: "vchan1",
|
|
Timestamp: 0,
|
|
MsgID: []byte{0, 0, 0, 0, 0, 0, 0, 0},
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
seg1 := createSegment(7, 0, 0, 100, 30, "vchan1", commonpb.SegmentState_Growing)
|
|
seg2 := createSegment(8, 0, 0, 100, 40, "vchan1", commonpb.SegmentState_Flushed)
|
|
seg2.IsFake = true
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg1))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg2))
|
|
assert.NoError(t, err)
|
|
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
assert.EqualValues(t, 0, len(resp.GetSegments()))
|
|
assert.EqualValues(t, 1, len(resp.GetChannels()))
|
|
assert.NotNil(t, resp.GetChannels()[0].SeekPosition)
|
|
assert.NotEqual(t, 0, resp.GetChannels()[0].GetSeekPosition().GetTimestamp())
|
|
})
|
|
|
|
t.Run("v3 storage segment with manifest path and no binlogs", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
ID: 0,
|
|
Schema: newTestSchema(),
|
|
})
|
|
|
|
err := svr.meta.UpdateChannelCheckpoint(context.TODO(), "vchan1", &msgpb.MsgPosition{
|
|
ChannelName: "vchan1",
|
|
Timestamp: 10,
|
|
MsgID: []byte{0, 0, 0, 0, 0, 0, 0, 0},
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
// V3 segment: flushed, has ManifestPath but no binlogs
|
|
seg1 := createSegment(100, 0, 0, 50, 10, "vchan1", commonpb.SegmentState_Flushed)
|
|
seg1.Binlogs = []*datapb.FieldBinlog{} // empty binlogs for V3 storage
|
|
seg1.ManifestPath = "files/binlogs/0/0/100/manifest_0"
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg1))
|
|
assert.NoError(t, err)
|
|
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
// V3 segment should NOT be filtered out
|
|
assert.EqualValues(t, 1, len(resp.GetSegments()))
|
|
assert.EqualValues(t, int64(100), resp.GetSegments()[0].GetID())
|
|
assert.EqualValues(t, "files/binlogs/0/0/100/manifest_0", resp.GetSegments()[0].GetManifestPath())
|
|
assert.EqualValues(t, int64(50), resp.GetSegments()[0].GetNumOfRows())
|
|
})
|
|
|
|
t.Run("with continuous compaction", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
svr.mixCoordCreator = func(ctx context.Context) (types.MixCoord, error) {
|
|
return newMockMixCoord(), nil
|
|
}
|
|
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
ID: 0,
|
|
Schema: newTestSchema(),
|
|
})
|
|
|
|
err := svr.meta.UpdateChannelCheckpoint(context.TODO(), "vchan1", &msgpb.MsgPosition{
|
|
ChannelName: "vchan1",
|
|
Timestamp: 0,
|
|
MsgID: []byte{0, 0, 0, 0, 0, 0, 0, 0},
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
seg1 := createSegment(9, 0, 0, 2048, 30, "vchan1", commonpb.SegmentState_Dropped)
|
|
seg2 := createSegment(10, 0, 0, 2048, 40, "vchan1", commonpb.SegmentState_Dropped)
|
|
seg3 := createSegment(11, 0, 0, 2048, 40, "vchan1", commonpb.SegmentState_Dropped)
|
|
seg3.CompactionFrom = []int64{9, 10}
|
|
seg4 := createSegment(12, 0, 0, 2048, 40, "vchan1", commonpb.SegmentState_Dropped)
|
|
seg5 := createSegment(13, 0, 0, 2048, 40, "vchan1", commonpb.SegmentState_Flushed)
|
|
seg5.CompactionFrom = []int64{11, 12}
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg1))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg2))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg3))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg4))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.AddSegment(context.TODO(), NewSegmentInfo(seg5))
|
|
assert.NoError(t, err)
|
|
err = svr.meta.indexMeta.CreateIndex(context.TODO(), &model.Index{
|
|
CollectionID: 0,
|
|
FieldID: 2,
|
|
IndexID: rand.Int63n(1000),
|
|
IndexName: "_default_idx_2",
|
|
})
|
|
assert.NoError(t, err)
|
|
svr.meta.indexMeta.updateSegmentIndex(&model.SegmentIndex{
|
|
SegmentID: seg4.ID,
|
|
CollectionID: 0,
|
|
PartitionID: 0,
|
|
NumRows: 100,
|
|
IndexID: 0,
|
|
BuildID: 0,
|
|
NodeID: 0,
|
|
IndexVersion: 1,
|
|
IndexState: commonpb.IndexState_Finished,
|
|
FailReason: "",
|
|
IsDeleted: false,
|
|
CreatedUTCTime: 0,
|
|
IndexFileKeys: nil,
|
|
IndexSerializedSize: 0,
|
|
})
|
|
|
|
req := &datapb.GetRecoveryInfoRequestV2{
|
|
CollectionID: 0,
|
|
}
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), req)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
assert.NotNil(t, resp.GetChannels()[0].SeekPosition)
|
|
assert.NotEqual(t, 0, resp.GetChannels()[0].GetSeekPosition().GetTimestamp())
|
|
assert.Len(t, resp.GetChannels()[0].GetDroppedSegmentIds(), 0)
|
|
// assert.ElementsMatch(t, []UniqueID{}, resp.GetChannels()[0].GetUnflushedSegmentIds())
|
|
// assert.ElementsMatch(t, []UniqueID{9, 10, 12}, resp.GetChannels()[0].GetFlushedSegmentIds())
|
|
})
|
|
|
|
t.Run("with closed server", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
closeTestServer(t, svr)
|
|
resp, err := svr.GetRecoveryInfoV2(context.TODO(), &datapb.GetRecoveryInfoRequestV2{})
|
|
assert.NoError(t, err)
|
|
err = merr.Error(resp.GetStatus())
|
|
assert.ErrorIs(t, err, merr.ErrServiceNotReady)
|
|
})
|
|
}
|
|
|
|
func TestImportV2(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
t.Run("ImportV2", func(t *testing.T) {
|
|
// server not healthy
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Initializing)
|
|
resp, err := s.ImportV2(ctx, nil)
|
|
assert.NoError(t, err)
|
|
assert.NotEqual(t, int32(0), resp.GetStatus().GetCode())
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
mockHandler := NewNMockHandler(t)
|
|
mockHandler.EXPECT().GetCollection(mock.Anything, mock.Anything).Return(&collectionInfo{
|
|
ID: 1000,
|
|
VChannelNames: []string{"foo_1v1"},
|
|
}, nil).Maybe()
|
|
s.handler = mockHandler
|
|
|
|
// parse timeout failed
|
|
resp, err = s.ImportV2(ctx, &internalpb.ImportRequestInternal{
|
|
Options: []*commonpb.KeyValuePair{
|
|
{
|
|
Key: "timeout",
|
|
Value: "@$#$%#%$",
|
|
},
|
|
},
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.True(t, errors.Is(merr.Error(resp.GetStatus()), merr.ErrImportFailed))
|
|
|
|
// alloc failed
|
|
catalog := mocks.NewDataCoordCatalog(t)
|
|
catalog.EXPECT().ListImportJobs(mock.Anything).Return(nil, nil)
|
|
catalog.EXPECT().ListPreImportTasks(mock.Anything).Return(nil, nil)
|
|
catalog.EXPECT().ListImportTasks(mock.Anything).Return(nil, nil)
|
|
s.importMeta, err = NewImportMeta(context.TODO(), catalog, nil, nil)
|
|
assert.NoError(t, err)
|
|
alloc := allocator.NewMockAllocator(t)
|
|
alloc.EXPECT().AllocN(mock.Anything).Return(0, 0, merr.WrapErrServiceUnavailable("mock err"))
|
|
s.allocator = alloc
|
|
resp, err = s.ImportV2(ctx, &internalpb.ImportRequestInternal{})
|
|
assert.NoError(t, err)
|
|
assert.True(t, errors.Is(merr.Error(resp.GetStatus()), merr.ErrServiceUnavailable))
|
|
})
|
|
|
|
t.Run("GetImportProgress", func(t *testing.T) {
|
|
// server not healthy
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Initializing)
|
|
resp, err := s.GetImportProgress(ctx, nil)
|
|
assert.NoError(t, err)
|
|
assert.NotEqual(t, int32(0), resp.GetStatus().GetCode())
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// illegal jobID
|
|
resp, err = s.GetImportProgress(ctx, &internalpb.GetImportProgressRequest{
|
|
JobID: "@%$%$#%",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.True(t, errors.Is(merr.Error(resp.GetStatus()), merr.ErrParameterInvalid))
|
|
|
|
// job does not exist
|
|
catalog := mocks.NewDataCoordCatalog(t)
|
|
catalog.EXPECT().ListImportJobs(mock.Anything).Return(nil, nil)
|
|
catalog.EXPECT().ListPreImportTasks(mock.Anything).Return(nil, nil)
|
|
catalog.EXPECT().ListImportTasks(mock.Anything).Return(nil, nil)
|
|
catalog.EXPECT().SaveImportJob(mock.Anything, mock.Anything).Return(nil)
|
|
wal := mock_streaming.NewMockWALAccesser(t)
|
|
b := mock_streaming.NewMockBroadcast(t)
|
|
wal.EXPECT().Broadcast().Return(b).Maybe()
|
|
// streaming.SetWALForTest(wal)
|
|
// defer streaming.RecoverWALForTest()
|
|
|
|
s.importMeta, err = NewImportMeta(context.TODO(), catalog, nil, nil)
|
|
assert.NoError(t, err)
|
|
resp, err = s.GetImportProgress(ctx, &internalpb.GetImportProgressRequest{
|
|
JobID: "-1",
|
|
})
|
|
assert.NoError(t, err)
|
|
// job-not-found is a server-side orchestration issue, not malformed user data
|
|
assert.True(t, errors.Is(merr.Error(resp.GetStatus()), merr.ErrImportSysFailed))
|
|
|
|
// normal case
|
|
var job ImportJob = &importJob{
|
|
ImportJob: &datapb.ImportJob{
|
|
JobID: 0,
|
|
Schema: &schemapb.CollectionSchema{},
|
|
State: internalpb.ImportJobState_Failed,
|
|
},
|
|
}
|
|
err = s.importMeta.AddJob(context.TODO(), job)
|
|
assert.NoError(t, err)
|
|
resp, err = s.GetImportProgress(ctx, &internalpb.GetImportProgressRequest{
|
|
JobID: "0",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, int32(0), resp.GetStatus().GetCode())
|
|
assert.Equal(t, int64(0), resp.GetProgress())
|
|
assert.Equal(t, internalpb.ImportJobState_Failed, resp.GetState())
|
|
})
|
|
|
|
t.Run("ListImports", func(t *testing.T) {
|
|
// server not healthy
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Initializing)
|
|
resp, err := s.ListImports(ctx, nil)
|
|
assert.NoError(t, err)
|
|
assert.NotEqual(t, int32(0), resp.GetStatus().GetCode())
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// normal case
|
|
catalog := mocks.NewDataCoordCatalog(t)
|
|
catalog.EXPECT().ListImportJobs(mock.Anything).Return(nil, nil)
|
|
catalog.EXPECT().ListPreImportTasks(mock.Anything).Return(nil, nil)
|
|
catalog.EXPECT().ListImportTasks(mock.Anything).Return(nil, nil)
|
|
catalog.EXPECT().SaveImportJob(mock.Anything, mock.Anything).Return(nil)
|
|
catalog.EXPECT().SavePreImportTask(mock.Anything, mock.Anything).Return(nil)
|
|
s.importMeta, err = NewImportMeta(context.TODO(), catalog, nil, nil)
|
|
assert.NoError(t, err)
|
|
var job ImportJob = &importJob{
|
|
ImportJob: &datapb.ImportJob{
|
|
JobID: 0,
|
|
CollectionID: 1,
|
|
Schema: &schemapb.CollectionSchema{},
|
|
},
|
|
}
|
|
err = s.importMeta.AddJob(context.TODO(), job)
|
|
assert.NoError(t, err)
|
|
taskProto := &datapb.PreImportTask{
|
|
JobID: 0,
|
|
TaskID: 1,
|
|
State: datapb.ImportTaskStateV2_Failed,
|
|
}
|
|
var task ImportTask = &preImportTask{}
|
|
task.(*preImportTask).task.Store(taskProto)
|
|
err = s.importMeta.AddTask(context.TODO(), task)
|
|
assert.NoError(t, err)
|
|
resp, err = s.ListImports(ctx, &internalpb.ListImportsRequestInternal{
|
|
CollectionID: 1,
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, int32(0), resp.GetStatus().GetCode())
|
|
assert.Equal(t, 1, len(resp.GetJobIDs()))
|
|
assert.Equal(t, 1, len(resp.GetStates()))
|
|
assert.Equal(t, 1, len(resp.GetReasons()))
|
|
assert.Equal(t, 1, len(resp.GetProgresses()))
|
|
})
|
|
}
|
|
|
|
func TestGetChannelRecoveryInfo(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// server not healthy
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Initializing)
|
|
resp, err := s.GetChannelRecoveryInfo(ctx, nil)
|
|
assert.NoError(t, err)
|
|
assert.NotEqual(t, int32(0), resp.GetStatus().GetCode())
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// get collection failed
|
|
broker := broker.NewMockBroker(t)
|
|
s.broker = broker
|
|
|
|
// normal case
|
|
channelInfo := &datapb.VchannelInfo{
|
|
CollectionID: 0,
|
|
ChannelName: "ch-1",
|
|
SeekPosition: &msgpb.MsgPosition{Timestamp: 10},
|
|
UnflushedSegmentIds: []int64{1},
|
|
FlushedSegmentIds: []int64{2},
|
|
DroppedSegmentIds: []int64{3},
|
|
IndexedSegmentIds: []int64{4},
|
|
}
|
|
|
|
handler := NewNMockHandler(t)
|
|
handler.EXPECT().GetDataVChanPositions(mock.Anything, mock.Anything).Return(channelInfo)
|
|
s.handler = handler
|
|
s.meta = &meta{
|
|
segments: NewSegmentsInfo(),
|
|
}
|
|
s.meta.segments.segments[1] = NewSegmentInfo(&datapb.SegmentInfo{
|
|
ID: 1,
|
|
CollectionID: 0,
|
|
PartitionID: 0,
|
|
State: commonpb.SegmentState_Growing,
|
|
IsCreatedByStreaming: false,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
resp, err = s.GetChannelRecoveryInfo(ctx, &datapb.GetChannelRecoveryInfoRequest{
|
|
Vchannel: "ch-1",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, int32(0), resp.GetStatus().GetCode())
|
|
assert.Nil(t, resp.GetSchema())
|
|
assert.Equal(t, channelInfo, resp.GetInfo())
|
|
}
|
|
|
|
type GcControlServiceSuite struct {
|
|
suite.Suite
|
|
|
|
server *Server
|
|
}
|
|
|
|
func (s *GcControlServiceSuite) SetupTest() {
|
|
s.server = newTestServer(s.T())
|
|
}
|
|
|
|
func (s *GcControlServiceSuite) TearDownTest() {
|
|
if s.server != nil {
|
|
closeTestServer(s.T(), s.server)
|
|
}
|
|
}
|
|
|
|
func (s *GcControlServiceSuite) TestClosedServer() {
|
|
closeTestServer(s.T(), s.server)
|
|
resp, err := s.server.GcControl(context.TODO(), &datapb.GcControlRequest{})
|
|
s.NoError(err)
|
|
s.False(merr.Ok(resp))
|
|
s.server = nil
|
|
}
|
|
|
|
func (s *GcControlServiceSuite) TestUnknownCmd() {
|
|
resp, err := s.server.GcControl(context.TODO(), &datapb.GcControlRequest{
|
|
Command: 0,
|
|
})
|
|
s.NoError(err)
|
|
s.False(merr.Ok(resp))
|
|
}
|
|
|
|
func (s *GcControlServiceSuite) TestPause() {
|
|
resp, err := s.server.GcControl(context.TODO(), &datapb.GcControlRequest{
|
|
Command: datapb.GcCommand_Pause,
|
|
})
|
|
s.Nil(err)
|
|
s.False(merr.Ok(resp))
|
|
|
|
resp, err = s.server.GcControl(context.TODO(), &datapb.GcControlRequest{
|
|
Command: datapb.GcCommand_Pause,
|
|
Params: []*commonpb.KeyValuePair{
|
|
{Key: "duration", Value: "not_int"},
|
|
},
|
|
})
|
|
s.Nil(err)
|
|
s.False(merr.Ok(resp))
|
|
|
|
resp, err = s.server.GcControl(context.TODO(), &datapb.GcControlRequest{
|
|
Command: datapb.GcCommand_Pause,
|
|
Params: []*commonpb.KeyValuePair{
|
|
{Key: "duration", Value: "60"},
|
|
},
|
|
})
|
|
s.Nil(err)
|
|
s.True(merr.Ok(resp))
|
|
}
|
|
|
|
func (s *GcControlServiceSuite) TestResume() {
|
|
resp, err := s.server.GcControl(context.TODO(), &datapb.GcControlRequest{
|
|
Command: datapb.GcCommand_Resume,
|
|
})
|
|
s.Nil(err)
|
|
s.True(merr.Ok(resp))
|
|
}
|
|
|
|
func (s *GcControlServiceSuite) TestTimeoutCtx() {
|
|
s.server.garbageCollector.close()
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
cancel()
|
|
resp, err := s.server.GcControl(ctx, &datapb.GcControlRequest{
|
|
Command: datapb.GcCommand_Resume,
|
|
})
|
|
s.Nil(err)
|
|
s.False(merr.Ok(resp))
|
|
|
|
resp, err = s.server.GcControl(ctx, &datapb.GcControlRequest{
|
|
Command: datapb.GcCommand_Pause,
|
|
Params: []*commonpb.KeyValuePair{
|
|
{Key: "duration", Value: "60"},
|
|
},
|
|
})
|
|
s.Nil(err)
|
|
s.False(merr.Ok(resp))
|
|
}
|
|
|
|
func TestGcControlService(t *testing.T) {
|
|
suite.Run(t, new(GcControlServiceSuite))
|
|
}
|
|
|
|
// createTestFlushAllServer creates a test server for FlushAll tests
|
|
func createTestFlushAllServer() *Server {
|
|
// Create a mock allocator that will be replaced by mockey
|
|
mockAlloc := &allocator.MockAllocator{}
|
|
mockBroker := &broker.MockBroker{}
|
|
|
|
server := &Server{
|
|
allocator: mockAlloc,
|
|
broker: mockBroker,
|
|
meta: &meta{
|
|
collections: typeutil.NewConcurrentMap[UniqueID, *collectionInfo](),
|
|
channelCPs: newChannelCps(),
|
|
segments: NewSegmentsInfo(),
|
|
},
|
|
// handler will be set to a mock in individual tests when needed
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
return server
|
|
}
|
|
|
|
func TestServer_FlushAll(t *testing.T) {
|
|
t.Run("server not healthy", func(t *testing.T) {
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
req := &datapb.FlushAllRequest{}
|
|
resp, err := server.FlushAll(context.Background(), req)
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("flush all successfully", func(t *testing.T) {
|
|
server := createTestFlushAllServer()
|
|
server.handler = NewNMockHandler(t)
|
|
|
|
// Mock channel.GetClusterChannels
|
|
mockGetClusterChannels := mockey.Mock(channel.GetClusterChannels).Return(message.ClusterChannels{
|
|
Channels: []string{"by-dev-rootcoord-dml_0", "by-dev-rootcoord-dml_1"},
|
|
ControlChannel: funcutil.GetControlChannel("by-dev-rootcoord-dml_0"),
|
|
}).Build()
|
|
defer mockGetClusterChannels.UnPatch()
|
|
|
|
// Mock broadcaster
|
|
bapi := mock_broadcaster.NewMockBroadcastAPI(t)
|
|
bapi.EXPECT().Broadcast(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, msg message.BroadcastMutableMessage) (*types2.BroadcastAppendResult, error) {
|
|
results := make(map[string]*message.AppendResult)
|
|
for _, vchannel := range msg.BroadcastHeader().VChannels {
|
|
results[vchannel] = &message.AppendResult{
|
|
MessageID: rmq.NewRmqID(1),
|
|
TimeTick: tsoutil.ComposeTSByTime(time.Now(), 0),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
}
|
|
}
|
|
msg.WithBroadcastID(1)
|
|
retry.Do(context.Background(), func() error {
|
|
log.Info("broadcast message", log.FieldMessage(msg))
|
|
return registry.CallMessageAckCallback(context.Background(), msg, results)
|
|
}, retry.AttemptAlways())
|
|
return &types2.BroadcastAppendResult{
|
|
BroadcastID: 1,
|
|
AppendResults: lo.MapValues(results, func(result *message.AppendResult, vchannel string) *types2.AppendResult {
|
|
return &types2.AppendResult{
|
|
MessageID: result.MessageID,
|
|
TimeTick: result.TimeTick,
|
|
LastConfirmedMessageID: result.LastConfirmedMessageID,
|
|
}
|
|
}),
|
|
}, nil
|
|
})
|
|
bapi.EXPECT().Close().Return()
|
|
|
|
// Register mock broadcaster
|
|
mb := mock_broadcaster.NewMockBroadcaster(t)
|
|
mb.EXPECT().WithResourceKeys(mock.Anything, mock.Anything).Return(bapi, nil)
|
|
mb.EXPECT().Close().Return().Maybe()
|
|
broadcast.ResetBroadcaster()
|
|
broadcast.Register(mb)
|
|
|
|
// Register mock balancer for balance.GetWithContext in StartBroadcastWithResourceKeys
|
|
b := mock_balancer.NewMockBalancer(t)
|
|
b.EXPECT().WaitUntilWALbasedDDLReady(mock.Anything).Return(nil)
|
|
b.EXPECT().WatchChannelAssignments(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, callback balancer.WatchChannelAssignmentsCallback) error {
|
|
<-ctx.Done()
|
|
return ctx.Err()
|
|
}).Maybe()
|
|
b.EXPECT().Close().Return().Maybe()
|
|
balance.ResetBalancer()
|
|
balance.Register(b)
|
|
|
|
// Register DDL callbacks so registry.CallMessageAckCallback can resolve
|
|
RegisterDDLCallbacks(server)
|
|
|
|
req := &datapb.FlushAllRequest{}
|
|
resp, err := server.FlushAll(context.Background(), req)
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
}
|
|
|
|
// createTestGetFlushAllStateServer creates a test server for GetFlushAllState tests
|
|
func createTestGetFlushAllStateServer() *Server {
|
|
// Create a mock broker that will be replaced by mockey
|
|
mockBroker := &broker.MockBroker{}
|
|
|
|
server := &Server{
|
|
broker: mockBroker,
|
|
meta: &meta{
|
|
channelCPs: newChannelCps(),
|
|
},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
return server
|
|
}
|
|
|
|
func TestServer_GetFlushAllState(t *testing.T) {
|
|
t.Run("server not healthy", func(t *testing.T) {
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
req := &milvuspb.GetFlushAllStateRequest{}
|
|
resp, err := server.GetFlushAllState(context.Background(), req)
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("ListDatabases error", func(t *testing.T) {
|
|
server := createTestGetFlushAllStateServer()
|
|
|
|
// Mock ListDatabases error
|
|
mockListDatabases := mockey.Mock(mockey.GetMethod(server.broker, "ListDatabases")).Return(nil, errors.New("list databases error")).Build()
|
|
defer mockListDatabases.UnPatch()
|
|
|
|
req := &milvuspb.GetFlushAllStateRequest{}
|
|
|
|
resp, err := server.GetFlushAllState(context.Background(), req)
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("all flushed", func(t *testing.T) {
|
|
server := createTestGetFlushAllStateServer()
|
|
|
|
// Mock ListDatabases
|
|
mockListDatabases := mockey.Mock(mockey.GetMethod(server.broker, "ListDatabases")).Return(&milvuspb.ListDatabasesResponse{
|
|
Status: merr.Success(),
|
|
DbNames: []string{"db1", "db2"},
|
|
}, nil).Build()
|
|
defer mockListDatabases.UnPatch()
|
|
|
|
// Mock ShowCollections for db1
|
|
mockShowCollections := mockey.Mock(mockey.GetMethod(server.broker, "ShowCollections")).To(func(ctx context.Context, dbName string) (*milvuspb.ShowCollectionsResponse, error) {
|
|
if dbName == "db1" {
|
|
return &milvuspb.ShowCollectionsResponse{
|
|
Status: merr.Success(),
|
|
CollectionIds: []int64{100},
|
|
CollectionNames: []string{"collection1"},
|
|
}, nil
|
|
}
|
|
if dbName == "db2" {
|
|
return &milvuspb.ShowCollectionsResponse{
|
|
Status: merr.Success(),
|
|
CollectionIds: []int64{200},
|
|
CollectionNames: []string{"collection2"},
|
|
}, nil
|
|
}
|
|
return nil, errors.New("unknown db")
|
|
}).Build()
|
|
defer mockShowCollections.UnPatch()
|
|
|
|
// Mock DescribeCollectionInternal
|
|
mockDescribeCollection := mockey.Mock(mockey.GetMethod(server.broker, "DescribeCollectionInternal")).To(func(ctx context.Context, collectionID int64) (*milvuspb.DescribeCollectionResponse, error) {
|
|
if collectionID == 100 {
|
|
return &milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
VirtualChannelNames: []string{"channel1"},
|
|
}, nil
|
|
}
|
|
if collectionID == 200 {
|
|
return &milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
VirtualChannelNames: []string{"channel2"},
|
|
}, nil
|
|
}
|
|
return nil, errors.New("collection not found")
|
|
}).Build()
|
|
defer mockDescribeCollection.UnPatch()
|
|
|
|
// Setup channel checkpoints - both flushed
|
|
server.meta.channelCPs.checkpoints["channel1"] = &msgpb.MsgPosition{Timestamp: 15000}
|
|
server.meta.channelCPs.checkpoints["channel2"] = &msgpb.MsgPosition{Timestamp: 15000}
|
|
|
|
req := &milvuspb.GetFlushAllStateRequest{
|
|
FlushAllTss: map[string]uint64{
|
|
"channel1": 15000,
|
|
"channel2": 15000,
|
|
},
|
|
}
|
|
|
|
resp, err := server.GetFlushAllState(context.Background(), req)
|
|
|
|
assert.NoError(t, merr.CheckRPCCall(resp, err))
|
|
assert.True(t, resp.GetFlushed())
|
|
})
|
|
|
|
t.Run("not flushed, channel checkpoint too old", func(t *testing.T) {
|
|
server := createTestGetFlushAllStateServer()
|
|
|
|
// Mock ListDatabases
|
|
mockListDatabases := mockey.Mock(mockey.GetMethod(server.broker, "ListDatabases")).Return(&milvuspb.ListDatabasesResponse{
|
|
Status: merr.Success(),
|
|
DbNames: []string{"test-db"},
|
|
}, nil).Build()
|
|
defer mockListDatabases.UnPatch()
|
|
|
|
// Mock ShowCollections
|
|
mockShowCollections := mockey.Mock(mockey.GetMethod(server.broker, "ShowCollections")).Return(&milvuspb.ShowCollectionsResponse{
|
|
Status: merr.Success(),
|
|
CollectionIds: []int64{100},
|
|
CollectionNames: []string{"collection1"},
|
|
}, nil).Build()
|
|
defer mockShowCollections.UnPatch()
|
|
|
|
// Mock DescribeCollectionInternal
|
|
mockDescribeCollection := mockey.Mock(mockey.GetMethod(server.broker, "DescribeCollectionInternal")).Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
VirtualChannelNames: []string{"channel1"},
|
|
}, nil).Build()
|
|
defer mockDescribeCollection.UnPatch()
|
|
|
|
// Setup channel checkpoint with timestamp lower than FlushAllTs
|
|
server.meta.channelCPs.checkpoints["channel1"] = &msgpb.MsgPosition{Timestamp: 10000}
|
|
|
|
req := &milvuspb.GetFlushAllStateRequest{
|
|
FlushAllTss: map[string]uint64{
|
|
"channel1": 15000,
|
|
},
|
|
}
|
|
|
|
resp, err := server.GetFlushAllState(context.Background(), req)
|
|
|
|
assert.NoError(t, merr.CheckRPCCall(resp, err))
|
|
assert.False(t, resp.GetFlushed())
|
|
})
|
|
|
|
t.Run("test legacy FlushAllTs provided and flushed", func(t *testing.T) {
|
|
server := createTestGetFlushAllStateServer()
|
|
|
|
// Mock ListDatabases
|
|
mockListDatabases := mockey.Mock(mockey.GetMethod(server.broker, "ListDatabases")).Return(&milvuspb.ListDatabasesResponse{
|
|
Status: merr.Success(),
|
|
DbNames: []string{"test-db"},
|
|
}, nil).Build()
|
|
defer mockListDatabases.UnPatch()
|
|
|
|
// Mock ShowCollections
|
|
mockShowCollections := mockey.Mock(mockey.GetMethod(server.broker, "ShowCollections")).Return(&milvuspb.ShowCollectionsResponse{
|
|
Status: merr.Success(),
|
|
CollectionIds: []int64{100},
|
|
CollectionNames: []string{"collection1"},
|
|
}, nil).Build()
|
|
defer mockShowCollections.UnPatch()
|
|
|
|
// Mock DescribeCollectionInternal
|
|
mockDescribeCollection := mockey.Mock(mockey.GetMethod(server.broker, "DescribeCollectionInternal")).Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
VirtualChannelNames: []string{"channel1"},
|
|
}, nil).Build()
|
|
defer mockDescribeCollection.UnPatch()
|
|
|
|
// Setup channel checkpoint with timestamp >= deprecated FlushAllTs
|
|
server.meta.channelCPs.checkpoints["channel1"] = &msgpb.MsgPosition{Timestamp: 15000}
|
|
|
|
req := &milvuspb.GetFlushAllStateRequest{
|
|
FlushAllTs: 15000, // deprecated field
|
|
}
|
|
|
|
resp, err := server.GetFlushAllState(context.Background(), req)
|
|
|
|
assert.NoError(t, merr.CheckRPCCall(resp, err))
|
|
assert.True(t, resp.GetFlushed())
|
|
})
|
|
|
|
t.Run("test legacy FlushAllTs provided and not flushed", func(t *testing.T) {
|
|
server := createTestGetFlushAllStateServer()
|
|
|
|
// Mock ListDatabases
|
|
mockListDatabases := mockey.Mock(mockey.GetMethod(server.broker, "ListDatabases")).Return(&milvuspb.ListDatabasesResponse{
|
|
Status: merr.Success(),
|
|
DbNames: []string{"test-db"},
|
|
}, nil).Build()
|
|
defer mockListDatabases.UnPatch()
|
|
|
|
// Mock ShowCollections
|
|
mockShowCollections := mockey.Mock(mockey.GetMethod(server.broker, "ShowCollections")).Return(&milvuspb.ShowCollectionsResponse{
|
|
Status: merr.Success(),
|
|
CollectionIds: []int64{100},
|
|
CollectionNames: []string{"collection1"},
|
|
}, nil).Build()
|
|
defer mockShowCollections.UnPatch()
|
|
|
|
// Mock DescribeCollectionInternal
|
|
mockDescribeCollection := mockey.Mock(mockey.GetMethod(server.broker, "DescribeCollectionInternal")).Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
VirtualChannelNames: []string{"channel1"},
|
|
}, nil).Build()
|
|
defer mockDescribeCollection.UnPatch()
|
|
|
|
// Setup channel checkpoint with timestamp < deprecated FlushAllTs
|
|
server.meta.channelCPs.checkpoints["channel1"] = &msgpb.MsgPosition{Timestamp: 10000}
|
|
|
|
req := &milvuspb.GetFlushAllStateRequest{
|
|
FlushAllTs: 15000, // deprecated field
|
|
}
|
|
|
|
resp, err := server.GetFlushAllState(context.Background(), req)
|
|
|
|
assert.NoError(t, merr.CheckRPCCall(resp, err))
|
|
assert.False(t, resp.GetFlushed())
|
|
})
|
|
}
|
|
|
|
func getWatchKV(t *testing.T) kv.WatchKV {
|
|
rootPath := "/etcd/test/root/" + t.Name()
|
|
kv, err := etcdkv.NewWatchKVFactory(rootPath, &Params.EtcdCfg)
|
|
require.NoError(t, err)
|
|
|
|
return kv
|
|
}
|
|
|
|
func TestServer_DropSegmentsByTime(t *testing.T) {
|
|
ctx := context.Background()
|
|
collectionID := int64(1)
|
|
channelName := "test-channel"
|
|
flushTs := uint64(1000)
|
|
|
|
t.Run("server not healthy", func(t *testing.T) {
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
err := s.DropSegmentsByTime(ctx, collectionID, map[string]uint64{channelName: flushTs})
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("watch channel checkpoint failed", func(t *testing.T) {
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
meta, err := newMemoryMeta(t)
|
|
assert.NoError(t, err)
|
|
s.meta = meta
|
|
|
|
// WatchChannelCheckpoint will wait indefinitely, so we use a context with timeout
|
|
ctxWithTimeout, cancel := context.WithTimeout(ctx, 100*time.Millisecond)
|
|
defer cancel()
|
|
|
|
err = s.DropSegmentsByTime(ctxWithTimeout, collectionID, map[string]uint64{channelName: flushTs})
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("success - drop segments", func(t *testing.T) {
|
|
s := &Server{}
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
meta, err := newMemoryMeta(t)
|
|
assert.NoError(t, err)
|
|
s.meta = meta
|
|
|
|
// Set channel checkpoint to satisfy WatchChannelCheckpoint
|
|
pos := &msgpb.MsgPosition{
|
|
ChannelName: channelName,
|
|
MsgID: []byte{0, 0, 0, 0, 0, 0, 0, 0},
|
|
Timestamp: flushTs,
|
|
}
|
|
err = meta.UpdateChannelCheckpoint(ctx, channelName, pos)
|
|
assert.NoError(t, err)
|
|
|
|
// Add segments to drop (timestamp <= flushTs)
|
|
seg1 := &SegmentInfo{
|
|
SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 1,
|
|
CollectionID: collectionID,
|
|
State: commonpb.SegmentState_Flushed,
|
|
DmlPosition: &msgpb.MsgPosition{
|
|
Timestamp: flushTs - 100, // less than flushTs
|
|
},
|
|
},
|
|
}
|
|
err = meta.AddSegment(ctx, seg1)
|
|
assert.NoError(t, err)
|
|
|
|
// Add segment that should not be dropped (timestamp > flushTs)
|
|
seg2 := &SegmentInfo{
|
|
SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 2,
|
|
CollectionID: collectionID,
|
|
State: commonpb.SegmentState_Flushed,
|
|
DmlPosition: &msgpb.MsgPosition{
|
|
Timestamp: flushTs + 100, // greater than flushTs
|
|
},
|
|
},
|
|
}
|
|
err = meta.AddSegment(ctx, seg2)
|
|
assert.NoError(t, err)
|
|
|
|
// Set segment channel
|
|
seg1.InsertChannel = channelName
|
|
seg2.InsertChannel = channelName
|
|
meta.segments.SetSegment(seg1.ID, seg1)
|
|
meta.segments.SetSegment(seg2.ID, seg2)
|
|
|
|
err = s.DropSegmentsByTime(ctx, collectionID, map[string]uint64{channelName: flushTs})
|
|
assert.NoError(t, err)
|
|
|
|
// Verify segment 1 is dropped
|
|
seg1After := meta.GetSegment(ctx, seg1.ID)
|
|
assert.NotNil(t, seg1After)
|
|
assert.Equal(t, commonpb.SegmentState_Dropped, seg1After.GetState())
|
|
|
|
// Verify segment 2 is not dropped
|
|
seg2After := meta.GetSegment(ctx, seg2.ID)
|
|
assert.NotNil(t, seg2After)
|
|
assert.NotEqual(t, commonpb.SegmentState_Dropped, seg2After.GetState())
|
|
})
|
|
}
|
|
|
|
func TestGetSegmentInfo_WithCompaction(t *testing.T) {
|
|
t.Run("use handler.GetDeltaLogFromCompactTo", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
collID := int64(100)
|
|
partID := int64(10)
|
|
|
|
// Add collection
|
|
svr.meta.AddCollection(&collectionInfo{
|
|
ID: collID,
|
|
Partitions: []int64{partID},
|
|
})
|
|
|
|
// Create parent segment
|
|
parent := NewSegmentInfo(&datapb.SegmentInfo{
|
|
ID: 1000,
|
|
CollectionID: collID,
|
|
PartitionID: partID,
|
|
State: commonpb.SegmentState_Dropped,
|
|
})
|
|
err := svr.meta.AddSegment(context.TODO(), parent)
|
|
require.NoError(t, err)
|
|
|
|
// Create child segment with delta logs
|
|
child := NewSegmentInfo(&datapb.SegmentInfo{
|
|
ID: 1001,
|
|
CollectionID: collID,
|
|
PartitionID: partID,
|
|
State: commonpb.SegmentState_Flushed,
|
|
CompactionFrom: []int64{1000},
|
|
NumOfRows: 100,
|
|
Deltalogs: []*datapb.FieldBinlog{
|
|
{
|
|
FieldID: 0,
|
|
Binlogs: []*datapb.Binlog{
|
|
{LogID: 1, LogSize: 100},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
err = svr.meta.AddSegment(context.TODO(), child)
|
|
require.NoError(t, err)
|
|
|
|
// Test GetSegmentInfo
|
|
req := &datapb.GetSegmentInfoRequest{
|
|
SegmentIDs: []int64{1000},
|
|
IncludeUnHealthy: true,
|
|
}
|
|
|
|
resp, err := svr.GetSegmentInfo(context.Background(), req)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Len(t, resp.GetInfos(), 1)
|
|
|
|
// Verify delta logs were merged from child
|
|
info := resp.GetInfos()[0]
|
|
assert.Equal(t, int64(1000), info.GetID())
|
|
assert.NotEmpty(t, info.GetDeltalogs())
|
|
})
|
|
}
|
|
|
|
func TestGetRestoreSnapshotState(t *testing.T) {
|
|
t.Run("job not found", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
req := &datapb.GetRestoreSnapshotStateRequest{
|
|
JobId: 999,
|
|
}
|
|
|
|
resp, err := svr.GetRestoreSnapshotState(context.Background(), req)
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("job in progress", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
// Add a copy job
|
|
job := ©SegmentJob{
|
|
CopySegmentJob: &datapb.CopySegmentJob{
|
|
JobId: 100,
|
|
CollectionId: 1,
|
|
State: datapb.CopySegmentJobState_CopySegmentJobExecuting,
|
|
TotalSegments: 10,
|
|
CopiedSegments: 5,
|
|
SnapshotName: "test_snapshot",
|
|
StartTs: uint64(time.Now().UnixNano()),
|
|
},
|
|
tr: timerecord.NewTimeRecorder("test job"),
|
|
}
|
|
err := svr.copySegmentMeta.AddJob(context.TODO(), job)
|
|
require.NoError(t, err)
|
|
|
|
req := &datapb.GetRestoreSnapshotStateRequest{
|
|
JobId: 100,
|
|
}
|
|
|
|
resp, err := svr.GetRestoreSnapshotState(context.Background(), req)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.NotNil(t, resp.GetInfo())
|
|
assert.Equal(t, int64(100), resp.GetInfo().GetJobId())
|
|
assert.Equal(t, "test_snapshot", resp.GetInfo().GetSnapshotName())
|
|
assert.Equal(t, datapb.RestoreSnapshotState_RestoreSnapshotExecuting, resp.GetInfo().GetState())
|
|
assert.Equal(t, int32(50), resp.GetInfo().GetProgress()) // 5/10 * 100 = 50%
|
|
})
|
|
|
|
t.Run("job completed", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
startTime := time.Now()
|
|
endTime := startTime.Add(10 * time.Second)
|
|
|
|
job := ©SegmentJob{
|
|
CopySegmentJob: &datapb.CopySegmentJob{
|
|
JobId: 200,
|
|
CollectionId: 1,
|
|
State: datapb.CopySegmentJobState_CopySegmentJobCompleted,
|
|
TotalSegments: 10,
|
|
CopiedSegments: 10,
|
|
SnapshotName: "completed_snapshot",
|
|
StartTs: uint64(startTime.UnixNano()),
|
|
CompleteTs: uint64(endTime.UnixNano()),
|
|
},
|
|
tr: timerecord.NewTimeRecorder("completed job"),
|
|
}
|
|
err := svr.copySegmentMeta.AddJob(context.TODO(), job)
|
|
require.NoError(t, err)
|
|
|
|
req := &datapb.GetRestoreSnapshotStateRequest{
|
|
JobId: 200,
|
|
}
|
|
|
|
resp, err := svr.GetRestoreSnapshotState(context.Background(), req)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.NotNil(t, resp.GetInfo())
|
|
assert.Equal(t, datapb.RestoreSnapshotState_RestoreSnapshotCompleted, resp.GetInfo().GetState())
|
|
assert.Equal(t, int32(100), resp.GetInfo().GetProgress()) // 10/10 * 100 = 100%
|
|
assert.Greater(t, resp.GetInfo().GetTimeCost(), uint64(0))
|
|
})
|
|
}
|
|
|
|
func TestListRestoreSnapshotJobs(t *testing.T) {
|
|
t.Run("list all jobs", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
// Add multiple jobs
|
|
for i := 1; i <= 3; i++ {
|
|
job := ©SegmentJob{
|
|
CopySegmentJob: &datapb.CopySegmentJob{
|
|
JobId: int64(100 + i),
|
|
CollectionId: 1,
|
|
State: datapb.CopySegmentJobState_CopySegmentJobExecuting,
|
|
TotalSegments: int64(i * 10),
|
|
CopiedSegments: int64(i * 5),
|
|
SnapshotName: fmt.Sprintf("snapshot_%d", i),
|
|
},
|
|
tr: timerecord.NewTimeRecorder(fmt.Sprintf("job_%d", i)),
|
|
}
|
|
err := svr.copySegmentMeta.AddJob(context.TODO(), job)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
req := &datapb.ListRestoreSnapshotJobsRequest{}
|
|
|
|
resp, err := svr.ListRestoreSnapshotJobs(context.Background(), req)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Len(t, resp.GetJobs(), 3)
|
|
})
|
|
|
|
t.Run("filter by collection id", func(t *testing.T) {
|
|
svr := newTestServer(t)
|
|
defer closeTestServer(t, svr)
|
|
|
|
// Add jobs for different collections
|
|
job1 := ©SegmentJob{
|
|
CopySegmentJob: &datapb.CopySegmentJob{
|
|
JobId: 201,
|
|
CollectionId: 100,
|
|
State: datapb.CopySegmentJobState_CopySegmentJobExecuting,
|
|
SnapshotName: "snapshot_1",
|
|
},
|
|
tr: timerecord.NewTimeRecorder("job_1"),
|
|
}
|
|
err := svr.copySegmentMeta.AddJob(context.TODO(), job1)
|
|
require.NoError(t, err)
|
|
|
|
job2 := ©SegmentJob{
|
|
CopySegmentJob: &datapb.CopySegmentJob{
|
|
JobId: 202,
|
|
CollectionId: 200,
|
|
State: datapb.CopySegmentJobState_CopySegmentJobExecuting,
|
|
SnapshotName: "snapshot_2",
|
|
},
|
|
tr: timerecord.NewTimeRecorder("job_2"),
|
|
}
|
|
err = svr.copySegmentMeta.AddJob(context.TODO(), job2)
|
|
require.NoError(t, err)
|
|
|
|
req := &datapb.ListRestoreSnapshotJobsRequest{
|
|
CollectionId: 100,
|
|
}
|
|
|
|
resp, err := svr.ListRestoreSnapshotJobs(context.Background(), req)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int64(201), resp.GetJobs()[0].GetJobId())
|
|
})
|
|
}
|
|
|
|
func TestServer_CreateSnapshot_DuplicateName(t *testing.T) {
|
|
t.Run("snapshot name already exists", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
existingSnapshotName := "test_snapshot"
|
|
|
|
// Mock snapshotManager.GetSnapshot to simulate existing snapshot
|
|
mockGetSnapshot := mockey.Mock((*snapshotManager).GetSnapshot).To(func(
|
|
sm *snapshotManager,
|
|
ctx context.Context,
|
|
collectionID int64,
|
|
name string,
|
|
) (*datapb.SnapshotInfo, error) {
|
|
// Return a snapshot to simulate it already exists
|
|
return &datapb.SnapshotInfo{Name: name}, nil
|
|
}).Build()
|
|
defer mockGetSnapshot.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// Try to create snapshot with duplicate name
|
|
req := &datapb.CreateSnapshotRequest{
|
|
Name: existingSnapshotName,
|
|
Description: "duplicate snapshot",
|
|
CollectionId: 200,
|
|
}
|
|
|
|
resp, err := server.CreateSnapshot(ctx, req)
|
|
|
|
// Verify error response
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, resp)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.True(t, errors.Is(merr.Error(resp), merr.ErrParameterInvalid))
|
|
assert.Contains(t, resp.GetReason(), "already exists")
|
|
assert.Contains(t, resp.GetReason(), existingSnapshotName)
|
|
})
|
|
}
|
|
|
|
// --- Test rollbackRestoreSnapshot ---
|
|
// Note: The actual DropCollection RPC is tested in internal/datacoord/broker/coordinator_broker_test.go
|
|
|
|
func TestServer_RollbackRestoreSnapshot(t *testing.T) {
|
|
t.Run("success", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
dropCalled := false
|
|
mockDrop := mockey.Mock(mockey.GetMethod(&broker.MockBroker{}, "DropCollection")).To(
|
|
func(_ *broker.MockBroker, ctx context.Context, dbName, collectionName string) error {
|
|
dropCalled = true
|
|
assert.Equal(t, "test_db", dbName)
|
|
assert.Equal(t, "test_collection", collectionName)
|
|
return nil
|
|
}).Build()
|
|
defer mockDrop.UnPatch()
|
|
|
|
mockBroker := broker.NewMockBroker(t)
|
|
server := &Server{
|
|
broker: mockBroker,
|
|
}
|
|
|
|
err := server.rollbackRestoreSnapshot(ctx, "test_db", "test_collection")
|
|
|
|
assert.NoError(t, err)
|
|
assert.True(t, dropCalled)
|
|
})
|
|
|
|
t.Run("drop_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
expectedErr := errors.New("drop collection failed")
|
|
mockDrop := mockey.Mock(mockey.GetMethod(&broker.MockBroker{}, "DropCollection")).To(
|
|
func(_ *broker.MockBroker, ctx context.Context, dbName, collectionName string) error {
|
|
return expectedErr
|
|
}).Build()
|
|
defer mockDrop.UnPatch()
|
|
|
|
mockBroker := broker.NewMockBroker(t)
|
|
server := &Server{
|
|
broker: mockBroker,
|
|
}
|
|
|
|
err := server.rollbackRestoreSnapshot(ctx, "test_db", "test_collection")
|
|
|
|
assert.Error(t, err)
|
|
assert.Equal(t, expectedErr, err)
|
|
})
|
|
}
|
|
|
|
// --- Test DropSnapshot ---
|
|
|
|
func TestServer_DropSnapshot(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.DropSnapshot(ctx, &datapb.DropSnapshotRequest{
|
|
Name: "test_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("snapshot_not_found_returns_success", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock GetSnapshot to return ErrSnapshotNotFound — DropSnapshot should
|
|
// treat this as idempotent success and return early BEFORE broadcast.
|
|
mockGetSnapshot := mockey.Mock((*snapshotManager).GetSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*datapb.SnapshotInfo, error) {
|
|
return nil, merr.WrapErrSnapshotNotFound(name)
|
|
}).Build()
|
|
defer mockGetSnapshot.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.DropSnapshot(ctx, &datapb.DropSnapshotRequest{
|
|
Name: "non_existent_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("snapshot_lookup_generic_error_surfaces", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock GetSnapshot to return a non-NotFound error (e.g. etcd timeout).
|
|
// DropSnapshot must NOT swallow it as idempotent success.
|
|
mockGetSnapshot := mockey.Mock((*snapshotManager).GetSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*datapb.SnapshotInfo, error) {
|
|
return nil, errors.New("etcd unavailable")
|
|
}).Build()
|
|
defer mockGetSnapshot.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.DropSnapshot(ctx, &datapb.DropSnapshotRequest{
|
|
Name: "some_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
// Non-NotFound error must be reported to caller.
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("snapshot_dropped_between_check_and_lock", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock GetSnapshot: first call returns success, second returns ErrSnapshotNotFound.
|
|
// This simulates another goroutine dropping the snapshot between the
|
|
// pre-lock check and the post-lock double-check (TOCTOU pattern).
|
|
callCount := 0
|
|
mockGetSnapshot := mockey.Mock((*snapshotManager).GetSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*datapb.SnapshotInfo, error) {
|
|
callCount++
|
|
if callCount == 1 {
|
|
return &datapb.SnapshotInfo{Name: name}, nil
|
|
}
|
|
return nil, merr.WrapErrSnapshotNotFound(name)
|
|
}).Build()
|
|
defer mockGetSnapshot.UnPatch()
|
|
|
|
// Resolve collection via datacoord-local handler cache — no broker RPC.
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "test_db",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_coll"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
mockBroadCaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return mockBroadCaster, nil
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.DropSnapshot(ctx, &datapb.DropSnapshotRequest{
|
|
Name: "concurrent_dropped_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp))
|
|
assert.Equal(t, 2, callCount, "GetSnapshot should be called exactly twice (pre-lock + post-lock)")
|
|
})
|
|
|
|
t.Run("snapshot_pinned_rejected_before_broadcast", func(t *testing.T) {
|
|
// DropSnapshot must reject a pinned snapshot at the service layer,
|
|
// under the exclusive broadcast lock, BEFORE invoking Broadcast().
|
|
// This closes the retry-forever deadlock on ErrSnapshotPinned inside
|
|
// the ack callback (which would hold the resource key lock forever).
|
|
ctx := context.Background()
|
|
|
|
mockGetSnapshot := mockey.Mock((*snapshotManager).GetSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*datapb.SnapshotInfo, error) {
|
|
return &datapb.SnapshotInfo{Name: name}, nil
|
|
}).Build()
|
|
defer mockGetSnapshot.UnPatch()
|
|
|
|
// Pin check returns true — snapshot is pinned.
|
|
hasPinsCallCount := 0
|
|
mockHasPins := mockey.Mock((*snapshotManager).HasActivePins).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (bool, error) {
|
|
hasPinsCallCount++
|
|
return true, nil
|
|
}).Build()
|
|
defer mockHasPins.UnPatch()
|
|
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "test_db",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_coll"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
mockBroadCaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
|
|
// Broadcast() must NOT be called — rejection happens before it.
|
|
broadcastCalled := false
|
|
mockBroadcastSend := mockey.Mock((*embeddedBroadcastAPI).Broadcast).To(
|
|
func(b *embeddedBroadcastAPI, ctx context.Context, msg message.BroadcastMutableMessage) (*types2.BroadcastAppendResult, error) {
|
|
broadcastCalled = true
|
|
return nil, nil
|
|
}).Build()
|
|
defer mockBroadcastSend.UnPatch()
|
|
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return mockBroadCaster, nil
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.DropSnapshot(ctx, &datapb.DropSnapshotRequest{
|
|
Name: "pinned_snapshot",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.True(t, errors.Is(merr.Error(resp), merr.ErrSnapshotPinned))
|
|
assert.Equal(t, 1, hasPinsCallCount, "HasActivePins must be called exactly once under the broadcast lock")
|
|
assert.False(t, broadcastCalled, "Broadcast must NOT be called once pin check fails")
|
|
})
|
|
|
|
t.Run("has_active_pins_error_surfaces", func(t *testing.T) {
|
|
// If HasActivePins itself fails (e.g. etcd timeout), DropSnapshot must
|
|
// surface the error instead of treating it as "not pinned" and proceeding
|
|
// to broadcast — that would bypass the pin check.
|
|
ctx := context.Background()
|
|
|
|
mockGetSnapshot := mockey.Mock((*snapshotManager).GetSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*datapb.SnapshotInfo, error) {
|
|
return &datapb.SnapshotInfo{Name: name}, nil
|
|
}).Build()
|
|
defer mockGetSnapshot.UnPatch()
|
|
|
|
mockHasPins := mockey.Mock((*snapshotManager).HasActivePins).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (bool, error) {
|
|
return false, errors.New("etcd timeout during pin check")
|
|
}).Build()
|
|
defer mockHasPins.UnPatch()
|
|
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "test_db",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_coll"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
mockBroadCaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return mockBroadCaster, nil
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.DropSnapshot(ctx, &datapb.DropSnapshotRequest{
|
|
Name: "test_snapshot",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.Contains(t, resp.GetReason(), "etcd timeout during pin check")
|
|
})
|
|
|
|
// snapshot_being_restored_returns_error test removed: pin-based protection means
|
|
// DropSnapshot rejection for in-flight restore is covered by the pin check above —
|
|
// restore pins the snapshot at phase 0, so HasActivePins already returns true.
|
|
}
|
|
|
|
// --- Test DescribeSnapshot ---
|
|
|
|
func TestServer_DescribeSnapshot(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.DescribeSnapshot(ctx, &datapb.DescribeSnapshotRequest{
|
|
Name: "test_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("snapshot_not_found", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock DescribeSnapshot to return error
|
|
mockDescribe := mockey.Mock((*snapshotManager).DescribeSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*SnapshotData, error) {
|
|
return nil, errors.New("snapshot not found: " + name)
|
|
}).Build()
|
|
defer mockDescribe.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.DescribeSnapshot(ctx, &datapb.DescribeSnapshotRequest{
|
|
Name: "non_existent_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock DescribeSnapshot to return snapshot data
|
|
mockDescribe := mockey.Mock((*snapshotManager).DescribeSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*SnapshotData, error) {
|
|
return &SnapshotData{
|
|
SnapshotInfo: &datapb.SnapshotInfo{
|
|
Name: name,
|
|
CollectionId: 100,
|
|
},
|
|
Collection: &datapb.CollectionDescription{
|
|
Schema: &schemapb.CollectionSchema{
|
|
Name: "test_collection",
|
|
},
|
|
},
|
|
}, nil
|
|
}).Build()
|
|
defer mockDescribe.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.DescribeSnapshot(ctx, &datapb.DescribeSnapshotRequest{
|
|
Name: "test_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, "test_snapshot", resp.GetSnapshotInfo().GetName())
|
|
assert.Equal(t, int64(100), resp.GetSnapshotInfo().GetCollectionId())
|
|
})
|
|
|
|
t.Run("success_with_collection_info", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock DescribeSnapshot to return snapshot data with collection info
|
|
mockDescribe := mockey.Mock((*snapshotManager).DescribeSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*SnapshotData, error) {
|
|
return &SnapshotData{
|
|
SnapshotInfo: &datapb.SnapshotInfo{
|
|
Name: name,
|
|
CollectionId: 100,
|
|
},
|
|
Collection: &datapb.CollectionDescription{
|
|
Schema: &schemapb.CollectionSchema{
|
|
Name: "test_collection",
|
|
},
|
|
},
|
|
Indexes: []*indexpb.IndexInfo{
|
|
{IndexID: 1, IndexName: "idx1"},
|
|
},
|
|
}, nil
|
|
}).Build()
|
|
defer mockDescribe.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.DescribeSnapshot(ctx, &datapb.DescribeSnapshotRequest{
|
|
Name: "test_snapshot",
|
|
IncludeCollectionInfo: true,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.NotNil(t, resp.GetCollectionInfo())
|
|
assert.Equal(t, "test_collection", resp.GetCollectionInfo().GetSchema().GetName())
|
|
assert.Len(t, resp.GetIndexInfos(), 1)
|
|
})
|
|
}
|
|
|
|
// --- Test ListSnapshots ---
|
|
|
|
func TestServer_ListSnapshots(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.ListSnapshots(ctx, &datapb.ListSnapshotsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("success_empty_list", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock ListSnapshots to return empty list
|
|
mockList := mockey.Mock((*snapshotManager).ListSnapshots).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID, partitionID, dbID int64) ([]string, error) {
|
|
return []string{}, nil
|
|
}).Build()
|
|
defer mockList.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListSnapshots(ctx, &datapb.ListSnapshotsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Empty(t, resp.GetSnapshots())
|
|
})
|
|
|
|
t.Run("success_with_snapshots", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock ListSnapshots to return list
|
|
mockList := mockey.Mock((*snapshotManager).ListSnapshots).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID, partitionID, dbID int64) ([]string, error) {
|
|
return []string{"snapshot1", "snapshot2"}, nil
|
|
}).Build()
|
|
defer mockList.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListSnapshots(ctx, &datapb.ListSnapshotsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Len(t, resp.GetSnapshots(), 2)
|
|
})
|
|
|
|
t.Run("list_error", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock ListSnapshots to return error
|
|
mockList := mockey.Mock((*snapshotManager).ListSnapshots).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID, partitionID, dbID int64) ([]string, error) {
|
|
return nil, errors.New("failed to list snapshots")
|
|
}).Build()
|
|
defer mockList.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListSnapshots(ctx, &datapb.ListSnapshotsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
}
|
|
|
|
// --- Test RestoreSnapshot ---
|
|
|
|
func TestServer_RestoreSnapshot(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.RestoreSnapshot(ctx, &datapb.RestoreSnapshotRequest{
|
|
Name: "test_snapshot",
|
|
TargetDbName: "default",
|
|
TargetCollectionName: "new_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("missing_snapshot_name", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.RestoreSnapshot(ctx, &datapb.RestoreSnapshotRequest{
|
|
Name: "",
|
|
TargetDbName: "default",
|
|
TargetCollectionName: "new_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.True(t, errors.Is(merr.Error(resp.GetStatus()), merr.ErrParameterMissing))
|
|
})
|
|
|
|
t.Run("missing_collection_name", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.RestoreSnapshot(ctx, &datapb.RestoreSnapshotRequest{
|
|
Name: "test_snapshot",
|
|
TargetDbName: "default",
|
|
TargetCollectionName: "",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.True(t, errors.Is(merr.Error(resp.GetStatus()), merr.ErrParameterMissing))
|
|
})
|
|
|
|
t.Run("snapshot_not_found", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// After the Phase 0 lock refactor, the snapshot existence check is
|
|
// performed under the restore lock by PinSnapshot (which calls
|
|
// getSnapshotByName internally). We mock PinSnapshot to return
|
|
// ErrSnapshotNotFound.
|
|
mockPin := mockey.Mock((*snapshotMeta).PinSnapshot).Return(
|
|
int64(0), 0, merr.WrapErrSnapshotNotFound("non_existent_snapshot")).Build()
|
|
defer mockPin.UnPatch()
|
|
|
|
mockBroadCaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return mockBroadCaster, nil
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.RestoreSnapshot(ctx, &datapb.RestoreSnapshotRequest{
|
|
Name: "non_existent_snapshot",
|
|
TargetDbName: "default",
|
|
TargetCollectionName: "new_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
}
|
|
|
|
// --- Test CreateSnapshot additional cases ---
|
|
|
|
func TestServer_CreateSnapshot_AdditionalCases(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.CreateSnapshot(ctx, &datapb.CreateSnapshotRequest{
|
|
Name: "test_snapshot",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("snapshot_already_exists", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock GetSnapshot to return existing snapshot (no error means it exists)
|
|
mockGet := mockey.Mock((*snapshotManager).GetSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*datapb.SnapshotInfo, error) {
|
|
return &datapb.SnapshotInfo{Name: name}, nil
|
|
}).Build()
|
|
defer mockGet.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.CreateSnapshot(ctx, &datapb.CreateSnapshotRequest{
|
|
Name: "existing_snapshot",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.True(t, errors.Is(merr.Error(resp), merr.ErrParameterInvalid))
|
|
assert.Contains(t, resp.GetReason(), "already exists")
|
|
})
|
|
|
|
// Regression for the defense-in-depth validation added in Server.CreateSnapshot.
|
|
// Proxy already validates this range, but a misbehaving client could bypass Proxy
|
|
// by calling DataCoord directly, so the owner of the feature must re-check.
|
|
t.Run("compaction_protection_seconds_negative", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.CreateSnapshot(ctx, &datapb.CreateSnapshotRequest{
|
|
Name: "bad_request",
|
|
CollectionId: 100,
|
|
CompactionProtectionSeconds: -1,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.True(t, errors.Is(merr.Error(resp), merr.ErrParameterInvalid))
|
|
assert.Contains(t, resp.GetReason(), "non-negative")
|
|
})
|
|
|
|
t.Run("compaction_protection_seconds_over_max", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
maxSec := paramtable.Get().DataCoordCfg.SnapshotMaxCompactionProtectionSeconds.GetAsInt64()
|
|
|
|
resp, err := server.CreateSnapshot(ctx, &datapb.CreateSnapshotRequest{
|
|
Name: "bad_request",
|
|
CollectionId: 100,
|
|
CompactionProtectionSeconds: maxSec + 1,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.True(t, errors.Is(merr.Error(resp), merr.ErrParameterInvalid))
|
|
assert.Contains(t, resp.GetReason(), "must not exceed")
|
|
})
|
|
|
|
t.Run("get_snapshot_unexpected_error_pre_lock", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Simulate a non-NotFound failure from GetSnapshot (e.g. etcd timeout,
|
|
// decode failure). Such errors must be surfaced — not silently treated
|
|
// as "snapshot does not exist" — so the broadcast path is never reached.
|
|
unexpectedErr := errors.New("etcd request timeout")
|
|
mockGet := mockey.Mock((*snapshotManager).GetSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*datapb.SnapshotInfo, error) {
|
|
return nil, unexpectedErr
|
|
}).Build()
|
|
defer mockGet.UnPatch()
|
|
|
|
// handler.GetCollection should NOT be invoked — pre-lock GetSnapshot
|
|
// failure must short-circuit before collection resolution. We still
|
|
// patch it to assert it's never called.
|
|
handlerCalled := false
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).To(
|
|
func(_ *embeddedHandler, _ context.Context, _ int64) (*collectionInfo, error) {
|
|
handlerCalled = true
|
|
return &collectionInfo{DatabaseName: "default", Schema: &schemapb.CollectionSchema{Name: "test_coll"}}, nil
|
|
}).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
handler: fakeHandler,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.CreateSnapshot(ctx, &datapb.CreateSnapshotRequest{
|
|
Name: "any_snapshot",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
// Surface the underlying error rather than fall through to broadcast.
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.Contains(t, resp.GetReason(), "etcd request timeout")
|
|
assert.False(t, handlerCalled, "handler.GetCollection must NOT be called once pre-lock GetSnapshot errors out")
|
|
})
|
|
|
|
t.Run("get_snapshot_unexpected_error_post_lock", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// First call (pre-lock): NotFound — pass through.
|
|
// Second call (post-lock double-check): non-NotFound — must be surfaced.
|
|
callCount := 0
|
|
mockGet := mockey.Mock((*snapshotManager).GetSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string) (*datapb.SnapshotInfo, error) {
|
|
callCount++
|
|
if callCount == 1 {
|
|
return nil, merr.WrapErrSnapshotNotFound(name, "first lookup")
|
|
}
|
|
return nil, errors.New("etcd decode failure")
|
|
}).Build()
|
|
defer mockGet.UnPatch()
|
|
|
|
// Resolve collection via local handler cache — no broker RPC.
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "default",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_collection"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
// Stub out broadcaster acquisition with a closeable no-op so the flow
|
|
// reaches the post-lock re-check.
|
|
bapi := mock_broadcaster.NewMockBroadcastAPI(t)
|
|
bapi.EXPECT().Close().Return()
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return bapi, nil
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
fakeBroker := &embeddedBroker{}
|
|
mockHasCollection := mockey.Mock((*embeddedBroker).HasCollection).Return(true, nil).Build()
|
|
defer mockHasCollection.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
handler: fakeHandler,
|
|
broker: fakeBroker,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.CreateSnapshot(ctx, &datapb.CreateSnapshotRequest{
|
|
Name: "any_snapshot",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
// Post-lock check error must surface — broadcast must NOT proceed.
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.Contains(t, resp.GetReason(), "etcd decode failure")
|
|
assert.Equal(t, 2, callCount, "GetSnapshot should be invoked twice (pre-lock + post-lock)")
|
|
})
|
|
|
|
t.Run("collection_dropped_after_lock_acquisition", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockGet := mockey.Mock((*snapshotManager).GetSnapshot).Return(
|
|
nil, merr.WrapErrSnapshotNotFound("race_snapshot", "not found"),
|
|
).Build()
|
|
defer mockGet.UnPatch()
|
|
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "default",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_collection"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
broadcastCalled := false
|
|
mockBroadcaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
mockDoBroadcast := mockey.Mock((*embeddedBroadcastAPI).Broadcast).To(
|
|
func(_ *embeddedBroadcastAPI, _ context.Context, _ message.BroadcastMutableMessage) (*types2.BroadcastAppendResult, error) {
|
|
broadcastCalled = true
|
|
return &types2.BroadcastAppendResult{}, nil
|
|
}).Build()
|
|
defer mockDoBroadcast.UnPatch()
|
|
mockStartBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return mockBroadcaster, nil
|
|
}).Build()
|
|
defer mockStartBroadcast.UnPatch()
|
|
|
|
hasCollectionCalled := false
|
|
fakeBroker := &embeddedBroker{}
|
|
mockHasCollection := mockey.Mock((*embeddedBroker).HasCollection).To(
|
|
func(_ *embeddedBroker, _ context.Context, collectionID int64) (bool, error) {
|
|
hasCollectionCalled = true
|
|
assert.Equal(t, int64(100), collectionID)
|
|
return false, nil
|
|
}).Build()
|
|
defer mockHasCollection.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
handler: fakeHandler,
|
|
broker: fakeBroker,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.CreateSnapshot(ctx, &datapb.CreateSnapshotRequest{
|
|
Name: "race_snapshot",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.True(t, errors.Is(merr.Error(resp), merr.ErrCollectionNotFound))
|
|
assert.True(t, hasCollectionCalled, "collection availability must be checked under the resource lock")
|
|
assert.False(t, broadcastCalled, "CreateSnapshot must not broadcast after DropCollection wins the lock race")
|
|
})
|
|
|
|
t.Run("collection_recheck_error_after_lock", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockGet := mockey.Mock((*snapshotManager).GetSnapshot).Return(
|
|
nil, merr.WrapErrSnapshotNotFound("race_snapshot", "not found"),
|
|
).Build()
|
|
defer mockGet.UnPatch()
|
|
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "default",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_collection"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
broadcastCalled := false
|
|
mockBroadcaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
mockDoBroadcast := mockey.Mock((*embeddedBroadcastAPI).Broadcast).To(
|
|
func(_ *embeddedBroadcastAPI, _ context.Context, _ message.BroadcastMutableMessage) (*types2.BroadcastAppendResult, error) {
|
|
broadcastCalled = true
|
|
return &types2.BroadcastAppendResult{}, nil
|
|
}).Build()
|
|
defer mockDoBroadcast.UnPatch()
|
|
mockStartBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return mockBroadcaster, nil
|
|
}).Build()
|
|
defer mockStartBroadcast.UnPatch()
|
|
|
|
fakeBroker := &embeddedBroker{}
|
|
mockHasCollection := mockey.Mock((*embeddedBroker).HasCollection).Return(
|
|
false, errors.New("rootcoord unavailable"),
|
|
).Build()
|
|
defer mockHasCollection.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
handler: fakeHandler,
|
|
broker: fakeBroker,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.CreateSnapshot(ctx, &datapb.CreateSnapshotRequest{
|
|
Name: "race_snapshot",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
assert.Contains(t, resp.GetReason(), "rootcoord unavailable")
|
|
assert.False(t, broadcastCalled, "CreateSnapshot must not broadcast if the lock-held collection recheck fails")
|
|
})
|
|
}
|
|
|
|
// --- Test PinSnapshotData ---
|
|
|
|
// TestServer_PinSnapshotData_AcquiresResourceKeyLock verifies that
|
|
// PinSnapshotData acquires the shared (db, collection, snapshot) resource key
|
|
// lock set BEFORE calling snapshotManager.PinSnapshotData. Without this, a
|
|
// concurrent DropSnapshot could slip in between its own pre-flight pin check
|
|
// and the ack callback, causing the callback to observe an active pin and
|
|
// retry forever.
|
|
func TestServer_PinSnapshotData_AcquiresResourceKeyLock(t *testing.T) {
|
|
t.Run("locks_before_pinning", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Resolve collection identity from datacoord-local handler cache — no
|
|
// broker RPC on the hot path.
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "test_db",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_coll"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
// Record which resource keys were requested, and assert the call order.
|
|
var capturedKeys []message.ResourceKey
|
|
lockAcquired := false
|
|
mockBroadcaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
capturedKeys = keys
|
|
lockAcquired = true
|
|
return mockBroadcaster, nil
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
// PinSnapshotData must be called AFTER the lock is acquired.
|
|
mockPin := mockey.Mock((*snapshotManager).PinSnapshotData).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string, ttl int64) (int64, error) {
|
|
assert.True(t, lockAcquired, "lock must be acquired before PinSnapshotData is called")
|
|
return 42, nil
|
|
}).Build()
|
|
defer mockPin.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.PinSnapshotData(ctx, &datapb.PinSnapshotDataRequest{
|
|
CollectionId: 100,
|
|
Name: "test_snapshot",
|
|
TtlSeconds: 0,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int64(42), resp.GetPinId())
|
|
|
|
// The lock set must include ALL THREE shared keys (db, collection,
|
|
// snapshot). Any one of them missing would allow a concurrent
|
|
// DropCollection or DropSnapshot to slip in between our pre-flight
|
|
// check and the ack callback — dropping one of these keys in a future
|
|
// refactor would silently re-open the race. The shared snapshot key
|
|
// must also be namespaced by collectionID so snapshots that reuse a
|
|
// name across collections don't false-contend.
|
|
byDomain := make(map[messagespb.ResourceDomain]message.ResourceKey, len(capturedKeys))
|
|
for _, k := range capturedKeys {
|
|
byDomain[k.Domain] = k
|
|
}
|
|
|
|
dbKey, ok := byDomain[messagespb.ResourceDomain_ResourceDomainDBName]
|
|
assert.True(t, ok, "PinSnapshotData must acquire a DBName resource key")
|
|
assert.True(t, dbKey.Shared, "DBName key must be shared (Pin is a reader against DropDatabase)")
|
|
assert.Equal(t, "test_db", dbKey.Key, "DBName key must match the resolved db")
|
|
|
|
collKey, ok := byDomain[messagespb.ResourceDomain_ResourceDomainCollectionName]
|
|
assert.True(t, ok, "PinSnapshotData must acquire a CollectionName resource key")
|
|
assert.True(t, collKey.Shared, "CollectionName key must be shared (Pin is a reader against DropCollection)")
|
|
assert.Equal(t, "test_db:test_coll", collKey.Key, "CollectionName key must be db:collection namespaced")
|
|
|
|
snapKey, ok := byDomain[messagespb.ResourceDomain_ResourceDomainSnapshotName]
|
|
assert.True(t, ok, "PinSnapshotData must acquire a SnapshotName resource key")
|
|
assert.True(t, snapKey.Shared, "SnapshotName key must be shared so concurrent Pins don't serialize")
|
|
assert.Equal(t, "100:test_snapshot", snapKey.Key,
|
|
"SnapshotName key must be collectionID:name — the composite namespace that closes the Pin/Drop TOCTOU")
|
|
})
|
|
|
|
t.Run("collection_lookup_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// handler.GetCollection returning an error (collection not in datacoord
|
|
// cache AND rootcoord fallback failed) must surface to the user rather
|
|
// than fall through into the broadcast path.
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
nil, errors.New("collection gone"),
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.PinSnapshotData(ctx, &datapb.PinSnapshotDataRequest{
|
|
CollectionId: 100,
|
|
Name: "test_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("collection_not_found", func(t *testing.T) {
|
|
// handler.GetCollection returning (nil, nil) is the "cache-miss +
|
|
// fallback also returned nil" path — must be surfaced as
|
|
// ErrCollectionNotFound so the client sees a clear error.
|
|
ctx := context.Background()
|
|
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
nil, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.PinSnapshotData(ctx, &datapb.PinSnapshotDataRequest{
|
|
CollectionId: 100,
|
|
Name: "test_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.True(t, errors.Is(merr.Error(resp.GetStatus()), merr.ErrCollectionNotFound))
|
|
})
|
|
|
|
t.Run("lock_acquisition_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "test_db",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_coll"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return nil, errors.New("lock acquisition failed")
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
// PinSnapshotData must NOT be called if lock fails.
|
|
pinCalled := false
|
|
mockPin := mockey.Mock((*snapshotManager).PinSnapshotData).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string, ttl int64) (int64, error) {
|
|
pinCalled = true
|
|
return 0, nil
|
|
}).Build()
|
|
defer mockPin.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.PinSnapshotData(ctx, &datapb.PinSnapshotDataRequest{
|
|
CollectionId: 100,
|
|
Name: "test_snapshot",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.False(t, pinCalled, "PinSnapshotData must not be called when lock acquisition fails")
|
|
})
|
|
}
|
|
|
|
// --- Test CommitBackfillResult ---
|
|
|
|
func TestServer_CommitBackfillResult(t *testing.T) {
|
|
// Small helper to build a minimal Server with a healthy state and a
|
|
// chunk manager that always returns the supplied JSON bytes.
|
|
newServerForCommit := func(t *testing.T, m *meta, b broker.Broker, jsonBytes []byte) *Server {
|
|
cm := mock_storage.NewMockChunkManager(t)
|
|
cm.EXPECT().Size(mock.Anything, mock.Anything).Return(int64(len(jsonBytes)), nil).Maybe()
|
|
cm.EXPECT().Read(mock.Anything, mock.Anything).Return(jsonBytes, nil).Maybe()
|
|
m.chunkManager = cm
|
|
s := &Server{
|
|
meta: m,
|
|
broker: b,
|
|
}
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
return s
|
|
}
|
|
|
|
// V3 happy path: 2 V3 segments both belong to collection 100, broadcast is
|
|
// captured and inspected.
|
|
t.Run("v3_happy_path", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
|
|
for _, id := range []int64{1001, 1002} {
|
|
m.AddSegment(ctx, &SegmentInfo{
|
|
SegmentInfo: &datapb.SegmentInfo{
|
|
ID: id,
|
|
CollectionID: 100,
|
|
State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV3,
|
|
ManifestPath: packed.MarshalManifestPath("/seg/"+strconv.FormatInt(id, 10), 1),
|
|
},
|
|
})
|
|
}
|
|
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"segments": {
|
|
"1001": {"version": 10, "rowCount": 5, "outputPath": "s3a://bkt/seg/1001", "manifestPaths": []},
|
|
"1002": {"version": 20, "rowCount": 7, "outputPath": "s3a://bkt/seg/1002", "manifestPaths": []}
|
|
}
|
|
}`
|
|
|
|
mockBroker := broker.NewMockBroker(t)
|
|
mockBroker.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
|
|
Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
DbName: "default",
|
|
CollectionName: "test_collection",
|
|
}, nil)
|
|
|
|
server := newServerForCommit(t, m, mockBroker, []byte(jsonStr))
|
|
|
|
wal := mock_streaming.NewMockWALAccesser(t)
|
|
wal.EXPECT().ControlChannel().Return("by-dev-rootcoord-dml_0").Maybe()
|
|
streaming.SetWALForTest(wal)
|
|
|
|
bapi := mock_broadcaster.NewMockBroadcastAPI(t)
|
|
var captured message.BroadcastMutableMessage
|
|
bapi.EXPECT().Broadcast(mock.Anything, mock.Anything).RunAndReturn(
|
|
func(ctx context.Context, msg message.BroadcastMutableMessage) (*types2.BroadcastAppendResult, error) {
|
|
captured = msg
|
|
return &types2.BroadcastAppendResult{
|
|
BroadcastID: 1,
|
|
AppendResults: map[string]*types2.AppendResult{
|
|
"by-dev-rootcoord-dml_0": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
TimeTick: tsoutil.ComposeTSByTime(time.Now(), 0),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
},
|
|
},
|
|
}, nil
|
|
})
|
|
bapi.EXPECT().Close().Return()
|
|
patch := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return bapi, nil
|
|
}).Build()
|
|
defer patch.UnPatch()
|
|
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bucket/path/to/result.json",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp.GetStatus()))
|
|
assert.Equal(t, int32(2), resp.GetTotalSegments())
|
|
assert.Equal(t, int32(2), resp.GetCommittedSegments())
|
|
assert.Equal(t, int32(0), resp.GetFailedSegments())
|
|
// Ensure the broadcast carries exactly two V3 items.
|
|
assert.NotNil(t, captured)
|
|
// Access the message body through the specialized wrapper.
|
|
specialized := message.MustAsMutableBatchUpdateManifestMessageV2(captured)
|
|
body := specialized.MustBody()
|
|
assert.Len(t, body.GetItems(), 2)
|
|
for _, it := range body.GetItems() {
|
|
assert.Nil(t, it.GetV2ColumnGroups())
|
|
assert.Greater(t, it.GetManifestVersion(), int64(0))
|
|
}
|
|
})
|
|
|
|
// Unhealthy state: reject without reading anything.
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("success_false_rejected", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
jsonStr := `{"success": false, "collectionId": 1, "segments": {"1": {"version": 1}}}`
|
|
server := newServerForCommit(t, m, nil, []byte(jsonStr))
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("bad_json_rejected", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
server := newServerForCommit(t, m, nil, []byte("not json"))
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
// All segments fail pre-validation -> no broadcast, top-level error.
|
|
t.Run("all_segments_prevalidation_fail", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
// Seg 1 does NOT exist in meta, so pre-validation rejects it.
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"segments": {
|
|
"1": {"version": 10, "rowCount": 1, "outputPath": "x", "manifestPaths": []}
|
|
}
|
|
}`
|
|
server := newServerForCommit(t, m, nil, []byte(jsonStr))
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int32(1), resp.GetTotalSegments())
|
|
assert.Equal(t, int32(1), resp.GetFailedSegments())
|
|
assert.Equal(t, int32(0), resp.GetCommittedSegments())
|
|
require.Len(t, resp.GetSegmentStatuses(), 1)
|
|
assert.False(t, resp.GetSegmentStatuses()[0].GetOk())
|
|
assert.Contains(t, resp.GetSegmentStatuses()[0].GetReason(), "not found")
|
|
})
|
|
|
|
// Mixed: one segment passes pre-validation (goes to broadcast), one fails
|
|
// (wrong collection).
|
|
t.Run("partial_failure_reported", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 101, CollectionID: 100, State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV3,
|
|
ManifestPath: packed.MarshalManifestPath("/seg/101", 1),
|
|
}})
|
|
// 102 belongs to a different collection
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 102, CollectionID: 999, State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV3,
|
|
ManifestPath: packed.MarshalManifestPath("/seg/102", 1),
|
|
}})
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"segments": {
|
|
"101": {"version": 10, "rowCount": 1, "outputPath": "x", "manifestPaths": []},
|
|
"102": {"version": 20, "rowCount": 1, "outputPath": "x", "manifestPaths": []}
|
|
}
|
|
}`
|
|
mockBroker := broker.NewMockBroker(t)
|
|
mockBroker.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
|
|
Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
DbName: "default",
|
|
CollectionName: "c",
|
|
}, nil).Maybe()
|
|
server := newServerForCommit(t, m, mockBroker, []byte(jsonStr))
|
|
|
|
wal := mock_streaming.NewMockWALAccesser(t)
|
|
wal.EXPECT().ControlChannel().Return("by-dev-rootcoord-dml_0").Maybe()
|
|
streaming.SetWALForTest(wal)
|
|
|
|
bapi := mock_broadcaster.NewMockBroadcastAPI(t)
|
|
bapi.EXPECT().Broadcast(mock.Anything, mock.Anything).Return(&types2.BroadcastAppendResult{
|
|
BroadcastID: 1,
|
|
AppendResults: map[string]*types2.AppendResult{
|
|
"by-dev-rootcoord-dml_0": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
TimeTick: tsoutil.ComposeTSByTime(time.Now(), 0),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
},
|
|
},
|
|
}, nil)
|
|
bapi.EXPECT().Close().Return()
|
|
patch := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return bapi, nil
|
|
}).Build()
|
|
defer patch.UnPatch()
|
|
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bucket/result.json",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp.GetStatus()))
|
|
assert.Equal(t, int32(2), resp.GetTotalSegments())
|
|
assert.Equal(t, int32(1), resp.GetCommittedSegments())
|
|
assert.Equal(t, int32(1), resp.GetFailedSegments())
|
|
})
|
|
|
|
// V2 happy path: one V2 column-group entry reaches broadcast with V2
|
|
// payload populated.
|
|
t.Run("v2_happy_path", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 201, CollectionID: 100, State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV2,
|
|
}})
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"segments": {
|
|
"201": {
|
|
"version": -1,
|
|
"rowCount": 100,
|
|
"outputPath": "s3a://bkt/seg/201",
|
|
"manifestPaths": ["s3a://bkt/seg/201/100/7"],
|
|
"storage_version": 2,
|
|
"column_groups": [
|
|
{"field_ids":[100], "binlog_files":["s3a://bkt/seg/201/100/7"], "row_count": 100}
|
|
]
|
|
}
|
|
}
|
|
}`
|
|
mockBroker := broker.NewMockBroker(t)
|
|
mockBroker.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
|
|
Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(), DbName: "default", CollectionName: "c",
|
|
}, nil)
|
|
server := newServerForCommit(t, m, mockBroker, []byte(jsonStr))
|
|
|
|
wal := mock_streaming.NewMockWALAccesser(t)
|
|
wal.EXPECT().ControlChannel().Return("by-dev-rootcoord-dml_0").Maybe()
|
|
streaming.SetWALForTest(wal)
|
|
|
|
bapi := mock_broadcaster.NewMockBroadcastAPI(t)
|
|
var captured message.BroadcastMutableMessage
|
|
bapi.EXPECT().Broadcast(mock.Anything, mock.Anything).RunAndReturn(
|
|
func(ctx context.Context, msg message.BroadcastMutableMessage) (*types2.BroadcastAppendResult, error) {
|
|
captured = msg
|
|
return &types2.BroadcastAppendResult{
|
|
BroadcastID: 1,
|
|
AppendResults: map[string]*types2.AppendResult{
|
|
"by-dev-rootcoord-dml_0": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
TimeTick: tsoutil.ComposeTSByTime(time.Now(), 0),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
},
|
|
},
|
|
}, nil
|
|
})
|
|
bapi.EXPECT().Close().Return()
|
|
patch := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return bapi, nil
|
|
}).Build()
|
|
defer patch.UnPatch()
|
|
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bucket/result.json",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp.GetStatus()))
|
|
assert.Equal(t, int32(1), resp.GetCommittedSegments())
|
|
|
|
specialized := message.MustAsMutableBatchUpdateManifestMessageV2(captured)
|
|
body := specialized.MustBody()
|
|
require.Len(t, body.GetItems(), 1)
|
|
it := body.GetItems()[0]
|
|
assert.Equal(t, int64(201), it.GetSegmentId())
|
|
assert.Equal(t, int64(0), it.GetManifestVersion())
|
|
require.NotNil(t, it.GetV2ColumnGroups())
|
|
require.Contains(t, it.GetV2ColumnGroups().GetColumnGroups(), int64(100))
|
|
fb := it.GetV2ColumnGroups().GetColumnGroups()[100]
|
|
require.Len(t, fb.GetBinlogs(), 1)
|
|
assert.Equal(t, int64(100), fb.GetBinlogs()[0].GetEntriesNum())
|
|
})
|
|
|
|
// Partition-scoped backfill: result.PartitionID != 0 and segment belongs
|
|
// to a different partition -> rejected.
|
|
t.Run("wrong_partition_rejected", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 401, CollectionID: 100, PartitionID: 999,
|
|
State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV3,
|
|
ManifestPath: packed.MarshalManifestPath("/seg/401", 1),
|
|
}})
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"partitionId": 42,
|
|
"segments": {
|
|
"401": {"version": 10, "rowCount": 1, "outputPath": "x", "manifestPaths": []}
|
|
}
|
|
}`
|
|
server := newServerForCommit(t, m, nil, []byte(jsonStr))
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int32(1), resp.GetFailedSegments())
|
|
require.Len(t, resp.GetSegmentStatuses(), 1)
|
|
assert.False(t, resp.GetSegmentStatuses()[0].GetOk())
|
|
assert.Contains(t, resp.GetSegmentStatuses()[0].GetReason(), "does not belong to the result's partition")
|
|
})
|
|
|
|
// V3 entry pointing at a segment whose actual storage version is V2 must
|
|
// be rejected: UpdateManifestVersion would no-op and the caller would see
|
|
// a fake committed=true.
|
|
t.Run("v3_rejected_on_non_v3_segment", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 301, CollectionID: 100, State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV2, // V2 segment, JSON misroutes it as V3
|
|
ManifestPath: packed.MarshalManifestPath("/seg/301", 1),
|
|
}})
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"segments": {
|
|
"301": {"version": 10, "rowCount": 1, "outputPath": "x", "manifestPaths": []}
|
|
}
|
|
}`
|
|
server := newServerForCommit(t, m, nil, []byte(jsonStr))
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int32(1), resp.GetFailedSegments())
|
|
require.Len(t, resp.GetSegmentStatuses(), 1)
|
|
assert.False(t, resp.GetSegmentStatuses()[0].GetOk())
|
|
assert.Contains(t, resp.GetSegmentStatuses()[0].GetReason(), "storage version is not V3")
|
|
})
|
|
|
|
// V3 entry whose version is not strictly greater than the segment's
|
|
// current manifest version must be rejected. This prevents a stale
|
|
// Spark retry from silently rolling the manifest pointer backwards.
|
|
t.Run("v3_rejected_on_stale_version", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 401, CollectionID: 100, State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV3,
|
|
// current manifest version = 10
|
|
ManifestPath: packed.MarshalManifestPath("/seg/401", 10),
|
|
}})
|
|
// JSON reports version=5, which is less than current 10.
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"segments": {
|
|
"401": {"version": 5, "rowCount": 1, "outputPath": "x", "manifestPaths": []}
|
|
}
|
|
}`
|
|
server := newServerForCommit(t, m, nil, []byte(jsonStr))
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int32(1), resp.GetFailedSegments())
|
|
require.Len(t, resp.GetSegmentStatuses(), 1)
|
|
assert.False(t, resp.GetSegmentStatuses()[0].GetOk())
|
|
assert.Contains(t, resp.GetSegmentStatuses()[0].GetReason(), "not greater than current")
|
|
})
|
|
|
|
// Same-version retry must also be rejected -- UpdateManifestVersion
|
|
// short-circuits on equality so the item would otherwise broadcast as a
|
|
// no-op while we report committed=true.
|
|
t.Run("v3_rejected_on_equal_version", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 402, CollectionID: 100, State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV3,
|
|
ManifestPath: packed.MarshalManifestPath("/seg/402", 7),
|
|
}})
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"segments": {
|
|
"402": {"version": 7, "rowCount": 1, "outputPath": "x", "manifestPaths": []}
|
|
}
|
|
}`
|
|
server := newServerForCommit(t, m, nil, []byte(jsonStr))
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
require.Len(t, resp.GetSegmentStatuses(), 1)
|
|
assert.Contains(t, resp.GetSegmentStatuses()[0].GetReason(), "not greater than current")
|
|
})
|
|
|
|
// V3 entry pointing at a V3 segment that has never had a manifest written
|
|
// (ManifestPath == "") must be rejected at pre-validation.
|
|
t.Run("v3_rejected_on_empty_manifest_path", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 302, CollectionID: 100, State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV3,
|
|
// ManifestPath intentionally empty.
|
|
}})
|
|
jsonStr := `{
|
|
"success": true,
|
|
"collectionId": 100,
|
|
"segments": {
|
|
"302": {"version": 10, "rowCount": 1, "outputPath": "x", "manifestPaths": []}
|
|
}
|
|
}`
|
|
server := newServerForCommit(t, m, nil, []byte(jsonStr))
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int32(1), resp.GetFailedSegments())
|
|
require.Len(t, resp.GetSegmentStatuses(), 1)
|
|
assert.False(t, resp.GetSegmentStatuses()[0].GetOk())
|
|
assert.Contains(t, resp.GetSegmentStatuses()[0].GetReason(), "no existing manifest path")
|
|
})
|
|
|
|
// A result JSON that exceeds the hard-cap must be rejected before Read
|
|
// so an oversized or malicious file cannot OOM DataCoord.
|
|
t.Run("oversized_result_rejected", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
|
|
cm := mock_storage.NewMockChunkManager(t)
|
|
cm.EXPECT().Size(mock.Anything, mock.Anything).Return(maxBackfillResultBytes+1, nil)
|
|
// Read must not be called -- assert by omitting the expectation.
|
|
m.chunkManager = cm
|
|
|
|
s := &Server{meta: m}
|
|
s.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := s.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bkt/foo",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Contains(t, resp.GetStatus().GetReason(), "exceeds limit")
|
|
})
|
|
|
|
// More items than maxItemsPerBroadcast must be split across several
|
|
// broadcast messages so the payload stays under typical MQ limits.
|
|
t.Run("items_split_across_broadcast_batches", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
m, err := newMemoryMeta(t)
|
|
require.NoError(t, err)
|
|
|
|
segIDs := make([]int64, 0, maxItemsPerBroadcast+5)
|
|
for i := int64(1); i <= int64(maxItemsPerBroadcast+5); i++ {
|
|
segIDs = append(segIDs, 10000+i)
|
|
m.AddSegment(ctx, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: 10000 + i, CollectionID: 100, State: commonpb.SegmentState_Flushed,
|
|
StorageVersion: storage.StorageV3,
|
|
ManifestPath: packed.MarshalManifestPath("/seg/"+strconv.FormatInt(10000+i, 10), 1),
|
|
}})
|
|
}
|
|
// Build a JSON result referencing every segment.
|
|
var b strings.Builder
|
|
b.WriteString(`{"success": true, "collectionId": 100, "segments": {`)
|
|
for i, id := range segIDs {
|
|
if i > 0 {
|
|
b.WriteByte(',')
|
|
}
|
|
b.WriteString(`"` + strconv.FormatInt(id, 10) + `": {"version": 10, "rowCount": 1, "outputPath": "x", "manifestPaths": []}`)
|
|
}
|
|
b.WriteString(`}}`)
|
|
|
|
mockBroker := broker.NewMockBroker(t)
|
|
mockBroker.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
|
|
Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(), DbName: "default", CollectionName: "c",
|
|
}, nil)
|
|
|
|
server := newServerForCommit(t, m, mockBroker, []byte(b.String()))
|
|
|
|
wal := mock_streaming.NewMockWALAccesser(t)
|
|
wal.EXPECT().ControlChannel().Return("by-dev-rootcoord-dml_0").Maybe()
|
|
streaming.SetWALForTest(wal)
|
|
|
|
bapi := mock_broadcaster.NewMockBroadcastAPI(t)
|
|
var broadcastCalls int
|
|
bapi.EXPECT().Broadcast(mock.Anything, mock.Anything).RunAndReturn(
|
|
func(ctx context.Context, msg message.BroadcastMutableMessage) (*types2.BroadcastAppendResult, error) {
|
|
broadcastCalls++
|
|
return &types2.BroadcastAppendResult{
|
|
BroadcastID: uint64(broadcastCalls),
|
|
AppendResults: map[string]*types2.AppendResult{
|
|
"by-dev-rootcoord-dml_0": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
TimeTick: tsoutil.ComposeTSByTime(time.Now(), 0),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
},
|
|
},
|
|
}, nil
|
|
})
|
|
bapi.EXPECT().Close().Return()
|
|
patch := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return bapi, nil
|
|
}).Build()
|
|
defer patch.UnPatch()
|
|
|
|
resp, err := server.CommitBackfillResult(ctx, &datapb.CommitBackfillResultRequest{
|
|
ResultPath: "s3a://bucket/result.json",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp.GetStatus()))
|
|
assert.Equal(t, int32(len(segIDs)), resp.GetCommittedSegments())
|
|
assert.Equal(t, int32(0), resp.GetFailedSegments())
|
|
// 517 items split across batches of 512 = 2 broadcasts.
|
|
assert.Equal(t, 2, broadcastCalls)
|
|
})
|
|
}
|
|
|
|
// --- Test BatchUpdateManifest ---
|
|
|
|
func TestServer_BatchUpdateManifest(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.BatchUpdateManifest(ctx, &datapb.BatchUpdateManifestRequest{
|
|
CollectionId: 100,
|
|
Items: []*datapb.BatchUpdateManifestItem{
|
|
{SegmentId: 1, ManifestVersion: 10},
|
|
},
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("describe_collection_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockBroker := broker.NewMockBroker(t)
|
|
mockBroker.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
|
|
Return(nil, errors.New("collection not found"))
|
|
|
|
server := &Server{
|
|
broker: mockBroker,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.BatchUpdateManifest(ctx, &datapb.BatchUpdateManifestRequest{
|
|
CollectionId: 100,
|
|
Items: []*datapb.BatchUpdateManifestItem{
|
|
{SegmentId: 1, ManifestVersion: 10},
|
|
},
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("start_broadcast_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockBroker := broker.NewMockBroker(t)
|
|
mockBroker.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
|
|
Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
DbName: "default",
|
|
CollectionName: "test_collection",
|
|
}, nil)
|
|
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return nil, errors.New("failed to start broadcast")
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
server := &Server{
|
|
broker: mockBroker,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.BatchUpdateManifest(ctx, &datapb.BatchUpdateManifestRequest{
|
|
CollectionId: 100,
|
|
Items: []*datapb.BatchUpdateManifestItem{
|
|
{SegmentId: 1, ManifestVersion: 10},
|
|
},
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("broadcast_send_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockBroker := broker.NewMockBroker(t)
|
|
mockBroker.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
|
|
Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
DbName: "default",
|
|
CollectionName: "test_collection",
|
|
}, nil)
|
|
|
|
// Mock WAL
|
|
wal := mock_streaming.NewMockWALAccesser(t)
|
|
wal.EXPECT().ControlChannel().Return("by-dev-rootcoord-dml_0").Maybe()
|
|
streaming.SetWALForTest(wal)
|
|
|
|
// Mock broadcaster
|
|
bapi := mock_broadcaster.NewMockBroadcastAPI(t)
|
|
bapi.EXPECT().Broadcast(mock.Anything, mock.Anything).Return(nil, errors.New("broadcast send failed"))
|
|
bapi.EXPECT().Close().Return()
|
|
|
|
mockBroadcastPatch := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return bapi, nil
|
|
}).Build()
|
|
defer mockBroadcastPatch.UnPatch()
|
|
|
|
server := &Server{
|
|
broker: mockBroker,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.BatchUpdateManifest(ctx, &datapb.BatchUpdateManifestRequest{
|
|
CollectionId: 100,
|
|
Items: []*datapb.BatchUpdateManifestItem{
|
|
{SegmentId: 1, ManifestVersion: 10},
|
|
},
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockBroker := broker.NewMockBroker(t)
|
|
mockBroker.EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
|
|
Return(&milvuspb.DescribeCollectionResponse{
|
|
Status: merr.Success(),
|
|
DbName: "default",
|
|
CollectionName: "test_collection",
|
|
}, nil)
|
|
|
|
// Mock WAL
|
|
wal := mock_streaming.NewMockWALAccesser(t)
|
|
wal.EXPECT().ControlChannel().Return("by-dev-rootcoord-dml_0").Maybe()
|
|
streaming.SetWALForTest(wal)
|
|
|
|
// Mock broadcaster
|
|
bapi := mock_broadcaster.NewMockBroadcastAPI(t)
|
|
bapi.EXPECT().Broadcast(mock.Anything, mock.Anything).Return(&types2.BroadcastAppendResult{
|
|
BroadcastID: 1,
|
|
AppendResults: map[string]*types2.AppendResult{
|
|
"by-dev-rootcoord-dml_0": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
TimeTick: tsoutil.ComposeTSByTime(time.Now(), 0),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
},
|
|
},
|
|
}, nil)
|
|
bapi.EXPECT().Close().Return()
|
|
|
|
mockBroadcastPatch := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return bapi, nil
|
|
}).Build()
|
|
defer mockBroadcastPatch.UnPatch()
|
|
|
|
server := &Server{
|
|
broker: mockBroker,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.BatchUpdateManifest(ctx, &datapb.BatchUpdateManifestRequest{
|
|
CollectionId: 100,
|
|
Items: []*datapb.BatchUpdateManifestItem{
|
|
{SegmentId: 1, ManifestVersion: 10},
|
|
{SegmentId: 2, ManifestVersion: 20},
|
|
},
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp))
|
|
})
|
|
}
|
|
|
|
func TestServer_BatchUpdateManifest_Callback(t *testing.T) {
|
|
t.Run("success", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
registry.ResetRegistration()
|
|
|
|
mockUpdateSegmentsInfo := mockey.Mock((*meta).UpdateSegmentsInfo).To(
|
|
func(m *meta, ctx context.Context, operators ...UpdateOperator) error {
|
|
return nil
|
|
}).Build()
|
|
defer mockUpdateSegmentsInfo.UnPatch()
|
|
|
|
server := &Server{
|
|
ctx: ctx,
|
|
meta: &meta{segments: NewSegmentsInfo()},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
RegisterDDLCallbacks(server)
|
|
|
|
msg := message.NewBatchUpdateManifestMessageBuilderV2().
|
|
WithHeader(&message.BatchUpdateManifestMessageHeader{
|
|
CollectionId: 100,
|
|
}).
|
|
WithBody(&message.BatchUpdateManifestMessageBody{
|
|
Items: []*messagespb.BatchUpdateManifestItem{
|
|
{SegmentId: 1, ManifestVersion: 15},
|
|
{SegmentId: 2, ManifestVersion: 25},
|
|
},
|
|
}).
|
|
WithBroadcast([]string{"control_channel"}).
|
|
MustBuildBroadcast()
|
|
|
|
err := registry.CallMessageAckCallback(ctx, msg, map[string]*message.AppendResult{
|
|
"control_channel": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
TimeTick: 1,
|
|
},
|
|
})
|
|
assert.NoError(t, err)
|
|
})
|
|
|
|
t.Run("empty_items", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
registry.ResetRegistration()
|
|
|
|
server := &Server{
|
|
ctx: ctx,
|
|
meta: &meta{segments: NewSegmentsInfo()},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
RegisterDDLCallbacks(server)
|
|
|
|
msg := message.NewBatchUpdateManifestMessageBuilderV2().
|
|
WithHeader(&message.BatchUpdateManifestMessageHeader{
|
|
CollectionId: 100,
|
|
}).
|
|
WithBody(&message.BatchUpdateManifestMessageBody{}).
|
|
WithBroadcast([]string{"control_channel"}).
|
|
MustBuildBroadcast()
|
|
|
|
err := registry.CallMessageAckCallback(ctx, msg, map[string]*message.AppendResult{
|
|
"control_channel": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
TimeTick: 1,
|
|
},
|
|
})
|
|
assert.NoError(t, err)
|
|
})
|
|
|
|
t.Run("update_segments_info_error", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
registry.ResetRegistration()
|
|
|
|
mockUpdateSegmentsInfo := mockey.Mock((*meta).UpdateSegmentsInfo).To(
|
|
func(m *meta, ctx context.Context, operators ...UpdateOperator) error {
|
|
return errors.New("update segments info failed")
|
|
}).Build()
|
|
defer mockUpdateSegmentsInfo.UnPatch()
|
|
|
|
server := &Server{
|
|
ctx: ctx,
|
|
meta: &meta{segments: NewSegmentsInfo()},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
RegisterDDLCallbacks(server)
|
|
|
|
msg := message.NewBatchUpdateManifestMessageBuilderV2().
|
|
WithHeader(&message.BatchUpdateManifestMessageHeader{
|
|
CollectionId: 100,
|
|
}).
|
|
WithBody(&message.BatchUpdateManifestMessageBody{
|
|
Items: []*messagespb.BatchUpdateManifestItem{
|
|
{SegmentId: 1, ManifestVersion: 15},
|
|
},
|
|
}).
|
|
WithBroadcast([]string{"control_channel"}).
|
|
MustBuildBroadcast()
|
|
|
|
err := registry.CallMessageAckCallback(ctx, msg, map[string]*message.AppendResult{
|
|
"control_channel": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
TimeTick: 1,
|
|
},
|
|
})
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("v2_column_groups_dispatches_operator", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
registry.ResetRegistration()
|
|
|
|
var capturedOps int
|
|
mockUpdate := mockey.Mock((*meta).UpdateSegmentsInfo).To(
|
|
func(m *meta, ctx context.Context, operators ...UpdateOperator) error {
|
|
capturedOps = len(operators)
|
|
return nil
|
|
}).Build()
|
|
defer mockUpdate.UnPatch()
|
|
|
|
server := &Server{
|
|
ctx: ctx,
|
|
meta: &meta{segments: NewSegmentsInfo()},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
RegisterDDLCallbacks(server)
|
|
|
|
msg := message.NewBatchUpdateManifestMessageBuilderV2().
|
|
WithHeader(&message.BatchUpdateManifestMessageHeader{
|
|
CollectionId: 100,
|
|
}).
|
|
WithBody(&message.BatchUpdateManifestMessageBody{
|
|
Items: []*messagespb.BatchUpdateManifestItem{
|
|
{SegmentId: 1, ManifestVersion: 15}, // V3
|
|
{
|
|
SegmentId: 2, // V2
|
|
V2ColumnGroups: &messagespb.BatchUpdateManifestV2ColumnGroups{
|
|
ColumnGroups: map[int64]*datapb.FieldBinlog{
|
|
200: {FieldID: 200, Binlogs: []*datapb.Binlog{{LogID: 7}}},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}).
|
|
WithBroadcast([]string{"control_channel"}).
|
|
MustBuildBroadcast()
|
|
|
|
err := registry.CallMessageAckCallback(ctx, msg, map[string]*message.AppendResult{
|
|
"control_channel": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
TimeTick: 1,
|
|
},
|
|
})
|
|
assert.NoError(t, err)
|
|
// Two operators dispatched: one V3 UpdateManifestVersion, one V2
|
|
// UpdateSegmentColumnGroupsOperator. Both flow through the single
|
|
// UpdateSegmentsInfo batch call.
|
|
assert.Equal(t, 2, capturedOps)
|
|
})
|
|
|
|
t.Run("item_with_both_v2_and_v3_is_skipped", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
registry.ResetRegistration()
|
|
|
|
var capturedOps int
|
|
mockUpdate := mockey.Mock((*meta).UpdateSegmentsInfo).To(
|
|
func(m *meta, ctx context.Context, operators ...UpdateOperator) error {
|
|
capturedOps = len(operators)
|
|
return nil
|
|
}).Build()
|
|
defer mockUpdate.UnPatch()
|
|
|
|
server := &Server{
|
|
ctx: ctx,
|
|
meta: &meta{segments: NewSegmentsInfo()},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
RegisterDDLCallbacks(server)
|
|
|
|
msg := message.NewBatchUpdateManifestMessageBuilderV2().
|
|
WithHeader(&message.BatchUpdateManifestMessageHeader{
|
|
CollectionId: 100,
|
|
}).
|
|
WithBody(&message.BatchUpdateManifestMessageBody{
|
|
Items: []*messagespb.BatchUpdateManifestItem{
|
|
{
|
|
SegmentId: 1,
|
|
ManifestVersion: 15,
|
|
V2ColumnGroups: &messagespb.BatchUpdateManifestV2ColumnGroups{
|
|
ColumnGroups: map[int64]*datapb.FieldBinlog{
|
|
200: {FieldID: 200, Binlogs: []*datapb.Binlog{{LogID: 7}}},
|
|
},
|
|
},
|
|
},
|
|
{SegmentId: 2, ManifestVersion: 25}, // valid V3
|
|
},
|
|
}).
|
|
WithBroadcast([]string{"control_channel"}).
|
|
MustBuildBroadcast()
|
|
|
|
err := registry.CallMessageAckCallback(ctx, msg, map[string]*message.AppendResult{
|
|
"control_channel": {
|
|
MessageID: rmq.NewRmqID(1),
|
|
LastConfirmedMessageID: rmq.NewRmqID(1),
|
|
TimeTick: 1,
|
|
},
|
|
})
|
|
assert.NoError(t, err)
|
|
// ambiguous item is skipped, only the valid V3 item becomes an operator
|
|
assert.Equal(t, 1, capturedOps)
|
|
})
|
|
}
|
|
|
|
// --- Test RefreshExternalCollection ---
|
|
|
|
func TestServer_RefreshExternalCollection(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.RefreshExternalCollection(ctx, &datapb.RefreshExternalCollectionRequest{
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("refresh_manager_not_initialized", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: nil, // Not initialized
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.RefreshExternalCollection(ctx, &datapb.RefreshExternalCollectionRequest{
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Contains(t, resp.GetStatus().GetReason(), "external collection refresh manager not initialized")
|
|
})
|
|
|
|
t.Run("alloc_id_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockAllocator := allocator.NewMockAllocator(t)
|
|
mockAllocator.EXPECT().AllocID(mock.Anything).Return(int64(0), errors.New("alloc failed"))
|
|
|
|
// Create a mock refresh manager (non-nil)
|
|
mockRefreshMgr := &externalCollectionRefreshManager{}
|
|
|
|
server := &Server{
|
|
allocator: mockAllocator,
|
|
externalCollectionRefreshManager: mockRefreshMgr,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// Bypass startBroadcast (broker not wired in test) and the new
|
|
// duplicate-active-job pre-check (refreshMeta is nil here).
|
|
mockStartBroadcast := mockey.Mock((*Server).startBroadcastWithCollectionID).Return(&embeddedBroadcastAPI{}, nil).Build()
|
|
defer mockStartBroadcast.UnPatch()
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
mockGetActive := mockey.Mock((*externalCollectionRefreshManager).GetActiveJobByCollectionID).Return(nil).Build()
|
|
defer mockGetActive.UnPatch()
|
|
|
|
resp, err := server.RefreshExternalCollection(ctx, &datapb.RefreshExternalCollectionRequest{
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("rejects_when_active_job_in_progress", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockRefreshMgr := &externalCollectionRefreshManager{}
|
|
server := &Server{
|
|
externalCollectionRefreshManager: mockRefreshMgr,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
mockStartBroadcast := mockey.Mock((*Server).startBroadcastWithCollectionID).Return(&embeddedBroadcastAPI{}, nil).Build()
|
|
defer mockStartBroadcast.UnPatch()
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
mockGetActive := mockey.Mock((*externalCollectionRefreshManager).GetActiveJobByCollectionID).Return(&datapb.ExternalCollectionRefreshJob{
|
|
JobId: 12345,
|
|
CollectionId: 100,
|
|
State: indexpb.JobState_JobStateInProgress,
|
|
}).Build()
|
|
defer mockGetActive.UnPatch()
|
|
|
|
resp, err := server.RefreshExternalCollection(ctx, &datapb.RefreshExternalCollectionRequest{
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.ErrorIs(t, merr.Error(resp.GetStatus()), merr.ErrTaskDuplicate)
|
|
assert.Equal(t, int64(12345), resp.GetJobId(),
|
|
"existing jobID must be returned so the client can poll it")
|
|
assert.Contains(t, resp.GetStatus().GetReason(), "12345")
|
|
})
|
|
|
|
t.Run("start_broadcaster_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// startBroadcast now runs before AllocID, so AllocID should never
|
|
// be reached when the broadcaster fails to start.
|
|
mockRefreshMgr := &externalCollectionRefreshManager{}
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: mockRefreshMgr,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// Mock startBroadcastWithCollectionID to return error
|
|
mockStartBroadcast := mockey.Mock((*Server).startBroadcastWithCollectionID).Return(nil, errors.New("broadcaster failed")).Build()
|
|
defer mockStartBroadcast.UnPatch()
|
|
|
|
resp, err := server.RefreshExternalCollection(ctx, &datapb.RefreshExternalCollectionRequest{
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
}
|
|
|
|
// --- Test GetRefreshExternalCollectionProgress ---
|
|
|
|
func TestServer_GetRefreshExternalCollectionProgress(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.GetRefreshExternalCollectionProgress(ctx, &datapb.GetRefreshExternalCollectionProgressRequest{
|
|
JobId: 123,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("refresh_manager_not_initialized", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: nil,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.GetRefreshExternalCollectionProgress(ctx, &datapb.GetRefreshExternalCollectionProgressRequest{
|
|
JobId: 123,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Contains(t, resp.GetStatus().GetReason(), "external collection refresh manager not initialized")
|
|
})
|
|
|
|
t.Run("get_job_progress_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock GetJobProgress to return error
|
|
mockGetJobProgress := mockey.Mock((*externalCollectionRefreshManager).GetJobProgress).Return(nil, errors.New("job not found")).Build()
|
|
defer mockGetJobProgress.UnPatch()
|
|
|
|
mockRefreshMgr := &externalCollectionRefreshManager{}
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: mockRefreshMgr,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.GetRefreshExternalCollectionProgress(ctx, &datapb.GetRefreshExternalCollectionProgressRequest{
|
|
JobId: 123,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
expectedJob := &datapb.ExternalCollectionRefreshJob{
|
|
JobId: 123,
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection",
|
|
State: indexpb.JobState_JobStateInProgress,
|
|
Progress: 50,
|
|
}
|
|
|
|
// Mock GetJobProgress to return success
|
|
mockGetJobProgress := mockey.Mock((*externalCollectionRefreshManager).GetJobProgress).Return(expectedJob, nil).Build()
|
|
defer mockGetJobProgress.UnPatch()
|
|
|
|
mockRefreshMgr := &externalCollectionRefreshManager{}
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: mockRefreshMgr,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.GetRefreshExternalCollectionProgress(ctx, &datapb.GetRefreshExternalCollectionProgressRequest{
|
|
JobId: 123,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp.GetStatus()))
|
|
assert.NotNil(t, resp.GetJobInfo())
|
|
assert.Equal(t, int64(123), resp.GetJobInfo().GetJobId())
|
|
assert.Equal(t, indexpb.JobState_JobStateInProgress, resp.GetJobInfo().GetState())
|
|
assert.Equal(t, int64(50), resp.GetJobInfo().GetProgress())
|
|
})
|
|
}
|
|
|
|
// --- Test ListRefreshExternalCollectionJobs ---
|
|
|
|
func TestServer_ListRefreshExternalCollectionJobs(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.ListRefreshExternalCollectionJobs(ctx, &datapb.ListRefreshExternalCollectionJobsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("refresh_manager_not_initialized", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: nil,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListRefreshExternalCollectionJobs(ctx, &datapb.ListRefreshExternalCollectionJobsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
assert.Contains(t, resp.GetStatus().GetReason(), "external collection refresh manager not initialized")
|
|
})
|
|
|
|
t.Run("list_jobs_failed", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock ListJobs to return error
|
|
mockListJobs := mockey.Mock((*externalCollectionRefreshManager).ListJobs).Return(nil, errors.New("list failed")).Build()
|
|
defer mockListJobs.UnPatch()
|
|
|
|
mockRefreshMgr := &externalCollectionRefreshManager{}
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: mockRefreshMgr,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListRefreshExternalCollectionJobs(ctx, &datapb.ListRefreshExternalCollectionJobsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("success_empty_list", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// Mock ListJobs to return empty list
|
|
mockListJobs := mockey.Mock((*externalCollectionRefreshManager).ListJobs).Return([]*datapb.ExternalCollectionRefreshJob{}, nil).Build()
|
|
defer mockListJobs.UnPatch()
|
|
|
|
mockRefreshMgr := &externalCollectionRefreshManager{}
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: mockRefreshMgr,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListRefreshExternalCollectionJobs(ctx, &datapb.ListRefreshExternalCollectionJobsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp.GetStatus()))
|
|
assert.Len(t, resp.GetJobs(), 0)
|
|
})
|
|
|
|
t.Run("success_list_all", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
var capturedCollectionID int64
|
|
expectedJobs := []*datapb.ExternalCollectionRefreshJob{
|
|
{
|
|
JobId: 123,
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection_1",
|
|
State: indexpb.JobState_JobStateFinished,
|
|
Progress: 100,
|
|
},
|
|
{
|
|
JobId: 122,
|
|
CollectionId: 200,
|
|
CollectionName: "test_collection_2",
|
|
State: indexpb.JobState_JobStateFailed,
|
|
Progress: 50,
|
|
},
|
|
}
|
|
|
|
mockListJobs := mockey.Mock((*externalCollectionRefreshManager).ListJobs).To(
|
|
func(_ *externalCollectionRefreshManager, _ context.Context, collectionID int64) ([]*datapb.ExternalCollectionRefreshJob, error) {
|
|
capturedCollectionID = collectionID
|
|
return expectedJobs, nil
|
|
}).Build()
|
|
defer mockListJobs.UnPatch()
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: &externalCollectionRefreshManager{},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListRefreshExternalCollectionJobs(ctx, &datapb.ListRefreshExternalCollectionJobsRequest{})
|
|
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp.GetStatus()))
|
|
assert.Equal(t, int64(0), capturedCollectionID)
|
|
assert.Len(t, resp.GetJobs(), 2)
|
|
})
|
|
|
|
t.Run("success_with_jobs", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
expectedJobs := []*datapb.ExternalCollectionRefreshJob{
|
|
{
|
|
JobId: 123,
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection",
|
|
State: indexpb.JobState_JobStateFinished,
|
|
Progress: 100,
|
|
},
|
|
{
|
|
JobId: 122,
|
|
CollectionId: 100,
|
|
CollectionName: "test_collection",
|
|
State: indexpb.JobState_JobStateFailed,
|
|
Progress: 50,
|
|
FailReason: "connection timeout",
|
|
},
|
|
}
|
|
|
|
// Mock ListJobs to return jobs
|
|
mockListJobs := mockey.Mock((*externalCollectionRefreshManager).ListJobs).Return(expectedJobs, nil).Build()
|
|
defer mockListJobs.UnPatch()
|
|
|
|
mockRefreshMgr := &externalCollectionRefreshManager{}
|
|
|
|
server := &Server{
|
|
externalCollectionRefreshManager: mockRefreshMgr,
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListRefreshExternalCollectionJobs(ctx, &datapb.ListRefreshExternalCollectionJobsRequest{
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp.GetStatus()))
|
|
assert.Len(t, resp.GetJobs(), 2)
|
|
assert.Equal(t, int64(123), resp.GetJobs()[0].GetJobId())
|
|
assert.Equal(t, indexpb.JobState_JobStateFinished, resp.GetJobs()[0].GetState())
|
|
assert.Equal(t, int64(122), resp.GetJobs()[1].GetJobId())
|
|
assert.Equal(t, indexpb.JobState_JobStateFailed, resp.GetJobs()[1].GetState())
|
|
})
|
|
}
|
|
|
|
func TestServer_ListSnapshots_WithDbID(t *testing.T) {
|
|
t.Run("dbID_flows_through_when_collectionID_is_zero", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
var capturedCollectionID, capturedPartitionID, capturedDbID int64
|
|
mockList := mockey.Mock((*snapshotManager).ListSnapshots).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID, partitionID, dbID int64) ([]string, error) {
|
|
capturedCollectionID = collectionID
|
|
capturedPartitionID = partitionID
|
|
capturedDbID = dbID
|
|
return []string{"snap1"}, nil
|
|
}).Build()
|
|
defer mockList.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListSnapshots(ctx, &datapb.ListSnapshotsRequest{
|
|
CollectionId: 0,
|
|
DbId: 999,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Len(t, resp.GetSnapshots(), 1)
|
|
assert.Equal(t, int64(0), capturedCollectionID)
|
|
assert.Equal(t, int64(0), capturedPartitionID)
|
|
assert.Equal(t, int64(999), capturedDbID)
|
|
})
|
|
|
|
t.Run("dbID_flows_through_with_collectionID", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
var capturedCollectionID, capturedDbID int64
|
|
mockList := mockey.Mock((*snapshotManager).ListSnapshots).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID, partitionID, dbID int64) ([]string, error) {
|
|
capturedCollectionID = collectionID
|
|
capturedDbID = dbID
|
|
return []string{"snap1", "snap2"}, nil
|
|
}).Build()
|
|
defer mockList.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListSnapshots(ctx, &datapb.ListSnapshotsRequest{
|
|
CollectionId: 100,
|
|
DbId: 888,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Len(t, resp.GetSnapshots(), 2)
|
|
assert.Equal(t, int64(100), capturedCollectionID)
|
|
assert.Equal(t, int64(888), capturedDbID)
|
|
})
|
|
}
|
|
|
|
func TestServer_ListRestoreSnapshotJobs_WithDbID(t *testing.T) {
|
|
t.Run("dbID_flows_through", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
var capturedCollectionID, capturedDbID int64
|
|
mockList := mockey.Mock((*snapshotManager).ListRestoreJobs).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionIDFilter, dbID int64) ([]*datapb.RestoreSnapshotInfo, error) {
|
|
capturedCollectionID = collectionIDFilter
|
|
capturedDbID = dbID
|
|
return []*datapb.RestoreSnapshotInfo{
|
|
{JobId: 1},
|
|
}, nil
|
|
}).Build()
|
|
defer mockList.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListRestoreSnapshotJobs(ctx, &datapb.ListRestoreSnapshotJobsRequest{
|
|
CollectionId: 100,
|
|
DbId: 777,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Len(t, resp.GetJobs(), 1)
|
|
assert.Equal(t, int64(100), capturedCollectionID)
|
|
assert.Equal(t, int64(777), capturedDbID)
|
|
})
|
|
|
|
t.Run("dbID_zero_no_filter", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
var capturedDbID int64
|
|
mockList := mockey.Mock((*snapshotManager).ListRestoreJobs).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionIDFilter, dbID int64) ([]*datapb.RestoreSnapshotInfo, error) {
|
|
capturedDbID = dbID
|
|
return []*datapb.RestoreSnapshotInfo{}, nil
|
|
}).Build()
|
|
defer mockList.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.ListRestoreSnapshotJobs(ctx, &datapb.ListRestoreSnapshotJobsRequest{
|
|
CollectionId: 0,
|
|
DbId: 0,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Empty(t, resp.GetJobs())
|
|
assert.Equal(t, int64(0), capturedDbID)
|
|
})
|
|
}
|
|
|
|
func TestServer_RestoreSnapshot_SourceCollectionID(t *testing.T) {
|
|
t.Run("source_collection_id_passed_correctly", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
var capturedSourceCollectionID int64
|
|
var capturedSnapshotName, capturedTargetCollName, capturedTargetDbName string
|
|
mockRestore := mockey.Mock((*snapshotManager).RestoreSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, sourceCollectionID int64, snapshotName, targetCollectionName, targetDbName string, startRestoreLock StartRestoreLockFunc, startBroadcaster StartBroadcasterFunc, rollback RollbackFunc, validateResources ValidateResourcesFunc) (int64, error) {
|
|
capturedSourceCollectionID = sourceCollectionID
|
|
capturedSnapshotName = snapshotName
|
|
capturedTargetCollName = targetCollectionName
|
|
capturedTargetDbName = targetDbName
|
|
return 42, nil
|
|
}).Build()
|
|
defer mockRestore.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.RestoreSnapshot(ctx, &datapb.RestoreSnapshotRequest{
|
|
Name: "my_snapshot",
|
|
SourceCollectionId: 12345,
|
|
TargetDbName: "test_db",
|
|
TargetCollectionName: "restored_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int64(42), resp.GetJobId())
|
|
assert.Equal(t, int64(12345), capturedSourceCollectionID)
|
|
assert.Equal(t, "my_snapshot", capturedSnapshotName)
|
|
assert.Equal(t, "restored_collection", capturedTargetCollName)
|
|
assert.Equal(t, "test_db", capturedTargetDbName)
|
|
})
|
|
|
|
t.Run("source_collection_id_zero", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
var capturedSourceCollectionID int64
|
|
mockRestore := mockey.Mock((*snapshotManager).RestoreSnapshot).To(
|
|
func(sm *snapshotManager, ctx context.Context, sourceCollectionID int64, snapshotName, targetCollectionName, targetDbName string, startRestoreLock StartRestoreLockFunc, startBroadcaster StartBroadcasterFunc, rollback RollbackFunc, validateResources ValidateResourcesFunc) (int64, error) {
|
|
capturedSourceCollectionID = sourceCollectionID
|
|
return 99, nil
|
|
}).Build()
|
|
defer mockRestore.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.RestoreSnapshot(ctx, &datapb.RestoreSnapshotRequest{
|
|
Name: "my_snapshot",
|
|
SourceCollectionId: 0,
|
|
TargetDbName: "default",
|
|
TargetCollectionName: "restored_collection",
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int64(99), resp.GetJobId())
|
|
assert.Equal(t, int64(0), capturedSourceCollectionID)
|
|
})
|
|
}
|
|
|
|
// --- Test PinSnapshotData ---
|
|
|
|
func TestPinSnapshotData(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.PinSnapshotData(ctx, &datapb.PinSnapshotDataRequest{
|
|
Name: "test_snap",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "test_db",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_coll"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
mockBroadcaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return mockBroadcaster, nil
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
mockPin := mockey.Mock((*snapshotManager).PinSnapshotData).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string, ttlSeconds int64) (int64, error) {
|
|
assert.Equal(t, int64(100), collectionID)
|
|
assert.Equal(t, "test_snap", name)
|
|
return 5001, nil
|
|
}).Build()
|
|
defer mockPin.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.PinSnapshotData(ctx, &datapb.PinSnapshotDataRequest{
|
|
Name: "test_snap",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp.GetStatus()))
|
|
assert.Equal(t, int64(5001), resp.GetPinId())
|
|
})
|
|
|
|
t.Run("pin_error", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
fakeHandler := &embeddedHandler{}
|
|
mockGetColl := mockey.Mock((*embeddedHandler).GetCollection).Return(
|
|
&collectionInfo{
|
|
ID: 100,
|
|
DatabaseName: "test_db",
|
|
Schema: &schemapb.CollectionSchema{Name: "test_coll"},
|
|
}, nil,
|
|
).Build()
|
|
defer mockGetColl.UnPatch()
|
|
|
|
mockBroadcaster := &embeddedBroadcastAPI{}
|
|
mockClose := mockey.Mock((*embeddedBroadcastAPI).Close).Return().Build()
|
|
defer mockClose.UnPatch()
|
|
mockBroadcast := mockey.Mock(broadcast.StartBroadcastWithResourceKeys).To(
|
|
func(ctx context.Context, keys ...message.ResourceKey) (broadcaster.BroadcastAPI, error) {
|
|
return mockBroadcaster, nil
|
|
}).Build()
|
|
defer mockBroadcast.UnPatch()
|
|
|
|
mockPin := mockey.Mock((*snapshotManager).PinSnapshotData).To(
|
|
func(sm *snapshotManager, ctx context.Context, collectionID int64, name string, ttlSeconds int64) (int64, error) {
|
|
return 0, errors.New("snapshot not found")
|
|
}).Build()
|
|
defer mockPin.UnPatch()
|
|
|
|
server := &Server{
|
|
handler: fakeHandler,
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.PinSnapshotData(ctx, &datapb.PinSnapshotDataRequest{
|
|
Name: "nonexistent",
|
|
CollectionId: 100,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp.GetStatus()))
|
|
})
|
|
}
|
|
|
|
// --- Test UnpinSnapshotData ---
|
|
|
|
func TestUnpinSnapshotData(t *testing.T) {
|
|
t.Run("server_not_healthy", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
server := &Server{}
|
|
server.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := server.UnpinSnapshotData(ctx, &datapb.UnpinSnapshotDataRequest{
|
|
PinId: 5001,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockUnpin := mockey.Mock((*snapshotManager).UnpinSnapshotData).To(
|
|
func(sm *snapshotManager, ctx context.Context, pinID int64) error {
|
|
assert.Equal(t, int64(5001), pinID)
|
|
return nil
|
|
}).Build()
|
|
defer mockUnpin.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.UnpinSnapshotData(ctx, &datapb.UnpinSnapshotDataRequest{
|
|
PinId: 5001,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, merr.Error(resp))
|
|
})
|
|
|
|
t.Run("unpin_error", func(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
mockUnpin := mockey.Mock((*snapshotManager).UnpinSnapshotData).To(
|
|
func(sm *snapshotManager, ctx context.Context, pinID int64) error {
|
|
return errors.New("snapshot not pinned")
|
|
}).Build()
|
|
defer mockUnpin.UnPatch()
|
|
|
|
server := &Server{
|
|
snapshotManager: NewSnapshotManager(nil, nil, nil, nil, nil, nil, nil, nil),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.UnpinSnapshotData(ctx, &datapb.UnpinSnapshotDataRequest{
|
|
PinId: 99999,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
assert.Error(t, merr.Error(resp))
|
|
})
|
|
}
|
|
|
|
func TestCommitImport_HappyPath(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
job := &importJob{
|
|
ImportJob: &datapb.ImportJob{
|
|
JobID: 1001,
|
|
CollectionID: 200,
|
|
State: internalpb.ImportJobState_Uncommitted,
|
|
AutoCommit: false,
|
|
},
|
|
}
|
|
|
|
importMetaMock := NewMockImportMeta(t)
|
|
// GetJob is called twice: once before lock and once after lock.
|
|
importMetaMock.EXPECT().GetJob(mock.Anything, int64(1001)).Return(job).Times(2)
|
|
|
|
server := &Server{
|
|
importMeta: importMetaMock,
|
|
importJobLock: lock.NewKeyLock[int64](),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// Mock broadcastCommitImportMessage to succeed.
|
|
broadcastMock := mockey.Mock((*Server).broadcastCommitImportMessage).
|
|
Return(nil).Build()
|
|
defer broadcastMock.UnPatch()
|
|
|
|
resp, err := server.CommitImport(ctx, &datapb.CommitImportRequest{JobId: 1001})
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp))
|
|
}
|
|
|
|
func TestAbortImport_HappyPath(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
job := &importJob{
|
|
ImportJob: &datapb.ImportJob{
|
|
JobID: 2001,
|
|
CollectionID: 300,
|
|
State: internalpb.ImportJobState_Uncommitted,
|
|
AutoCommit: false,
|
|
},
|
|
}
|
|
|
|
importMetaMock := NewMockImportMeta(t)
|
|
importMetaMock.EXPECT().GetJob(mock.Anything, int64(2001)).Return(job).Times(2)
|
|
|
|
server := &Server{
|
|
importMeta: importMetaMock,
|
|
importJobLock: lock.NewKeyLock[int64](),
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// Mock broadcastRollbackImportMessage to succeed.
|
|
broadcastMock := mockey.Mock((*Server).broadcastRollbackImportMessage).
|
|
Return(nil).Build()
|
|
defer broadcastMock.UnPatch()
|
|
|
|
resp, err := server.AbortImport(ctx, &datapb.AbortImportRequest{JobId: 2001})
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp))
|
|
}
|
|
|
|
func TestHandleCommitVchannelRPC(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
importMetaMock := NewMockImportMeta(t)
|
|
importMetaMock.EXPECT().HandleCommitVchannel(mock.Anything, int64(3001), "vchan-0", mock.AnythingOfType("func() error")).
|
|
RunAndReturn(func(ctx context.Context, jobID int64, vchannel string, callback func() error) error {
|
|
// Execute the callback to verify it works correctly.
|
|
return callback()
|
|
})
|
|
|
|
segIDs := []int64{10, 20, 30}
|
|
getSegIDsMock := mockey.Mock((*Server).getImportSegmentIDsByVchannel).
|
|
Return(segIDs).Build()
|
|
defer getSegIDsMock.UnPatch()
|
|
|
|
updateSegsMock := mockey.Mock((*meta).UpdateSegmentsInfo).
|
|
Return(nil).Build()
|
|
defer updateSegsMock.UnPatch()
|
|
|
|
server := &Server{
|
|
importMeta: importMetaMock,
|
|
meta: &meta{},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.HandleCommitVchannel(ctx, &datapb.HandleCommitVchannelRequest{
|
|
JobId: 3001,
|
|
Vchannel: "vchan-0",
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp))
|
|
}
|
|
|
|
func TestHandleCommitVchannelRPC_StoresCommitTimestamp(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
importMetaMock := NewMockImportMeta(t)
|
|
importMetaMock.EXPECT().HandleCommitVchannel(mock.Anything, int64(3001), "vchan-0", mock.AnythingOfType("func() error")).
|
|
RunAndReturn(func(ctx context.Context, jobID int64, vchannel string, callback func() error) error {
|
|
return callback()
|
|
})
|
|
|
|
segIDs := []int64{10, 20}
|
|
getSegIDsMock := mockey.Mock((*Server).getImportSegmentIDsByVchannel).
|
|
Return(segIDs).Build()
|
|
defer getSegIDsMock.UnPatch()
|
|
|
|
segments := NewSegmentsInfo()
|
|
for _, segID := range segIDs {
|
|
segments.SetSegment(segID, &SegmentInfo{SegmentInfo: &datapb.SegmentInfo{
|
|
ID: segID,
|
|
CollectionID: 100,
|
|
PartitionID: 10,
|
|
InsertChannel: "vchan-0",
|
|
State: commonpb.SegmentState_Flushed,
|
|
IsImporting: true,
|
|
Binlogs: []*datapb.FieldBinlog{{
|
|
FieldID: 100,
|
|
Binlogs: []*datapb.Binlog{{
|
|
LogID: segID,
|
|
TimestampTo: 100,
|
|
}},
|
|
}},
|
|
}})
|
|
}
|
|
|
|
server := &Server{
|
|
importMeta: importMetaMock,
|
|
meta: &meta{
|
|
catalog: &datacoordkv.Catalog{MetaKv: NewMetaMemoryKV()},
|
|
segments: segments,
|
|
},
|
|
}
|
|
server.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
resp, err := server.HandleCommitVchannel(ctx, &datapb.HandleCommitVchannelRequest{
|
|
JobId: 3001,
|
|
Vchannel: "vchan-0",
|
|
CommitTimestamp: 500,
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.True(t, merr.Ok(resp))
|
|
for _, segID := range segIDs {
|
|
seg := server.meta.GetSegment(ctx, segID)
|
|
require.NotNil(t, seg)
|
|
assert.EqualValues(t, 500, seg.GetCommitTimestamp())
|
|
assert.False(t, seg.GetIsImporting())
|
|
}
|
|
}
|
|
|
|
// Named helper types for mockey interface-method patching. Using named types
|
|
// instead of anonymous struct{ Iface } avoids a go1.26 `go vet` printf-pass
|
|
// panic in x/tools refactor/satisfy on method expressions of *struct{...}.
|
|
type (
|
|
embeddedHandler struct{ Handler }
|
|
embeddedBroadcastAPI struct{ broadcaster.BroadcastAPI }
|
|
embeddedBroker struct{ broker.Broker }
|
|
)
|