498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
339 lines
8.2 KiB
Go
339 lines
8.2 KiB
Go
// 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.
|
|
|
|
package tasks
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/binary"
|
|
"math/rand"
|
|
"testing"
|
|
|
|
"github.com/samber/lo"
|
|
"github.com/stretchr/testify/suite"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v3/commonpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/common"
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/internalpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/querypb"
|
|
)
|
|
|
|
type SearchTaskSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (s *SearchTaskSuite) composePlaceholderGroup(nq int, dim int) []byte {
|
|
placeHolderGroup := &commonpb.PlaceholderGroup{
|
|
Placeholders: []*commonpb.PlaceholderValue{
|
|
{
|
|
Tag: "$0",
|
|
Type: commonpb.PlaceholderType_FloatVector,
|
|
Values: lo.RepeatBy(nq, func(_ int) []byte {
|
|
bs := make([]byte, 0, dim*4)
|
|
for j := 0; j < dim; j++ {
|
|
var buffer bytes.Buffer
|
|
f := rand.Float32()
|
|
err := binary.Write(&buffer, common.Endian, f)
|
|
s.Require().NoError(err)
|
|
bs = append(bs, buffer.Bytes()...)
|
|
}
|
|
return bs
|
|
}),
|
|
},
|
|
},
|
|
}
|
|
|
|
bs, err := proto.Marshal(placeHolderGroup)
|
|
s.Require().NoError(err)
|
|
return bs
|
|
}
|
|
|
|
func (s *SearchTaskSuite) composeEmptyPlaceholderGroup() []byte {
|
|
placeHolderGroup := &commonpb.PlaceholderGroup{}
|
|
|
|
bs, err := proto.Marshal(placeHolderGroup)
|
|
s.Require().NoError(err)
|
|
return bs
|
|
}
|
|
|
|
func (s *SearchTaskSuite) TestCombinePlaceHolderGroups() {
|
|
s.Run("normal", func() {
|
|
task := &SearchTask{
|
|
placeholderGroup: s.composePlaceholderGroup(1, 128),
|
|
others: []*SearchTask{
|
|
{
|
|
placeholderGroup: s.composePlaceholderGroup(1, 128),
|
|
},
|
|
},
|
|
}
|
|
|
|
task.combinePlaceHolderGroups()
|
|
})
|
|
|
|
s.Run("tasked_not_merged", func() {
|
|
task := &SearchTask{}
|
|
|
|
err := task.combinePlaceHolderGroups()
|
|
s.NoError(err)
|
|
})
|
|
|
|
s.Run("empty_placeholdergroup", func() {
|
|
task := &SearchTask{
|
|
placeholderGroup: s.composeEmptyPlaceholderGroup(),
|
|
others: []*SearchTask{
|
|
{
|
|
placeholderGroup: s.composePlaceholderGroup(1, 128),
|
|
},
|
|
},
|
|
}
|
|
|
|
err := task.combinePlaceHolderGroups()
|
|
s.Error(err)
|
|
|
|
task = &SearchTask{
|
|
placeholderGroup: s.composePlaceholderGroup(1, 128),
|
|
others: []*SearchTask{
|
|
{
|
|
placeholderGroup: s.composeEmptyPlaceholderGroup(),
|
|
},
|
|
},
|
|
}
|
|
|
|
err = task.combinePlaceHolderGroups()
|
|
s.Error(err)
|
|
})
|
|
|
|
s.Run("unmarshal_fail", func() {
|
|
task := &SearchTask{
|
|
placeholderGroup: []byte{0x12, 0x34},
|
|
others: []*SearchTask{
|
|
{
|
|
placeholderGroup: s.composePlaceholderGroup(1, 128),
|
|
},
|
|
},
|
|
}
|
|
|
|
err := task.combinePlaceHolderGroups()
|
|
s.Error(err)
|
|
|
|
task = &SearchTask{
|
|
placeholderGroup: s.composePlaceholderGroup(1, 128),
|
|
others: []*SearchTask{
|
|
{
|
|
placeholderGroup: []byte{0x12, 0x34},
|
|
},
|
|
},
|
|
}
|
|
|
|
err = task.combinePlaceHolderGroups()
|
|
s.Error(err)
|
|
})
|
|
}
|
|
|
|
func (s *SearchTaskSuite) TestMergeFilterOnly() {
|
|
s.Run("same_filter_only_can_merge", func() {
|
|
task1 := &SearchTask{
|
|
nq: 10,
|
|
topk: 100,
|
|
req: &querypb.SearchRequest{
|
|
FilterOnly: true,
|
|
Req: &internalpb.SearchRequest{
|
|
DbID: 1,
|
|
CollectionID: 1000,
|
|
MvccTimestamp: 100,
|
|
PartitionIDs: []int64{1, 2},
|
|
SerializedExprPlan: []byte("plan"),
|
|
},
|
|
DmlChannels: []string{"channel1"},
|
|
SegmentIDs: []int64{1, 2, 3},
|
|
},
|
|
originTopks: []int64{100},
|
|
originNqs: []int64{10},
|
|
}
|
|
task2 := &SearchTask{
|
|
nq: 5,
|
|
topk: 100,
|
|
req: &querypb.SearchRequest{
|
|
FilterOnly: true,
|
|
Req: &internalpb.SearchRequest{
|
|
DbID: 1,
|
|
CollectionID: 1000,
|
|
MvccTimestamp: 100,
|
|
PartitionIDs: []int64{1, 2},
|
|
SerializedExprPlan: []byte("plan"),
|
|
},
|
|
DmlChannels: []string{"channel1"},
|
|
SegmentIDs: []int64{1, 2, 3},
|
|
},
|
|
originTopks: []int64{100},
|
|
originNqs: []int64{5},
|
|
}
|
|
|
|
merged := task1.Merge(task2)
|
|
s.True(merged, "tasks with same FilterOnly=true should merge")
|
|
s.Equal(int64(15), task1.nq)
|
|
})
|
|
|
|
s.Run("different_filter_only_cannot_merge", func() {
|
|
task1 := &SearchTask{
|
|
nq: 10,
|
|
topk: 100,
|
|
req: &querypb.SearchRequest{
|
|
FilterOnly: true,
|
|
Req: &internalpb.SearchRequest{
|
|
DbID: 1,
|
|
CollectionID: 1000,
|
|
MvccTimestamp: 100,
|
|
PartitionIDs: []int64{1, 2},
|
|
SerializedExprPlan: []byte("plan"),
|
|
},
|
|
DmlChannels: []string{"channel1"},
|
|
SegmentIDs: []int64{1, 2, 3},
|
|
},
|
|
originTopks: []int64{100},
|
|
originNqs: []int64{10},
|
|
}
|
|
task2 := &SearchTask{
|
|
nq: 5,
|
|
topk: 100,
|
|
req: &querypb.SearchRequest{
|
|
FilterOnly: false,
|
|
Req: &internalpb.SearchRequest{
|
|
DbID: 1,
|
|
CollectionID: 1000,
|
|
MvccTimestamp: 100,
|
|
PartitionIDs: []int64{1, 2},
|
|
SerializedExprPlan: []byte("plan"),
|
|
},
|
|
DmlChannels: []string{"channel1"},
|
|
SegmentIDs: []int64{1, 2, 3},
|
|
},
|
|
originTopks: []int64{100},
|
|
originNqs: []int64{5},
|
|
}
|
|
|
|
merged := task1.Merge(task2)
|
|
s.False(merged, "tasks with different FilterOnly should not merge")
|
|
})
|
|
|
|
s.Run("different_enable_expr_cache_cannot_merge", func() {
|
|
task1 := &SearchTask{
|
|
nq: 10,
|
|
topk: 100,
|
|
req: &querypb.SearchRequest{
|
|
FilterOnly: false,
|
|
EnableExprCache: true,
|
|
Req: &internalpb.SearchRequest{
|
|
DbID: 1,
|
|
CollectionID: 1000,
|
|
MvccTimestamp: 100,
|
|
PartitionIDs: []int64{1, 2},
|
|
SerializedExprPlan: []byte("plan"),
|
|
},
|
|
DmlChannels: []string{"channel1"},
|
|
SegmentIDs: []int64{1, 2, 3},
|
|
},
|
|
originTopks: []int64{100},
|
|
originNqs: []int64{10},
|
|
}
|
|
task2 := &SearchTask{
|
|
nq: 5,
|
|
topk: 100,
|
|
req: &querypb.SearchRequest{
|
|
FilterOnly: false,
|
|
EnableExprCache: false,
|
|
Req: &internalpb.SearchRequest{
|
|
DbID: 1,
|
|
CollectionID: 1000,
|
|
MvccTimestamp: 100,
|
|
PartitionIDs: []int64{1, 2},
|
|
SerializedExprPlan: []byte("plan"),
|
|
},
|
|
DmlChannels: []string{"channel1"},
|
|
SegmentIDs: []int64{1, 2, 3},
|
|
},
|
|
originTopks: []int64{100},
|
|
originNqs: []int64{5},
|
|
}
|
|
|
|
merged := task1.Merge(task2)
|
|
s.False(merged, "tasks with different EnableExprCache should not merge")
|
|
})
|
|
|
|
s.Run("filter_only_false_can_merge", func() {
|
|
task1 := &SearchTask{
|
|
nq: 10,
|
|
topk: 100,
|
|
req: &querypb.SearchRequest{
|
|
FilterOnly: false,
|
|
Req: &internalpb.SearchRequest{
|
|
DbID: 1,
|
|
CollectionID: 1000,
|
|
MvccTimestamp: 100,
|
|
PartitionIDs: []int64{1, 2},
|
|
SerializedExprPlan: []byte("plan"),
|
|
},
|
|
DmlChannels: []string{"channel1"},
|
|
SegmentIDs: []int64{1, 2, 3},
|
|
},
|
|
originTopks: []int64{100},
|
|
originNqs: []int64{10},
|
|
}
|
|
task2 := &SearchTask{
|
|
nq: 5,
|
|
topk: 100,
|
|
req: &querypb.SearchRequest{
|
|
FilterOnly: false,
|
|
Req: &internalpb.SearchRequest{
|
|
DbID: 1,
|
|
CollectionID: 1000,
|
|
MvccTimestamp: 100,
|
|
PartitionIDs: []int64{1, 2},
|
|
SerializedExprPlan: []byte("plan"),
|
|
},
|
|
DmlChannels: []string{"channel1"},
|
|
SegmentIDs: []int64{1, 2, 3},
|
|
},
|
|
originTopks: []int64{100},
|
|
originNqs: []int64{5},
|
|
}
|
|
|
|
merged := task1.Merge(task2)
|
|
s.True(merged, "tasks with same FilterOnly=false should merge")
|
|
s.Equal(int64(15), task1.nq)
|
|
})
|
|
}
|
|
|
|
func (s *SearchTaskSuite) TestSearchTaskMinNQ() {
|
|
s.Run("fallback_to_total_nq_without_origin", func() {
|
|
task := &SearchTask{nq: 8}
|
|
s.Equal(int64(8), task.MinNQ())
|
|
})
|
|
|
|
s.Run("minimum_origin_nq", func() {
|
|
task := &SearchTask{
|
|
nq: 11,
|
|
originNqs: []int64{5, 2, 4},
|
|
}
|
|
s.Equal(int64(2), task.MinNQ())
|
|
})
|
|
}
|
|
|
|
func TestSearchTask(t *testing.T) {
|
|
suite.Run(t, new(SearchTaskSuite))
|
|
}
|