2023-12-26 10:40:47 +08:00
|
|
|
// Licensed to the LF AI & Data foundation under one
|
|
|
|
// or more contributor license agreements. See the NOTICE file
|
|
|
|
// distributed with this work for additional information
|
|
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
|
|
// to you under the Apache License, Version 2.0 (the
|
|
|
|
// "License"); you may not use this file except in compliance
|
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2023-10-31 02:30:16 +08:00
|
|
|
package syncmgr
|
|
|
|
|
|
|
|
import (
|
2023-12-26 10:40:47 +08:00
|
|
|
"fmt"
|
2023-10-31 02:30:16 +08:00
|
|
|
"math/rand"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/cockroachdb/errors"
|
|
|
|
"github.com/samber/lo"
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/msgpb"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
|
|
"github.com/milvus-io/milvus/internal/allocator"
|
|
|
|
"github.com/milvus-io/milvus/internal/datanode/broker"
|
|
|
|
"github.com/milvus-io/milvus/internal/datanode/metacache"
|
|
|
|
"github.com/milvus-io/milvus/internal/mocks"
|
|
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
|
|
|
"github.com/milvus-io/milvus/internal/storage"
|
|
|
|
"github.com/milvus-io/milvus/pkg/common"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/retry"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/tsoutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SyncTaskSuite struct {
|
|
|
|
suite.Suite
|
|
|
|
|
|
|
|
collectionID int64
|
|
|
|
partitionID int64
|
|
|
|
segmentID int64
|
|
|
|
channelName string
|
|
|
|
|
|
|
|
metacache *metacache.MockMetaCache
|
|
|
|
allocator *allocator.MockGIDAllocator
|
|
|
|
schema *schemapb.CollectionSchema
|
|
|
|
chunkManager *mocks.ChunkManager
|
|
|
|
broker *broker.MockBroker
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SyncTaskSuite) SetupSuite() {
|
|
|
|
paramtable.Get().Init(paramtable.NewBaseTable())
|
|
|
|
|
2023-12-26 10:40:47 +08:00
|
|
|
s.collectionID = rand.Int63n(100) + 1000
|
|
|
|
s.partitionID = rand.Int63n(100) + 2000
|
|
|
|
s.segmentID = rand.Int63n(1000) + 10000
|
|
|
|
s.channelName = fmt.Sprintf("by-dev-rootcoord-dml_0_%dv0", s.collectionID)
|
2023-10-31 02:30:16 +08:00
|
|
|
s.schema = &schemapb.CollectionSchema{
|
|
|
|
Name: "sync_task_test_col",
|
|
|
|
Fields: []*schemapb.FieldSchema{
|
|
|
|
{FieldID: common.RowIDField, DataType: schemapb.DataType_Int64},
|
|
|
|
{FieldID: common.TimeStampField, DataType: schemapb.DataType_Int64},
|
|
|
|
{
|
|
|
|
FieldID: 100,
|
|
|
|
Name: "pk",
|
|
|
|
DataType: schemapb.DataType_Int64,
|
|
|
|
IsPrimaryKey: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
FieldID: 101,
|
|
|
|
Name: "vector",
|
|
|
|
DataType: schemapb.DataType_FloatVector,
|
|
|
|
TypeParams: []*commonpb.KeyValuePair{
|
|
|
|
{Key: common.DimKey, Value: "128"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SyncTaskSuite) SetupTest() {
|
|
|
|
s.allocator = allocator.NewMockGIDAllocator()
|
|
|
|
s.allocator.AllocF = func(count uint32) (int64, int64, error) {
|
|
|
|
return time.Now().Unix(), int64(count), nil
|
|
|
|
}
|
|
|
|
s.allocator.AllocOneF = func() (allocator.UniqueID, error) {
|
|
|
|
return time.Now().Unix(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
s.chunkManager = mocks.NewChunkManager(s.T())
|
|
|
|
s.chunkManager.EXPECT().RootPath().Return("files").Maybe()
|
|
|
|
s.chunkManager.EXPECT().MultiWrite(mock.Anything, mock.Anything).Return(nil).Maybe()
|
|
|
|
|
|
|
|
s.broker = broker.NewMockBroker(s.T())
|
|
|
|
s.metacache = metacache.NewMockMetaCache(s.T())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SyncTaskSuite) getEmptyInsertBuffer() *storage.InsertData {
|
|
|
|
buf, err := storage.NewInsertData(s.schema)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
return buf
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SyncTaskSuite) getInsertBuffer() *storage.InsertData {
|
|
|
|
buf := s.getEmptyInsertBuffer()
|
|
|
|
|
|
|
|
// generate data
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
data := make(map[storage.FieldID]any)
|
|
|
|
data[common.RowIDField] = int64(i + 1)
|
|
|
|
data[common.TimeStampField] = int64(i + 1)
|
|
|
|
data[100] = int64(i + 1)
|
|
|
|
vector := lo.RepeatBy(128, func(_ int) float32 {
|
|
|
|
return rand.Float32()
|
|
|
|
})
|
|
|
|
data[101] = vector
|
|
|
|
err := buf.Append(data)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
}
|
|
|
|
return buf
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SyncTaskSuite) getDeleteBuffer() *storage.DeleteData {
|
|
|
|
buf := &storage.DeleteData{}
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
pk := storage.NewInt64PrimaryKey(int64(i + 1))
|
|
|
|
ts := tsoutil.ComposeTSByTime(time.Now(), 0)
|
|
|
|
buf.Append(pk, ts)
|
|
|
|
}
|
|
|
|
return buf
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SyncTaskSuite) getDeleteBufferZeroTs() *storage.DeleteData {
|
|
|
|
buf := &storage.DeleteData{}
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
pk := storage.NewInt64PrimaryKey(int64(i + 1))
|
|
|
|
buf.Append(pk, 0)
|
|
|
|
}
|
|
|
|
return buf
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SyncTaskSuite) getSuiteSyncTask() *SyncTask {
|
|
|
|
task := NewSyncTask().WithCollectionID(s.collectionID).
|
|
|
|
WithPartitionID(s.partitionID).
|
|
|
|
WithSegmentID(s.segmentID).
|
|
|
|
WithChannelName(s.channelName).
|
|
|
|
WithSchema(s.schema).
|
|
|
|
WithChunkManager(s.chunkManager).
|
|
|
|
WithAllocator(s.allocator).
|
|
|
|
WithMetaCache(s.metacache)
|
2024-01-05 10:04:46 +08:00
|
|
|
task.binlogMemsize = map[int64]int64{0: 1, 1: 1, 100: 100}
|
2023-10-31 02:30:16 +08:00
|
|
|
|
|
|
|
return task
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SyncTaskSuite) TestRunNormal() {
|
|
|
|
s.broker.EXPECT().SaveBinlogPaths(mock.Anything, mock.Anything).Return(nil)
|
|
|
|
bfs := metacache.NewBloomFilterSet()
|
|
|
|
fd, err := storage.NewFieldData(schemapb.DataType_Int64, &schemapb.FieldSchema{
|
|
|
|
FieldID: 101,
|
|
|
|
Name: "ID",
|
|
|
|
IsPrimaryKey: true,
|
|
|
|
DataType: schemapb.DataType_Int64,
|
|
|
|
})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
ids := []int64{1, 2, 3, 4, 5, 6, 7}
|
|
|
|
for _, id := range ids {
|
|
|
|
err = fd.AppendRow(id)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
bfs.UpdatePKRange(fd)
|
|
|
|
seg := metacache.NewSegmentInfo(&datapb.SegmentInfo{}, bfs)
|
|
|
|
metacache.UpdateNumOfRows(1000)(seg)
|
2023-11-17 14:40:26 +08:00
|
|
|
seg.GetBloomFilterSet().Roll()
|
2023-11-24 15:38:25 +08:00
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(seg, true)
|
2024-05-28 14:19:42 +08:00
|
|
|
s.metacache.EXPECT().GetSegmentsBy(mock.Anything, mock.Anything).Return([]*metacache.SegmentInfo{seg})
|
2023-11-15 15:24:18 +08:00
|
|
|
s.metacache.EXPECT().UpdateSegments(mock.Anything, mock.Anything).Return()
|
2023-10-31 02:30:16 +08:00
|
|
|
|
2023-12-26 10:40:47 +08:00
|
|
|
s.Run("without_data", func() {
|
2023-10-31 02:30:16 +08:00
|
|
|
task := s.getSuiteSyncTask()
|
2024-02-21 11:54:53 +08:00
|
|
|
task.WithMetaWriter(BrokerMetaWriter(s.broker, 1))
|
2023-10-31 02:30:16 +08:00
|
|
|
task.WithTimeRange(50, 100)
|
|
|
|
task.WithCheckpoint(&msgpb.MsgPosition{
|
|
|
|
ChannelName: s.channelName,
|
|
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
|
|
Timestamp: 100,
|
|
|
|
})
|
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
s.NoError(err)
|
|
|
|
})
|
|
|
|
|
|
|
|
s.Run("with_insert_delete_cp", func() {
|
|
|
|
task := s.getSuiteSyncTask()
|
|
|
|
task.WithTimeRange(50, 100)
|
2024-02-21 11:54:53 +08:00
|
|
|
task.WithMetaWriter(BrokerMetaWriter(s.broker, 1))
|
2023-10-31 02:30:16 +08:00
|
|
|
task.WithCheckpoint(&msgpb.MsgPosition{
|
|
|
|
ChannelName: s.channelName,
|
|
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
|
|
Timestamp: 100,
|
|
|
|
})
|
2023-12-26 10:40:47 +08:00
|
|
|
task.binlogBlobs[100] = &storage.Blob{
|
|
|
|
Key: "100",
|
|
|
|
Value: []byte("test_data"),
|
|
|
|
}
|
2023-10-31 02:30:16 +08:00
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
s.NoError(err)
|
|
|
|
})
|
|
|
|
|
2023-12-26 10:40:47 +08:00
|
|
|
s.Run("with_statslog", func() {
|
2023-10-31 02:30:16 +08:00
|
|
|
task := s.getSuiteSyncTask()
|
2023-12-26 10:40:47 +08:00
|
|
|
task.WithTimeRange(50, 100)
|
2024-02-21 11:54:53 +08:00
|
|
|
task.WithMetaWriter(BrokerMetaWriter(s.broker, 1))
|
2023-10-31 02:30:16 +08:00
|
|
|
task.WithCheckpoint(&msgpb.MsgPosition{
|
|
|
|
ChannelName: s.channelName,
|
|
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
|
|
Timestamp: 100,
|
|
|
|
})
|
2023-12-26 10:40:47 +08:00
|
|
|
task.WithFlush()
|
|
|
|
task.batchStatsBlob = &storage.Blob{
|
|
|
|
Key: "100",
|
|
|
|
Value: []byte("test_data"),
|
|
|
|
}
|
|
|
|
task.mergedStatsBlob = &storage.Blob{
|
|
|
|
Key: "1",
|
|
|
|
Value: []byte("test_data"),
|
|
|
|
}
|
2023-10-31 02:30:16 +08:00
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
s.NoError(err)
|
|
|
|
})
|
2023-11-21 10:28:21 +08:00
|
|
|
|
2023-12-26 10:40:47 +08:00
|
|
|
s.Run("with_delta_data", func() {
|
2024-06-06 10:25:52 +08:00
|
|
|
s.metacache.EXPECT().RemoveSegments(mock.Anything, mock.Anything).Return(nil).Once()
|
2023-11-21 10:28:21 +08:00
|
|
|
task := s.getSuiteSyncTask()
|
2023-12-26 10:40:47 +08:00
|
|
|
task.WithTimeRange(50, 100)
|
2024-02-21 11:54:53 +08:00
|
|
|
task.WithMetaWriter(BrokerMetaWriter(s.broker, 1))
|
2023-11-21 10:28:21 +08:00
|
|
|
task.WithCheckpoint(&msgpb.MsgPosition{
|
|
|
|
ChannelName: s.channelName,
|
|
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
|
|
Timestamp: 100,
|
|
|
|
})
|
2023-12-26 10:40:47 +08:00
|
|
|
task.WithDrop()
|
|
|
|
task.deltaBlob = &storage.Blob{
|
|
|
|
Key: "100",
|
|
|
|
Value: []byte("test_data"),
|
|
|
|
}
|
2023-11-21 10:28:21 +08:00
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
s.NoError(err)
|
|
|
|
})
|
2023-10-31 02:30:16 +08:00
|
|
|
}
|
|
|
|
|
2023-11-25 15:10:25 +08:00
|
|
|
func (s *SyncTaskSuite) TestRunL0Segment() {
|
|
|
|
s.broker.EXPECT().SaveBinlogPaths(mock.Anything, mock.Anything).Return(nil)
|
|
|
|
bfs := metacache.NewBloomFilterSet()
|
|
|
|
seg := metacache.NewSegmentInfo(&datapb.SegmentInfo{Level: datapb.SegmentLevel_L0}, bfs)
|
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(seg, true)
|
2024-05-28 14:19:42 +08:00
|
|
|
s.metacache.EXPECT().GetSegmentsBy(mock.Anything, mock.Anything).Return([]*metacache.SegmentInfo{seg})
|
2023-11-25 15:10:25 +08:00
|
|
|
s.metacache.EXPECT().UpdateSegments(mock.Anything, mock.Anything).Return()
|
|
|
|
|
|
|
|
s.Run("pure_delete_l0_flush", func() {
|
|
|
|
task := s.getSuiteSyncTask()
|
2023-12-26 10:40:47 +08:00
|
|
|
task.deltaBlob = &storage.Blob{
|
|
|
|
Key: "100",
|
|
|
|
Value: []byte("test_data"),
|
|
|
|
}
|
2023-11-25 15:10:25 +08:00
|
|
|
task.WithTimeRange(50, 100)
|
2024-02-21 11:54:53 +08:00
|
|
|
task.WithMetaWriter(BrokerMetaWriter(s.broker, 1))
|
2023-11-25 15:10:25 +08:00
|
|
|
task.WithCheckpoint(&msgpb.MsgPosition{
|
|
|
|
ChannelName: s.channelName,
|
|
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
|
|
Timestamp: 100,
|
|
|
|
})
|
|
|
|
task.WithFlush()
|
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
s.NoError(err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-11-24 15:38:25 +08:00
|
|
|
func (s *SyncTaskSuite) TestCompactToNull() {
|
|
|
|
bfs := metacache.NewBloomFilterSet()
|
|
|
|
fd, err := storage.NewFieldData(schemapb.DataType_Int64, &schemapb.FieldSchema{
|
|
|
|
FieldID: 101,
|
|
|
|
Name: "ID",
|
|
|
|
IsPrimaryKey: true,
|
|
|
|
DataType: schemapb.DataType_Int64,
|
|
|
|
})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
ids := []int64{1, 2, 3, 4, 5, 6, 7}
|
|
|
|
for _, id := range ids {
|
|
|
|
err = fd.AppendRow(id)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
bfs.UpdatePKRange(fd)
|
|
|
|
seg := metacache.NewSegmentInfo(&datapb.SegmentInfo{}, bfs)
|
|
|
|
metacache.UpdateNumOfRows(1000)(seg)
|
|
|
|
metacache.CompactTo(metacache.NullSegment)(seg)
|
|
|
|
seg.GetBloomFilterSet().Roll()
|
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(seg, true)
|
|
|
|
|
|
|
|
task := s.getSuiteSyncTask()
|
2024-02-21 11:54:53 +08:00
|
|
|
task.WithMetaWriter(BrokerMetaWriter(s.broker, 1))
|
2023-11-24 15:38:25 +08:00
|
|
|
task.WithTimeRange(50, 100)
|
|
|
|
task.WithCheckpoint(&msgpb.MsgPosition{
|
|
|
|
ChannelName: s.channelName,
|
|
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
|
|
Timestamp: 100,
|
|
|
|
})
|
|
|
|
|
|
|
|
err = task.Run()
|
|
|
|
s.NoError(err)
|
|
|
|
}
|
|
|
|
|
2023-10-31 02:30:16 +08:00
|
|
|
func (s *SyncTaskSuite) TestRunError() {
|
2024-02-05 11:33:43 +08:00
|
|
|
s.Run("target_segment_not_match", func() {
|
|
|
|
flag := false
|
|
|
|
seg := metacache.NewSegmentInfo(&datapb.SegmentInfo{
|
|
|
|
ID: s.segmentID,
|
|
|
|
}, metacache.NewBloomFilterSet())
|
|
|
|
metacache.CompactTo(s.segmentID + 1)(seg)
|
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(seg, true).Once()
|
|
|
|
|
|
|
|
handler := func(_ error) { flag = true }
|
|
|
|
task := s.getSuiteSyncTask().WithFailureCallback(handler)
|
|
|
|
|
|
|
|
task.targetSegmentID.Store(s.segmentID)
|
|
|
|
err := task.Run()
|
|
|
|
|
|
|
|
s.Error(err)
|
|
|
|
s.False(flag, "target not match shall not trigger error handler")
|
|
|
|
})
|
|
|
|
|
2023-11-03 04:48:15 +08:00
|
|
|
s.Run("segment_not_found", func() {
|
2023-11-24 15:38:25 +08:00
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(nil, false)
|
2023-11-03 04:48:15 +08:00
|
|
|
flag := false
|
|
|
|
handler := func(_ error) { flag = true }
|
|
|
|
task := s.getSuiteSyncTask().WithFailureCallback(handler)
|
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
|
|
|
|
s.Error(err)
|
|
|
|
s.True(flag)
|
|
|
|
})
|
|
|
|
|
|
|
|
s.metacache.ExpectedCalls = nil
|
|
|
|
seg := metacache.NewSegmentInfo(&datapb.SegmentInfo{}, metacache.NewBloomFilterSet())
|
|
|
|
metacache.UpdateNumOfRows(1000)(seg)
|
2023-11-24 15:38:25 +08:00
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(seg, true)
|
2024-05-28 14:19:42 +08:00
|
|
|
s.metacache.EXPECT().GetSegmentsBy(mock.Anything, mock.Anything).Return([]*metacache.SegmentInfo{seg})
|
2023-10-31 02:30:16 +08:00
|
|
|
|
2024-01-05 10:04:46 +08:00
|
|
|
s.Run("allocate_id_fail", func() {
|
|
|
|
mockAllocator := allocator.NewMockAllocator(s.T())
|
|
|
|
mockAllocator.EXPECT().Alloc(mock.Anything).Return(0, 0, errors.New("mocked"))
|
|
|
|
|
|
|
|
task := s.getSuiteSyncTask()
|
|
|
|
task.allocator = mockAllocator
|
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
s.Error(err)
|
|
|
|
})
|
|
|
|
|
2023-12-26 10:40:47 +08:00
|
|
|
s.Run("metawrite_fail", func() {
|
|
|
|
s.broker.EXPECT().SaveBinlogPaths(mock.Anything, mock.Anything).Return(errors.New("mocked"))
|
2023-10-31 02:30:16 +08:00
|
|
|
|
2023-12-26 10:40:47 +08:00
|
|
|
task := s.getSuiteSyncTask()
|
2024-02-21 11:54:53 +08:00
|
|
|
task.WithMetaWriter(BrokerMetaWriter(s.broker, 1, retry.Attempts(1)))
|
2023-12-26 10:40:47 +08:00
|
|
|
task.WithTimeRange(50, 100)
|
|
|
|
task.WithCheckpoint(&msgpb.MsgPosition{
|
|
|
|
ChannelName: s.channelName,
|
|
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
|
|
Timestamp: 100,
|
|
|
|
})
|
2023-10-31 02:30:16 +08:00
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
s.Error(err)
|
|
|
|
})
|
|
|
|
|
|
|
|
s.Run("chunk_manager_save_fail", func() {
|
|
|
|
flag := false
|
|
|
|
handler := func(_ error) { flag = true }
|
|
|
|
s.chunkManager.ExpectedCalls = nil
|
|
|
|
s.chunkManager.EXPECT().RootPath().Return("files")
|
2023-12-26 10:40:47 +08:00
|
|
|
s.chunkManager.EXPECT().MultiWrite(mock.Anything, mock.Anything).Return(retry.Unrecoverable(errors.New("mocked")))
|
2023-10-31 02:30:16 +08:00
|
|
|
task := s.getSuiteSyncTask().WithFailureCallback(handler)
|
2023-12-26 10:40:47 +08:00
|
|
|
task.binlogBlobs[100] = &storage.Blob{
|
|
|
|
Key: "100",
|
|
|
|
Value: []byte("test_data"),
|
|
|
|
}
|
2023-10-31 02:30:16 +08:00
|
|
|
|
|
|
|
task.WithWriteRetryOptions(retry.Attempts(1))
|
|
|
|
|
|
|
|
err := task.Run()
|
|
|
|
|
|
|
|
s.Error(err)
|
|
|
|
s.True(flag)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-01-05 10:04:46 +08:00
|
|
|
func (s *SyncTaskSuite) TestNextID() {
|
|
|
|
task := s.getSuiteSyncTask()
|
|
|
|
|
|
|
|
task.ids = []int64{0}
|
|
|
|
s.Run("normal_next", func() {
|
|
|
|
id := task.nextID()
|
|
|
|
s.EqualValues(0, id)
|
|
|
|
})
|
|
|
|
s.Run("id_exhausted", func() {
|
|
|
|
s.Panics(func() {
|
|
|
|
task.nextID()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-02-05 11:33:43 +08:00
|
|
|
func (s *SyncTaskSuite) TestCalcTargetID() {
|
|
|
|
task := s.getSuiteSyncTask()
|
|
|
|
|
|
|
|
s.Run("normal_calc_segment", func() {
|
|
|
|
s.Run("not_compacted", func() {
|
|
|
|
segment := metacache.NewSegmentInfo(&datapb.SegmentInfo{
|
|
|
|
ID: s.segmentID,
|
|
|
|
PartitionID: s.partitionID,
|
|
|
|
CollectionID: s.collectionID,
|
|
|
|
}, metacache.NewBloomFilterSet())
|
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(segment, true).Once()
|
|
|
|
|
|
|
|
targetID, err := task.CalcTargetSegment()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Equal(s.segmentID, targetID)
|
|
|
|
s.Equal(s.segmentID, task.targetSegmentID.Load())
|
|
|
|
})
|
|
|
|
|
|
|
|
s.Run("compacted_normal", func() {
|
|
|
|
segment := metacache.NewSegmentInfo(&datapb.SegmentInfo{
|
|
|
|
ID: s.segmentID,
|
|
|
|
PartitionID: s.partitionID,
|
|
|
|
CollectionID: s.collectionID,
|
|
|
|
}, metacache.NewBloomFilterSet())
|
|
|
|
metacache.CompactTo(1000)(segment)
|
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(segment, true).Once()
|
|
|
|
|
|
|
|
targetID, err := task.CalcTargetSegment()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.EqualValues(1000, targetID)
|
|
|
|
s.EqualValues(1000, task.targetSegmentID.Load())
|
|
|
|
})
|
|
|
|
|
|
|
|
s.Run("compacted_null", func() {
|
|
|
|
segment := metacache.NewSegmentInfo(&datapb.SegmentInfo{
|
|
|
|
ID: s.segmentID,
|
|
|
|
PartitionID: s.partitionID,
|
|
|
|
CollectionID: s.collectionID,
|
|
|
|
}, metacache.NewBloomFilterSet())
|
|
|
|
metacache.CompactTo(metacache.NullSegment)(segment)
|
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(segment, true).Once()
|
|
|
|
|
|
|
|
targetID, err := task.CalcTargetSegment()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Equal(s.segmentID, targetID)
|
|
|
|
s.Equal(s.segmentID, task.targetSegmentID.Load())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
s.Run("segment_not_found", func() {
|
|
|
|
s.metacache.EXPECT().GetSegmentByID(s.segmentID).Return(nil, false).Once()
|
|
|
|
|
|
|
|
_, err := task.CalcTargetSegment()
|
|
|
|
s.Error(err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-10-31 02:30:16 +08:00
|
|
|
func TestSyncTask(t *testing.T) {
|
|
|
|
suite.Run(t, new(SyncTaskSuite))
|
|
|
|
}
|