Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

159 lines
5.0 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 index
import (
"context"
"testing"
"github.com/stretchr/testify/suite"
"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/datapb"
"github.com/milvus-io/milvus/pkg/v3/proto/indexpb"
)
type statsTaskInfoSuite struct {
suite.Suite
ctx context.Context
manager *TaskManager
cluster string
taskID int64
}
func Test_statsTaskInfoSuite(t *testing.T) {
suite.Run(t, new(statsTaskInfoSuite))
}
func (s *statsTaskInfoSuite) SetupSuite() {
s.manager = NewTaskManager(context.Background())
s.cluster = "test"
s.taskID = 100
}
func (s *statsTaskInfoSuite) Test_Methods() {
baseManifest := "test_base_manifest_path"
textBaseManifest := "test_text_base_manifest_path"
manifest := "test_manifest_path"
jsonKeyStatsLogs := map[int64]*datapb.JsonKeyStats{
100: {
FieldID: 100,
Version: 1,
Files: []string{"file1"},
LogSize: 1024,
MemorySize: 1024,
JsonKeyStatsDataFormat: common.JSONStatsDataFormatVersion,
},
}
s.Run("loadOrStoreStatsTask", func() {
_, cancel := context.WithCancel(s.manager.ctx) //nolint:gosec // cancel is deferred below
defer cancel()
info := &StatsTaskInfo{
Cancel: cancel,
State: indexpb.JobState_JobStateInProgress,
}
reInfo := s.manager.LoadOrStoreStatsTask(s.cluster, s.taskID, info)
s.Nil(reInfo)
reInfo = s.manager.LoadOrStoreStatsTask(s.cluster, s.taskID, info)
s.Equal(indexpb.JobState_JobStateInProgress, reInfo.State)
})
s.Run("getStatsTaskState", func() {
s.Equal(indexpb.JobState_JobStateInProgress, s.manager.GetStatsTaskState(s.cluster, s.taskID))
s.Equal(indexpb.JobState_JobStateNone, s.manager.GetStatsTaskState(s.cluster, s.taskID+1))
})
s.Run("storeStatsTaskState", func() {
s.manager.StoreStatsTaskState(s.cluster, s.taskID, indexpb.JobState_JobStateFinished, "finished")
s.Equal(indexpb.JobState_JobStateFinished, s.manager.GetStatsTaskState(s.cluster, s.taskID))
})
s.Run("storeStatsResult", func() {
s.manager.StorePKSortStatsResult(s.cluster, s.taskID, 1, 2, 3, "ch1", 65535,
[]*datapb.FieldBinlog{{FieldID: 100, Binlogs: []*datapb.Binlog{{LogID: 1}}}},
[]*datapb.FieldBinlog{{FieldID: 100, Binlogs: []*datapb.Binlog{{LogID: 2}}}},
[]*datapb.FieldBinlog{},
"test_manifest_path",
)
})
s.Run("storeStatsTextIndexResult", func() {
s.manager.StoreStatsTextIndexResult(s.cluster, s.taskID, 1, 2, 3, "ch1",
map[int64]*datapb.TextIndexStats{
100: {
FieldID: 100,
Version: 1,
Files: []string{"file1"},
LogSize: 1024,
MemorySize: 1024,
},
}, textBaseManifest, "test_manifest_path")
taskInfo := s.manager.GetStatsTaskInfo(s.cluster, s.taskID)
s.Equal(textBaseManifest, taskInfo.ToStatsResult(s.taskID).GetBaseManifest())
})
s.Run("storeStatsJsonIndexResult", func() {
s.manager.StoreJSONKeyStatsResult(s.cluster, s.taskID, 1, 2, 3, "ch1",
jsonKeyStatsLogs, baseManifest, manifest)
})
s.Run("getStatsTaskInfo", func() {
taskInfo := s.manager.GetStatsTaskInfo(s.cluster, s.taskID)
s.Equal(indexpb.JobState_JobStateFinished, taskInfo.State)
s.Equal(int64(1), taskInfo.CollID)
s.Equal(int64(2), taskInfo.PartID)
s.Equal(int64(3), taskInfo.SegID)
s.Equal("ch1", taskInfo.InsertChannel)
s.Equal(int64(65535), taskInfo.NumRows)
result := taskInfo.ToStatsResult(s.taskID)
s.Equal(baseManifest, result.GetBaseManifest())
s.Equal(manifest, result.GetManifest())
s.Equal(jsonKeyStatsLogs, result.GetJsonKeyStatsLogs())
})
s.Run("deleteStatsTaskInfos", func() {
s.manager.DeleteStatsTaskInfos(s.ctx, []Key{{ClusterID: s.cluster, TaskID: s.taskID}})
s.Nil(s.manager.GetStatsTaskInfo(s.cluster, s.taskID))
})
}
func (s *statsTaskInfoSuite) TestIndexTaskInfoReturnsIndexStorePathVersion() {
info := &IndexTaskInfo{
State: commonpb.IndexState_Finished,
IndexStorePathVersion: indexpb.IndexStorePathVersion_INDEX_STORE_PATH_VERSION_COLLECTION_ROOTED,
}
s.Equal(
indexpb.IndexStorePathVersion_INDEX_STORE_PATH_VERSION_COLLECTION_ROOTED,
info.ToIndexTaskInfo(100).GetIndexStorePathVersion(),
)
cloned := info.Clone()
s.Equal(indexpb.IndexStorePathVersion_INDEX_STORE_PATH_VERSION_COLLECTION_ROOTED, cloned.IndexStorePathVersion)
}