mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
e52ce370b6
don't store logPath in meta to reduce memory, when service get segmentinfo, generate logpath from logid. #28885 Signed-off-by: lixinguo <xinguo.li@zilliz.com> Co-authored-by: lixinguo <xinguo.li@zilliz.com>
275 lines
9.0 KiB
Go
275 lines
9.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 bulkinsert
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"strconv"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
"github.com/golang/protobuf/proto"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/stretchr/testify/suite"
|
|
"go.uber.org/zap"
|
|
|
|
"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/util/importutil"
|
|
"github.com/milvus-io/milvus/pkg/common"
|
|
"github.com/milvus-io/milvus/pkg/log"
|
|
"github.com/milvus-io/milvus/pkg/util/funcutil"
|
|
"github.com/milvus-io/milvus/pkg/util/metric"
|
|
"github.com/milvus-io/milvus/tests/integration"
|
|
)
|
|
|
|
const (
|
|
TempFilesPath = "/tmp/integration_test/import/"
|
|
Dim = 128
|
|
)
|
|
|
|
type BulkInsertSuite struct {
|
|
integration.MiniClusterSuite
|
|
}
|
|
|
|
// test bulk insert E2E
|
|
// 1, create collection with a vector column and a varchar column
|
|
// 2, generate numpy files
|
|
// 3, import
|
|
// 4, create index
|
|
// 5, load
|
|
// 6, search
|
|
func (s *BulkInsertSuite) TestBulkInsert() {
|
|
c := s.Cluster
|
|
ctx, cancel := context.WithCancel(c.GetContext())
|
|
defer cancel()
|
|
|
|
prefix := "TestBulkInsert"
|
|
dbName := ""
|
|
collectionName := prefix + funcutil.GenRandomStr()
|
|
// floatVecField := floatVecField
|
|
dim := 128
|
|
|
|
schema := integration.ConstructSchema(collectionName, dim, true,
|
|
&schemapb.FieldSchema{Name: "id", DataType: schemapb.DataType_Int64, IsPrimaryKey: true, AutoID: true},
|
|
&schemapb.FieldSchema{Name: "image_path", DataType: schemapb.DataType_VarChar, TypeParams: []*commonpb.KeyValuePair{{Key: common.MaxLengthKey, Value: "65535"}}},
|
|
&schemapb.FieldSchema{Name: "embeddings", DataType: schemapb.DataType_FloatVector, TypeParams: []*commonpb.KeyValuePair{{Key: common.DimKey, Value: "128"}}},
|
|
)
|
|
marshaledSchema, err := proto.Marshal(schema)
|
|
s.NoError(err)
|
|
|
|
createCollectionStatus, err := c.Proxy.CreateCollection(ctx, &milvuspb.CreateCollectionRequest{
|
|
DbName: dbName,
|
|
CollectionName: collectionName,
|
|
Schema: marshaledSchema,
|
|
ShardsNum: common.DefaultShardsNum,
|
|
})
|
|
s.NoError(err)
|
|
if createCollectionStatus.GetErrorCode() != commonpb.ErrorCode_Success {
|
|
log.Warn("createCollectionStatus fail reason", zap.String("reason", createCollectionStatus.GetReason()))
|
|
s.FailNow("failed to create collection")
|
|
}
|
|
s.Equal(createCollectionStatus.GetErrorCode(), commonpb.ErrorCode_Success)
|
|
|
|
log.Info("CreateCollection result", zap.Any("createCollectionStatus", createCollectionStatus))
|
|
showCollectionsResp, err := c.Proxy.ShowCollections(ctx, &milvuspb.ShowCollectionsRequest{})
|
|
s.NoError(err)
|
|
s.Equal(showCollectionsResp.GetStatus().GetErrorCode(), commonpb.ErrorCode_Success)
|
|
log.Info("ShowCollections result", zap.Any("showCollectionsResp", showCollectionsResp))
|
|
|
|
err = os.MkdirAll(c.ChunkManager.RootPath(), os.ModePerm)
|
|
s.NoError(err)
|
|
|
|
err = GenerateNumpyFile(c.ChunkManager.RootPath()+"/"+"embeddings.npy", 100, schemapb.DataType_FloatVector, []*commonpb.KeyValuePair{
|
|
{
|
|
Key: common.DimKey,
|
|
Value: strconv.Itoa(Dim),
|
|
},
|
|
})
|
|
s.NoError(err)
|
|
err = GenerateNumpyFile(c.ChunkManager.RootPath()+"/"+"image_path.npy", 100, schemapb.DataType_VarChar, []*commonpb.KeyValuePair{
|
|
{
|
|
Key: common.MaxLengthKey,
|
|
Value: strconv.Itoa(65535),
|
|
},
|
|
})
|
|
s.NoError(err)
|
|
|
|
bulkInsertFiles := []string{
|
|
c.ChunkManager.RootPath() + "/" + "embeddings.npy",
|
|
c.ChunkManager.RootPath() + "/" + "image_path.npy",
|
|
}
|
|
|
|
health1, err := c.DataCoord.CheckHealth(ctx, &milvuspb.CheckHealthRequest{})
|
|
s.NoError(err)
|
|
log.Info("dataCoord health", zap.Any("health1", health1))
|
|
importResp, err := c.Proxy.Import(ctx, &milvuspb.ImportRequest{
|
|
CollectionName: collectionName,
|
|
Files: bulkInsertFiles,
|
|
})
|
|
s.NoError(err)
|
|
log.Info("Import result", zap.Any("importResp", importResp), zap.Int64s("tasks", importResp.GetTasks()))
|
|
|
|
tasks := importResp.GetTasks()
|
|
for _, task := range tasks {
|
|
loop:
|
|
for {
|
|
importTaskState, err := c.Proxy.GetImportState(ctx, &milvuspb.GetImportStateRequest{
|
|
Task: task,
|
|
})
|
|
s.NoError(err)
|
|
switch importTaskState.GetState() {
|
|
case commonpb.ImportState_ImportCompleted:
|
|
break loop
|
|
case commonpb.ImportState_ImportFailed:
|
|
break loop
|
|
case commonpb.ImportState_ImportFailedAndCleaned:
|
|
break loop
|
|
default:
|
|
log.Info("import task state", zap.Int64("id", task), zap.String("state", importTaskState.GetState().String()))
|
|
time.Sleep(time.Second * time.Duration(3))
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
health2, err := c.DataCoord.CheckHealth(ctx, &milvuspb.CheckHealthRequest{})
|
|
s.NoError(err)
|
|
log.Info("dataCoord health", zap.Any("health2", health2))
|
|
|
|
segments, err := c.MetaWatcher.ShowSegments()
|
|
s.NoError(err)
|
|
s.NotEmpty(segments)
|
|
for _, segment := range segments {
|
|
log.Info("ShowSegments result", zap.String("segment", segment.String()))
|
|
}
|
|
|
|
// create index
|
|
createIndexStatus, err := c.Proxy.CreateIndex(ctx, &milvuspb.CreateIndexRequest{
|
|
CollectionName: collectionName,
|
|
FieldName: "embeddings",
|
|
IndexName: "_default",
|
|
ExtraParams: integration.ConstructIndexParam(dim, integration.IndexHNSW, metric.L2),
|
|
})
|
|
if createIndexStatus.GetErrorCode() != commonpb.ErrorCode_Success {
|
|
log.Warn("createIndexStatus fail reason", zap.String("reason", createIndexStatus.GetReason()))
|
|
}
|
|
s.NoError(err)
|
|
s.Equal(commonpb.ErrorCode_Success, createIndexStatus.GetErrorCode())
|
|
|
|
s.WaitForIndexBuilt(ctx, collectionName, "embeddings")
|
|
|
|
// load
|
|
loadStatus, err := c.Proxy.LoadCollection(ctx, &milvuspb.LoadCollectionRequest{
|
|
DbName: dbName,
|
|
CollectionName: collectionName,
|
|
})
|
|
s.NoError(err)
|
|
if loadStatus.GetErrorCode() != commonpb.ErrorCode_Success {
|
|
log.Warn("loadStatus fail reason", zap.String("reason", loadStatus.GetReason()))
|
|
}
|
|
s.Equal(commonpb.ErrorCode_Success, loadStatus.GetErrorCode())
|
|
s.WaitForLoad(ctx, collectionName)
|
|
|
|
// search
|
|
expr := "" // fmt.Sprintf("%s > 0", int64Field)
|
|
nq := 10
|
|
topk := 10
|
|
roundDecimal := -1
|
|
|
|
params := integration.GetSearchParams(integration.IndexHNSW, metric.L2)
|
|
searchReq := integration.ConstructSearchRequest("", collectionName, expr,
|
|
"embeddings", schemapb.DataType_FloatVector, nil, metric.L2, params, nq, dim, topk, roundDecimal)
|
|
|
|
searchResult, err := c.Proxy.Search(ctx, searchReq)
|
|
|
|
if searchResult.GetStatus().GetErrorCode() != commonpb.ErrorCode_Success {
|
|
log.Warn("searchResult fail reason", zap.String("reason", searchResult.GetStatus().GetReason()))
|
|
}
|
|
s.NoError(err)
|
|
s.Equal(commonpb.ErrorCode_Success, searchResult.GetStatus().GetErrorCode())
|
|
|
|
log.Info("======================")
|
|
log.Info("======================")
|
|
log.Info("TestBulkInsert succeed")
|
|
log.Info("======================")
|
|
log.Info("======================")
|
|
}
|
|
|
|
func TestBulkInsert(t *testing.T) {
|
|
suite.Run(t, new(BulkInsertSuite))
|
|
}
|
|
|
|
func GenerateNumpyFile(filePath string, rowCount int, dType schemapb.DataType, typeParams []*commonpb.KeyValuePair) error {
|
|
if dType == schemapb.DataType_VarChar {
|
|
var data []string
|
|
for i := 0; i < rowCount; i++ {
|
|
data = append(data, "str")
|
|
}
|
|
err := importutil.CreateNumpyFile(filePath, data)
|
|
if err != nil {
|
|
log.Warn("failed to create numpy file", zap.Error(err))
|
|
return err
|
|
}
|
|
}
|
|
if dType == schemapb.DataType_FloatVector {
|
|
dimStr, ok := funcutil.KeyValuePair2Map(typeParams)[common.DimKey]
|
|
if !ok {
|
|
return errors.New("FloatVector field needs dim parameter")
|
|
}
|
|
dim, err := strconv.Atoi(dimStr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// data := make([][]float32, rowCount)
|
|
var data [][Dim]float32
|
|
for i := 0; i < rowCount; i++ {
|
|
vec := [Dim]float32{}
|
|
for j := 0; j < dim; j++ {
|
|
vec[j] = 1.1
|
|
}
|
|
// v := reflect.Indirect(reflect.ValueOf(vec))
|
|
// log.Info("type", zap.Any("type", v.Kind()))
|
|
data = append(data, vec)
|
|
// v2 := reflect.Indirect(reflect.ValueOf(data))
|
|
// log.Info("type", zap.Any("type", v2.Kind()))
|
|
}
|
|
err = importutil.CreateNumpyFile(filePath, data)
|
|
if err != nil {
|
|
log.Warn("failed to create numpy file", zap.Error(err))
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func TestGenerateNumpyFile(t *testing.T) {
|
|
err := os.MkdirAll(TempFilesPath, os.ModePerm)
|
|
require.NoError(t, err)
|
|
err = GenerateNumpyFile(TempFilesPath+"embeddings.npy", 100, schemapb.DataType_FloatVector, []*commonpb.KeyValuePair{
|
|
{
|
|
Key: common.DimKey,
|
|
Value: strconv.Itoa(Dim),
|
|
},
|
|
})
|
|
assert.NoError(t, err)
|
|
}
|