mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
2a4c00de9d
issue: #37115 the old implementation update shard cache and shard client manager at same time, which causes lots of conor case due to concurrent issue without lock. This PR decouple shard client manager from shard cache, so only shard cache will be updated if delegator changes. and make sure shard client manager will always return the right client, and create a new client if not exist. in case of client leak, shard client manager will purge client in async for every 10 minutes. --------- Signed-off-by: Wei Liu <wei.liu@zilliz.com>
235 lines
7.1 KiB
Go
235 lines
7.1 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 proxy
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
"github.com/stretchr/testify/suite"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/milvuspb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
"github.com/milvus-io/milvus/internal/mocks"
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
"github.com/milvus-io/milvus/internal/proto/querypb"
|
|
"github.com/milvus-io/milvus/internal/types"
|
|
"github.com/milvus-io/milvus/pkg/common"
|
|
"github.com/milvus-io/milvus/pkg/util/merr"
|
|
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
|
)
|
|
|
|
type StatisticTaskSuite struct {
|
|
suite.Suite
|
|
rc types.RootCoordClient
|
|
qc types.QueryCoordClient
|
|
qn *mocks.MockQueryNodeClient
|
|
|
|
lb LBPolicy
|
|
|
|
collectionName string
|
|
collectionID int64
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) SetupSuite() {
|
|
paramtable.Init()
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) SetupTest() {
|
|
successStatus := commonpb.Status{ErrorCode: commonpb.ErrorCode_Success}
|
|
qc := mocks.NewMockQueryCoordClient(s.T())
|
|
qc.EXPECT().LoadCollection(mock.Anything, mock.Anything).Return(&successStatus, nil)
|
|
|
|
qc.EXPECT().GetShardLeaders(mock.Anything, mock.Anything).Return(&querypb.GetShardLeadersResponse{
|
|
Status: &successStatus,
|
|
Shards: []*querypb.ShardLeadersList{
|
|
{
|
|
ChannelName: "channel-1",
|
|
NodeIds: []int64{1, 2, 3},
|
|
NodeAddrs: []string{"localhost:9000", "localhost:9001", "localhost:9002"},
|
|
},
|
|
},
|
|
}, nil).Maybe()
|
|
qc.EXPECT().ShowCollections(mock.Anything, mock.Anything).Return(&querypb.ShowCollectionsResponse{}, nil).Maybe()
|
|
qc.EXPECT().ShowPartitions(mock.Anything, mock.Anything).Return(&querypb.ShowPartitionsResponse{
|
|
Status: merr.Success(),
|
|
PartitionIDs: []int64{1, 2, 3},
|
|
}, nil).Maybe()
|
|
|
|
s.qc = qc
|
|
s.rc = NewRootCoordMock()
|
|
s.qn = mocks.NewMockQueryNodeClient(s.T())
|
|
|
|
s.qn.EXPECT().GetComponentStates(mock.Anything, mock.Anything).Return(nil, nil).Maybe()
|
|
mgr := NewMockShardClientManager(s.T())
|
|
mgr.EXPECT().ReleaseClientRef(mock.Anything).Maybe()
|
|
mgr.EXPECT().GetClient(mock.Anything, mock.Anything).Return(s.qn, nil).Maybe()
|
|
s.lb = NewLBPolicyImpl(mgr)
|
|
|
|
err := InitMetaCache(context.Background(), s.rc, s.qc, mgr)
|
|
s.NoError(err)
|
|
|
|
s.collectionName = "test_statistics_task"
|
|
s.loadCollection()
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) loadCollection() {
|
|
fieldName2Types := map[string]schemapb.DataType{
|
|
testBoolField: schemapb.DataType_Bool,
|
|
testInt32Field: schemapb.DataType_Int32,
|
|
testInt64Field: schemapb.DataType_Int64,
|
|
testFloatField: schemapb.DataType_Float,
|
|
testDoubleField: schemapb.DataType_Double,
|
|
testFloatVecField: schemapb.DataType_FloatVector,
|
|
}
|
|
if enableMultipleVectorFields {
|
|
fieldName2Types[testBinaryVecField] = schemapb.DataType_BinaryVector
|
|
}
|
|
|
|
schema := constructCollectionSchemaByDataType(s.collectionName, fieldName2Types, testInt64Field, false)
|
|
marshaledSchema, err := proto.Marshal(schema)
|
|
s.NoError(err)
|
|
|
|
ctx := context.Background()
|
|
createColT := &createCollectionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
CreateCollectionRequest: &milvuspb.CreateCollectionRequest{
|
|
CollectionName: s.collectionName,
|
|
Schema: marshaledSchema,
|
|
ShardsNum: common.DefaultShardsNum,
|
|
},
|
|
ctx: ctx,
|
|
rootCoord: s.rc,
|
|
}
|
|
|
|
s.NoError(createColT.OnEnqueue())
|
|
s.NoError(createColT.PreExecute(ctx))
|
|
s.NoError(createColT.Execute(ctx))
|
|
s.NoError(createColT.PostExecute(ctx))
|
|
|
|
collectionID, err := globalMetaCache.GetCollectionID(ctx, GetCurDBNameFromContextOrDefault(ctx), s.collectionName)
|
|
s.NoError(err)
|
|
|
|
status, err := s.qc.LoadCollection(ctx, &querypb.LoadCollectionRequest{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_LoadCollection,
|
|
SourceID: paramtable.GetNodeID(),
|
|
},
|
|
CollectionID: collectionID,
|
|
})
|
|
s.NoError(err)
|
|
s.Equal(commonpb.ErrorCode_Success, status.ErrorCode)
|
|
s.collectionID = collectionID
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) TearDownSuite() {
|
|
s.rc.Close()
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) TestStatisticTask_Timeout() {
|
|
ctx := context.Background()
|
|
task := s.getStatisticsTask(ctx)
|
|
|
|
s.NoError(task.OnEnqueue())
|
|
|
|
// test query task with timeout
|
|
ctx1, cancel1 := context.WithTimeout(ctx, 10*time.Second)
|
|
defer cancel1()
|
|
// before preExecute
|
|
s.Equal(typeutil.ZeroTimestamp, task.TimeoutTimestamp)
|
|
task.ctx = ctx1
|
|
s.NoError(task.PreExecute(ctx))
|
|
// after preExecute
|
|
s.Greater(task.TimeoutTimestamp, typeutil.ZeroTimestamp)
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) getStatisticsTask(ctx context.Context) *getStatisticsTask {
|
|
return &getStatisticsTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
ctx: ctx,
|
|
collectionName: s.collectionName,
|
|
result: &milvuspb.GetStatisticsResponse{
|
|
Status: merr.Success(),
|
|
},
|
|
request: &milvuspb.GetStatisticsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_Retrieve,
|
|
SourceID: paramtable.GetNodeID(),
|
|
},
|
|
CollectionName: s.collectionName,
|
|
},
|
|
qc: s.qc,
|
|
lb: s.lb,
|
|
}
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) TestStatisticTask_NotShardLeader() {
|
|
ctx := context.Background()
|
|
task := s.getStatisticsTask(ctx)
|
|
|
|
s.NoError(task.OnEnqueue())
|
|
|
|
task.fromQueryNode = true
|
|
s.qn.EXPECT().GetStatistics(mock.Anything, mock.Anything).Return(&internalpb.GetStatisticsResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_NotShardLeader,
|
|
Reason: "error",
|
|
},
|
|
}, nil)
|
|
s.NoError(task.PreExecute(ctx))
|
|
s.Error(task.Execute(ctx))
|
|
s.NoError(task.PostExecute(ctx))
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) TestStatisticTask_UnexpectedError() {
|
|
ctx := context.Background()
|
|
task := s.getStatisticsTask(ctx)
|
|
s.NoError(task.OnEnqueue())
|
|
|
|
task.fromQueryNode = true
|
|
s.qn.EXPECT().GetStatistics(mock.Anything, mock.Anything).Return(&internalpb.GetStatisticsResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
|
Reason: "error",
|
|
},
|
|
}, nil)
|
|
s.NoError(task.PreExecute(ctx))
|
|
s.Error(task.Execute(ctx))
|
|
s.NoError(task.PostExecute(ctx))
|
|
}
|
|
|
|
func (s *StatisticTaskSuite) TestStatisticTask_Success() {
|
|
ctx := context.Background()
|
|
task := s.getStatisticsTask(ctx)
|
|
|
|
s.NoError(task.OnEnqueue())
|
|
s.qn.EXPECT().GetStatistics(mock.Anything, mock.Anything).Return(nil, nil)
|
|
s.NoError(task.PreExecute(ctx))
|
|
task.fromQueryNode = true
|
|
task.fromDataCoord = false
|
|
s.NoError(task.Execute(ctx))
|
|
s.NoError(task.PostExecute(ctx))
|
|
}
|
|
|
|
func TestStatisticTaskSuite(t *testing.T) {
|
|
suite.Run(t, new(StatisticTaskSuite))
|
|
}
|