mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
3a58ac9fba
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
751 lines
26 KiB
Go
751 lines
26 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 datanode
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
"math/rand"
|
|
"path/filepath"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
|
|
"github.com/milvus-io/milvus-proto/go-api/schemapb"
|
|
|
|
"github.com/milvus-io/milvus/internal/common"
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
"github.com/milvus-io/milvus/internal/mq/msgstream"
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
"github.com/milvus-io/milvus/internal/storage"
|
|
"github.com/milvus-io/milvus/internal/util/dependency"
|
|
"github.com/milvus-io/milvus/internal/util/etcd"
|
|
"github.com/milvus-io/milvus/internal/util/importutil"
|
|
"github.com/milvus-io/milvus/internal/util/metricsinfo"
|
|
"github.com/milvus-io/milvus/internal/util/paramtable"
|
|
"github.com/milvus-io/milvus/internal/util/sessionutil"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
clientv3 "go.etcd.io/etcd/client/v3"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type DataNodeServicesSuite struct {
|
|
suite.Suite
|
|
|
|
node *DataNode
|
|
etcdCli *clientv3.Client
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
}
|
|
|
|
func TestDataNodeServicesSuite(t *testing.T) {
|
|
suite.Run(t, new(DataNodeServicesSuite))
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) SetupSuite() {
|
|
importutil.ReportImportAttempts = 1
|
|
|
|
s.ctx, s.cancel = context.WithCancel(context.Background())
|
|
etcdCli, err := etcd.GetEtcdClient(
|
|
Params.EtcdCfg.UseEmbedEtcd.GetAsBool(),
|
|
Params.EtcdCfg.EtcdUseSSL.GetAsBool(),
|
|
Params.EtcdCfg.Endpoints.GetAsStrings(),
|
|
Params.EtcdCfg.EtcdTLSCert.GetValue(),
|
|
Params.EtcdCfg.EtcdTLSKey.GetValue(),
|
|
Params.EtcdCfg.EtcdTLSCACert.GetValue(),
|
|
Params.EtcdCfg.EtcdTLSMinVersion.GetValue())
|
|
s.Require().NoError(err)
|
|
s.etcdCli = etcdCli
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) SetupTest() {
|
|
s.node = newIDLEDataNodeMock(s.ctx, schemapb.DataType_Int64)
|
|
s.node.SetEtcdClient(s.etcdCli)
|
|
|
|
err := s.node.Init()
|
|
s.Require().NoError(err)
|
|
|
|
err = s.node.Start()
|
|
s.Require().NoError(err)
|
|
|
|
s.node.chunkManager = storage.NewLocalChunkManager(storage.RootPath("/tmp/milvus_test/datanode"))
|
|
paramtable.SetNodeID(1)
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TearDownTest() {
|
|
s.node.Stop()
|
|
s.node = nil
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TearDownSuite() {
|
|
s.cancel()
|
|
err := s.etcdCli.Close()
|
|
s.Require().NoError(err)
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestNotInUseAPIs() {
|
|
s.Run("WatchDmChannels", func() {
|
|
status, err := s.node.WatchDmChannels(s.ctx, &datapb.WatchDmChannelsRequest{})
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, status.ErrorCode)
|
|
})
|
|
s.Run("GetTimeTickChannel", func() {
|
|
_, err := s.node.GetTimeTickChannel(s.ctx)
|
|
s.Assert().NoError(err)
|
|
})
|
|
|
|
s.Run("GetStatisticsChannel", func() {
|
|
_, err := s.node.GetStatisticsChannel(s.ctx)
|
|
s.Assert().NoError(err)
|
|
})
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestGetComponentStates() {
|
|
resp, err := s.node.GetComponentStates(s.ctx)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
|
s.Assert().Equal(common.NotRegisteredID, resp.State.NodeID)
|
|
|
|
s.node.session = &sessionutil.Session{}
|
|
s.node.session.UpdateRegistered(true)
|
|
resp, err = s.node.GetComponentStates(context.Background())
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestGetCompactionState() {
|
|
s.Run("success", func() {
|
|
s.node.compactionExecutor.executing.Store(int64(3), 0)
|
|
s.node.compactionExecutor.executing.Store(int64(2), 0)
|
|
s.node.compactionExecutor.completed.Store(int64(1), &datapb.CompactionResult{
|
|
PlanID: 1,
|
|
SegmentID: 10,
|
|
})
|
|
stat, err := s.node.GetCompactionState(s.ctx, nil)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(3, len(stat.GetResults()))
|
|
|
|
var mu sync.RWMutex
|
|
cnt := 0
|
|
for _, v := range stat.GetResults() {
|
|
if v.GetState() == commonpb.CompactionState_Completed {
|
|
mu.Lock()
|
|
cnt++
|
|
mu.Unlock()
|
|
}
|
|
}
|
|
mu.Lock()
|
|
s.Assert().Equal(1, cnt)
|
|
mu.Unlock()
|
|
|
|
mu.Lock()
|
|
cnt = 0
|
|
mu.Unlock()
|
|
s.node.compactionExecutor.completed.Range(func(k, v any) bool {
|
|
mu.Lock()
|
|
cnt++
|
|
mu.Unlock()
|
|
return true
|
|
})
|
|
s.Assert().Equal(0, cnt)
|
|
})
|
|
|
|
s.Run("unhealthy", func() {
|
|
node := &DataNode{}
|
|
node.UpdateStateCode(commonpb.StateCode_Abnormal)
|
|
resp, _ := node.GetCompactionState(s.ctx, nil)
|
|
s.Assert().Equal("DataNode is unhealthy", resp.GetStatus().GetReason())
|
|
})
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestFlushSegments() {
|
|
dmChannelName := "fake-by-dev-rootcoord-dml-channel-test-FlushSegments"
|
|
|
|
vchan := &datapb.VchannelInfo{
|
|
CollectionID: 1,
|
|
ChannelName: dmChannelName,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{},
|
|
}
|
|
|
|
err := s.node.flowgraphManager.addAndStart(s.node, vchan, nil)
|
|
s.Require().NoError(err)
|
|
|
|
fgservice, ok := s.node.flowgraphManager.getFlowgraphService(dmChannelName)
|
|
s.Require().True(ok)
|
|
|
|
err = fgservice.channel.addSegment(addSegmentReq{
|
|
segType: datapb.SegmentType_New,
|
|
segID: 0,
|
|
collID: 1,
|
|
partitionID: 1,
|
|
startPos: &internalpb.MsgPosition{},
|
|
endPos: &internalpb.MsgPosition{},
|
|
})
|
|
s.Require().NoError(err)
|
|
|
|
req := &datapb.FlushSegmentsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
TargetID: s.node.session.ServerID,
|
|
},
|
|
DbID: 0,
|
|
CollectionID: 1,
|
|
SegmentIDs: []int64{0},
|
|
}
|
|
|
|
wg := sync.WaitGroup{}
|
|
wg.Add(2)
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
status, err := s.node.FlushSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, status.ErrorCode)
|
|
}()
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
timeTickMsgPack := msgstream.MsgPack{}
|
|
timeTickMsg := &msgstream.TimeTickMsg{
|
|
BaseMsg: msgstream.BaseMsg{
|
|
BeginTimestamp: Timestamp(0),
|
|
EndTimestamp: Timestamp(0),
|
|
HashValues: []uint32{0},
|
|
},
|
|
TimeTickMsg: internalpb.TimeTickMsg{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_TimeTick,
|
|
MsgID: UniqueID(0),
|
|
Timestamp: math.MaxUint64,
|
|
SourceID: 0,
|
|
},
|
|
},
|
|
}
|
|
timeTickMsgPack.Msgs = append(timeTickMsgPack.Msgs, timeTickMsg)
|
|
|
|
// pulsar produce
|
|
factory := dependency.NewDefaultFactory(true)
|
|
insertStream, err := factory.NewMsgStream(s.ctx)
|
|
s.Assert().NoError(err)
|
|
insertStream.AsProducer([]string{dmChannelName})
|
|
defer insertStream.Close()
|
|
|
|
_, err = insertStream.Broadcast(&timeTickMsgPack)
|
|
s.Assert().NoError(err)
|
|
|
|
_, err = insertStream.Broadcast(&timeTickMsgPack)
|
|
s.Assert().NoError(err)
|
|
}()
|
|
|
|
wg.Wait()
|
|
// dup call
|
|
status, err := s.node.FlushSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, status.ErrorCode)
|
|
|
|
// failure call
|
|
req = &datapb.FlushSegmentsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
TargetID: -1,
|
|
},
|
|
DbID: 0,
|
|
CollectionID: 1,
|
|
SegmentIDs: []int64{1},
|
|
}
|
|
status, err = s.node.FlushSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_NodeIDNotMatch, status.ErrorCode)
|
|
|
|
req = &datapb.FlushSegmentsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
TargetID: s.node.session.ServerID,
|
|
},
|
|
DbID: 0,
|
|
CollectionID: 1,
|
|
SegmentIDs: []int64{1},
|
|
}
|
|
|
|
status, err = s.node.FlushSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_UnexpectedError, status.ErrorCode)
|
|
|
|
req = &datapb.FlushSegmentsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
TargetID: s.node.session.ServerID,
|
|
},
|
|
DbID: 0,
|
|
CollectionID: 1,
|
|
SegmentIDs: []int64{},
|
|
}
|
|
|
|
status, err = s.node.FlushSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, status.ErrorCode)
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestShowConfigurations() {
|
|
pattern := "datanode.Port"
|
|
req := &internalpb.ShowConfigurationsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_WatchQueryChannels,
|
|
MsgID: rand.Int63(),
|
|
},
|
|
Pattern: pattern,
|
|
}
|
|
|
|
//test closed server
|
|
node := &DataNode{}
|
|
node.session = &sessionutil.Session{ServerID: 1}
|
|
node.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
|
|
resp, err := node.ShowConfigurations(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_UnexpectedError, resp.Status.ErrorCode)
|
|
|
|
node.stateCode.Store(commonpb.StateCode_Healthy)
|
|
resp, err = node.ShowConfigurations(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
|
s.Assert().Equal(1, len(resp.Configuations))
|
|
s.Assert().Equal("datanode.port", resp.Configuations[0].Key)
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestGetMetrics() {
|
|
node := &DataNode{}
|
|
node.session = &sessionutil.Session{ServerID: 1}
|
|
node.flowgraphManager = newFlowgraphManager()
|
|
// server is closed
|
|
node.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
resp, err := node.GetMetrics(s.ctx, &milvuspb.GetMetricsRequest{})
|
|
s.Assert().NoError(err)
|
|
s.Assert().NotEqual(commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
|
|
|
node.stateCode.Store(commonpb.StateCode_Healthy)
|
|
|
|
// failed to parse metric type
|
|
invalidRequest := "invalid request"
|
|
resp, err = node.GetMetrics(s.ctx, &milvuspb.GetMetricsRequest{
|
|
Request: invalidRequest,
|
|
})
|
|
s.Assert().NoError(err)
|
|
s.Assert().NotEqual(commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
|
|
|
// unsupported metric type
|
|
unsupportedMetricType := "unsupported"
|
|
req, err := metricsinfo.ConstructRequestByMetricType(unsupportedMetricType)
|
|
s.Assert().NoError(err)
|
|
resp, err = node.GetMetrics(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().NotEqual(commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
|
|
|
// normal case
|
|
req, err = metricsinfo.ConstructRequestByMetricType(metricsinfo.SystemInfoMetrics)
|
|
s.Assert().NoError(err)
|
|
resp, err = node.GetMetrics(node.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
|
log.Info("Test DataNode.GetMetrics",
|
|
zap.String("name", resp.ComponentName),
|
|
zap.String("response", resp.Response))
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestImport() {
|
|
s.node.rootCoord = &RootCoordFactory{
|
|
collectionID: 100,
|
|
pkType: schemapb.DataType_Int64,
|
|
}
|
|
s.Run("test normal", func() {
|
|
content := []byte(`{
|
|
"rows":[
|
|
{"bool_field": true, "int8_field": 10, "int16_field": 101, "int32_field": 1001, "int64_field": 10001, "float32_field": 3.14, "float64_field": 1.56, "varChar_field": "hello world", "binary_vector_field": [254, 0, 254, 0], "float_vector_field": [1.1, 1.2]},
|
|
{"bool_field": false, "int8_field": 11, "int16_field": 102, "int32_field": 1002, "int64_field": 10002, "float32_field": 3.15, "float64_field": 2.56, "varChar_field": "hello world", "binary_vector_field": [253, 0, 253, 0], "float_vector_field": [2.1, 2.2]},
|
|
{"bool_field": true, "int8_field": 12, "int16_field": 103, "int32_field": 1003, "int64_field": 10003, "float32_field": 3.16, "float64_field": 3.56, "varChar_field": "hello world", "binary_vector_field": [252, 0, 252, 0], "float_vector_field": [3.1, 3.2]},
|
|
{"bool_field": false, "int8_field": 13, "int16_field": 104, "int32_field": 1004, "int64_field": 10004, "float32_field": 3.17, "float64_field": 4.56, "varChar_field": "hello world", "binary_vector_field": [251, 0, 251, 0], "float_vector_field": [4.1, 4.2]},
|
|
{"bool_field": true, "int8_field": 14, "int16_field": 105, "int32_field": 1005, "int64_field": 10005, "float32_field": 3.18, "float64_field": 5.56, "varChar_field": "hello world", "binary_vector_field": [250, 0, 250, 0], "float_vector_field": [5.1, 5.2]}
|
|
]
|
|
}`)
|
|
|
|
chName1 := "fake-by-dev-rootcoord-dml-testimport-1"
|
|
chName2 := "fake-by-dev-rootcoord-dml-testimport-2"
|
|
err := s.node.flowgraphManager.addAndStart(s.node, &datapb.VchannelInfo{
|
|
CollectionID: 100,
|
|
ChannelName: chName1,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{},
|
|
}, nil)
|
|
s.Require().Nil(err)
|
|
err = s.node.flowgraphManager.addAndStart(s.node, &datapb.VchannelInfo{
|
|
CollectionID: 100,
|
|
ChannelName: chName2,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{},
|
|
}, nil)
|
|
s.Require().Nil(err)
|
|
|
|
_, ok := s.node.flowgraphManager.getFlowgraphService(chName1)
|
|
s.Require().True(ok)
|
|
_, ok = s.node.flowgraphManager.getFlowgraphService(chName2)
|
|
s.Require().True(ok)
|
|
|
|
filePath := filepath.Join(s.node.chunkManager.RootPath(), "rows_1.json")
|
|
err = s.node.chunkManager.Write(s.ctx, filePath, content)
|
|
s.Require().Nil(err)
|
|
req := &datapb.ImportTaskRequest{
|
|
ImportTask: &datapb.ImportTask{
|
|
CollectionId: 100,
|
|
PartitionId: 100,
|
|
ChannelNames: []string{chName1, chName2},
|
|
Files: []string{filePath},
|
|
RowBased: true,
|
|
},
|
|
}
|
|
s.node.rootCoord.(*RootCoordFactory).ReportImportErr = true
|
|
_, err = s.node.Import(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.node.rootCoord.(*RootCoordFactory).ReportImportErr = false
|
|
|
|
s.node.rootCoord.(*RootCoordFactory).ReportImportNotSuccess = true
|
|
_, err = s.node.Import(context.WithValue(s.ctx, ctxKey{}, ""), req)
|
|
s.Assert().NoError(err)
|
|
s.node.rootCoord.(*RootCoordFactory).ReportImportNotSuccess = false
|
|
|
|
s.node.dataCoord.(*DataCoordFactory).AddSegmentError = true
|
|
_, err = s.node.Import(context.WithValue(s.ctx, ctxKey{}, ""), req)
|
|
s.Assert().NoError(err)
|
|
s.node.dataCoord.(*DataCoordFactory).AddSegmentError = false
|
|
|
|
s.node.dataCoord.(*DataCoordFactory).AddSegmentNotSuccess = true
|
|
_, err = s.node.Import(context.WithValue(s.ctx, ctxKey{}, ""), req)
|
|
s.Assert().NoError(err)
|
|
s.node.dataCoord.(*DataCoordFactory).AddSegmentNotSuccess = false
|
|
|
|
stat, err := s.node.Import(context.WithValue(s.ctx, ctxKey{}, ""), req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, stat.GetErrorCode())
|
|
s.Assert().Equal("", stat.GetReason())
|
|
})
|
|
|
|
s.Run("Test Import bad flow graph", func() {
|
|
chName1 := "fake-by-dev-rootcoord-dml-testimport-1-badflowgraph"
|
|
chName2 := "fake-by-dev-rootcoord-dml-testimport-2-badflowgraph"
|
|
err := s.node.flowgraphManager.addAndStart(s.node, &datapb.VchannelInfo{
|
|
CollectionID: 100,
|
|
ChannelName: chName1,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{},
|
|
}, nil)
|
|
s.Require().Nil(err)
|
|
err = s.node.flowgraphManager.addAndStart(s.node, &datapb.VchannelInfo{
|
|
CollectionID: 999, // wrong collection ID.
|
|
ChannelName: chName2,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{},
|
|
}, nil)
|
|
s.Require().Nil(err)
|
|
|
|
_, ok := s.node.flowgraphManager.getFlowgraphService(chName1)
|
|
s.Require().True(ok)
|
|
_, ok = s.node.flowgraphManager.getFlowgraphService(chName2)
|
|
s.Require().True(ok)
|
|
|
|
content := []byte(`{
|
|
"rows":[
|
|
{"bool_field": true, "int8_field": 10, "int16_field": 101, "int32_field": 1001, "int64_field": 10001, "float32_field": 3.14, "float64_field": 1.56, "varChar_field": "hello world", "binary_vector_field": [254, 0, 254, 0], "float_vector_field": [1.1, 1.2]},
|
|
{"bool_field": false, "int8_field": 11, "int16_field": 102, "int32_field": 1002, "int64_field": 10002, "float32_field": 3.15, "float64_field": 2.56, "varChar_field": "hello world", "binary_vector_field": [253, 0, 253, 0], "float_vector_field": [2.1, 2.2]},
|
|
{"bool_field": true, "int8_field": 12, "int16_field": 103, "int32_field": 1003, "int64_field": 10003, "float32_field": 3.16, "float64_field": 3.56, "varChar_field": "hello world", "binary_vector_field": [252, 0, 252, 0], "float_vector_field": [3.1, 3.2]},
|
|
{"bool_field": false, "int8_field": 13, "int16_field": 104, "int32_field": 1004, "int64_field": 10004, "float32_field": 3.17, "float64_field": 4.56, "varChar_field": "hello world", "binary_vector_field": [251, 0, 251, 0], "float_vector_field": [4.1, 4.2]},
|
|
{"bool_field": true, "int8_field": 14, "int16_field": 105, "int32_field": 1005, "int64_field": 10005, "float32_field": 3.18, "float64_field": 5.56, "varChar_field": "hello world", "binary_vector_field": [250, 0, 250, 0], "float_vector_field": [5.1, 5.2]}
|
|
]
|
|
}`)
|
|
|
|
filePath := filepath.Join(s.node.chunkManager.RootPath(), "rows_1.json")
|
|
err = s.node.chunkManager.Write(s.ctx, filePath, content)
|
|
s.Assert().NoError(err)
|
|
req := &datapb.ImportTaskRequest{
|
|
ImportTask: &datapb.ImportTask{
|
|
CollectionId: 100,
|
|
PartitionId: 100,
|
|
ChannelNames: []string{chName1, chName2},
|
|
Files: []string{filePath},
|
|
RowBased: true,
|
|
},
|
|
}
|
|
stat, err := s.node.Import(context.WithValue(s.ctx, ctxKey{}, ""), req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, stat.GetErrorCode())
|
|
s.Assert().Equal("", stat.GetReason())
|
|
})
|
|
s.Run("Test Import report import error", func() {
|
|
s.node.rootCoord = &RootCoordFactory{
|
|
collectionID: 100,
|
|
pkType: schemapb.DataType_Int64,
|
|
ReportImportErr: true,
|
|
}
|
|
content := []byte(`{
|
|
"rows":[
|
|
{"bool_field": true, "int8_field": 10, "int16_field": 101, "int32_field": 1001, "int64_field": 10001, "float32_field": 3.14, "float64_field": 1.56, "varChar_field": "hello world", "binary_vector_field": [254, 0, 254, 0], "float_vector_field": [1.1, 1.2]},
|
|
{"bool_field": false, "int8_field": 11, "int16_field": 102, "int32_field": 1002, "int64_field": 10002, "float32_field": 3.15, "float64_field": 2.56, "varChar_field": "hello world", "binary_vector_field": [253, 0, 253, 0], "float_vector_field": [2.1, 2.2]},
|
|
{"bool_field": true, "int8_field": 12, "int16_field": 103, "int32_field": 1003, "int64_field": 10003, "float32_field": 3.16, "float64_field": 3.56, "varChar_field": "hello world", "binary_vector_field": [252, 0, 252, 0], "float_vector_field": [3.1, 3.2]},
|
|
{"bool_field": false, "int8_field": 13, "int16_field": 104, "int32_field": 1004, "int64_field": 10004, "float32_field": 3.17, "float64_field": 4.56, "varChar_field": "hello world", "binary_vector_field": [251, 0, 251, 0], "float_vector_field": [4.1, 4.2]},
|
|
{"bool_field": true, "int8_field": 14, "int16_field": 105, "int32_field": 1005, "int64_field": 10005, "float32_field": 3.18, "float64_field": 5.56, "varChar_field": "hello world", "binary_vector_field": [250, 0, 250, 0], "float_vector_field": [5.1, 5.2]}
|
|
]
|
|
}`)
|
|
|
|
filePath := filepath.Join(s.node.chunkManager.RootPath(), "rows_1.json")
|
|
err := s.node.chunkManager.Write(s.ctx, filePath, content)
|
|
s.Assert().NoError(err)
|
|
req := &datapb.ImportTaskRequest{
|
|
ImportTask: &datapb.ImportTask{
|
|
CollectionId: 100,
|
|
PartitionId: 100,
|
|
ChannelNames: []string{"ch1", "ch2"},
|
|
Files: []string{filePath},
|
|
RowBased: true,
|
|
},
|
|
}
|
|
stat, err := s.node.Import(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_UnexpectedError, stat.GetErrorCode())
|
|
})
|
|
|
|
s.Run("Test Import error", func() {
|
|
s.node.rootCoord = &RootCoordFactory{collectionID: -1}
|
|
req := &datapb.ImportTaskRequest{
|
|
ImportTask: &datapb.ImportTask{
|
|
CollectionId: 100,
|
|
PartitionId: 100,
|
|
},
|
|
}
|
|
stat, err := s.node.Import(context.WithValue(s.ctx, ctxKey{}, ""), req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_UnexpectedError, stat.ErrorCode)
|
|
|
|
stat, err = s.node.Import(context.WithValue(s.ctx, ctxKey{}, returnError), req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_UnexpectedError, stat.GetErrorCode())
|
|
|
|
s.node.stateCode.Store(commonpb.StateCode_Abnormal)
|
|
stat, err = s.node.Import(context.WithValue(s.ctx, ctxKey{}, ""), req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_UnexpectedError, stat.GetErrorCode())
|
|
})
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestAddImportSegment() {
|
|
s.Run("test AddSegment", func() {
|
|
s.node.rootCoord = &RootCoordFactory{
|
|
collectionID: 100,
|
|
pkType: schemapb.DataType_Int64,
|
|
}
|
|
|
|
chName1 := "fake-by-dev-rootcoord-dml-testaddsegment-1"
|
|
chName2 := "fake-by-dev-rootcoord-dml-testaddsegment-2"
|
|
err := s.node.flowgraphManager.addAndStart(s.node, &datapb.VchannelInfo{
|
|
CollectionID: 100,
|
|
ChannelName: chName1,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{},
|
|
}, nil)
|
|
s.Require().NoError(err)
|
|
err = s.node.flowgraphManager.addAndStart(s.node, &datapb.VchannelInfo{
|
|
CollectionID: 100,
|
|
ChannelName: chName2,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{},
|
|
}, nil)
|
|
s.Require().NoError(err)
|
|
|
|
_, ok := s.node.flowgraphManager.getFlowgraphService(chName1)
|
|
s.Assert().True(ok)
|
|
_, ok = s.node.flowgraphManager.getFlowgraphService(chName2)
|
|
s.Assert().True(ok)
|
|
|
|
stat, err := s.node.AddImportSegment(context.WithValue(s.ctx, ctxKey{}, ""), &datapb.AddImportSegmentRequest{
|
|
SegmentId: 100,
|
|
CollectionId: 100,
|
|
PartitionId: 100,
|
|
ChannelName: chName1,
|
|
RowNum: 500,
|
|
})
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, stat.GetStatus().GetErrorCode())
|
|
s.Assert().Equal("", stat.GetStatus().GetReason())
|
|
s.Assert().NotEqual(nil, stat.GetChannelPos())
|
|
|
|
getFlowGraphServiceAttempts = 3
|
|
stat, err = s.node.AddImportSegment(context.WithValue(s.ctx, ctxKey{}, ""), &datapb.AddImportSegmentRequest{
|
|
SegmentId: 100,
|
|
CollectionId: 100,
|
|
PartitionId: 100,
|
|
ChannelName: "bad-ch-name",
|
|
RowNum: 500,
|
|
})
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_UnexpectedError, stat.GetStatus().GetErrorCode())
|
|
})
|
|
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestSyncSegments() {
|
|
chanName := "fake-by-dev-rootcoord-dml-test-syncsegments-1"
|
|
|
|
err := s.node.flowgraphManager.addAndStart(s.node, &datapb.VchannelInfo{
|
|
ChannelName: chanName,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{100, 200, 300},
|
|
}, nil)
|
|
s.Require().NoError(err)
|
|
fg, ok := s.node.flowgraphManager.getFlowgraphService(chanName)
|
|
s.Assert().True(ok)
|
|
|
|
s1 := Segment{segmentID: 100}
|
|
s2 := Segment{segmentID: 200}
|
|
s3 := Segment{segmentID: 300}
|
|
s1.setType(datapb.SegmentType_Flushed)
|
|
s2.setType(datapb.SegmentType_Flushed)
|
|
s3.setType(datapb.SegmentType_Flushed)
|
|
fg.channel.(*ChannelMeta).segments = map[UniqueID]*Segment{
|
|
s1.segmentID: &s1,
|
|
s2.segmentID: &s2,
|
|
s3.segmentID: &s3,
|
|
}
|
|
|
|
s.Run("invalid compacted from", func() {
|
|
req := &datapb.SyncSegmentsRequest{
|
|
CompactedTo: 400,
|
|
NumOfRows: 100,
|
|
}
|
|
|
|
req.CompactedFrom = []UniqueID{}
|
|
status, err := s.node.SyncSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_UnexpectedError, status.GetErrorCode())
|
|
|
|
req.CompactedFrom = []UniqueID{101, 201}
|
|
status, err = s.node.SyncSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, status.GetErrorCode())
|
|
})
|
|
|
|
s.Run("valid request numRows>0", func() {
|
|
req := &datapb.SyncSegmentsRequest{
|
|
CompactedFrom: []UniqueID{100, 200, 101, 201},
|
|
CompactedTo: 102,
|
|
NumOfRows: 100,
|
|
}
|
|
status, err := s.node.SyncSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, status.GetErrorCode())
|
|
|
|
s.Assert().True(fg.channel.hasSegment(req.CompactedTo, true))
|
|
s.Assert().False(fg.channel.hasSegment(req.CompactedFrom[0], true))
|
|
s.Assert().False(fg.channel.hasSegment(req.CompactedFrom[1], true))
|
|
})
|
|
|
|
s.Run("valid request numRows=0", func() {
|
|
s1.setType(datapb.SegmentType_Flushed)
|
|
s2.setType(datapb.SegmentType_Flushed)
|
|
s3.setType(datapb.SegmentType_Flushed)
|
|
|
|
fg.channel.(*ChannelMeta).segments = map[UniqueID]*Segment{
|
|
s1.segmentID: &s1,
|
|
s2.segmentID: &s2,
|
|
s3.segmentID: &s3,
|
|
}
|
|
|
|
req := &datapb.SyncSegmentsRequest{
|
|
CompactedFrom: []int64{s1.segmentID, s2.segmentID},
|
|
CompactedTo: 101,
|
|
NumOfRows: 0,
|
|
}
|
|
status, err := s.node.SyncSegments(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, status.GetErrorCode())
|
|
|
|
s.Assert().False(fg.channel.hasSegment(req.CompactedTo, true))
|
|
s.Assert().False(fg.channel.hasSegment(req.CompactedFrom[0], true))
|
|
s.Assert().False(fg.channel.hasSegment(req.CompactedFrom[1], true))
|
|
})
|
|
}
|
|
|
|
func (s *DataNodeServicesSuite) TestResendSegmentStats() {
|
|
dmChannelName := "fake-by-dev-rootcoord-dml-channel-test-ResendSegmentStats"
|
|
vChan := &datapb.VchannelInfo{
|
|
CollectionID: 1,
|
|
ChannelName: dmChannelName,
|
|
UnflushedSegmentIds: []int64{},
|
|
FlushedSegmentIds: []int64{},
|
|
}
|
|
|
|
err := s.node.flowgraphManager.addAndStart(s.node, vChan, nil)
|
|
s.Require().Nil(err)
|
|
|
|
fgService, ok := s.node.flowgraphManager.getFlowgraphService(dmChannelName)
|
|
s.Assert().True(ok)
|
|
|
|
err = fgService.channel.addSegment(addSegmentReq{
|
|
segType: datapb.SegmentType_New,
|
|
segID: 0,
|
|
collID: 1,
|
|
partitionID: 1,
|
|
startPos: &internalpb.MsgPosition{},
|
|
endPos: &internalpb.MsgPosition{},
|
|
})
|
|
s.Assert().Nil(err)
|
|
err = fgService.channel.addSegment(addSegmentReq{
|
|
segType: datapb.SegmentType_New,
|
|
segID: 1,
|
|
collID: 1,
|
|
partitionID: 2,
|
|
startPos: &internalpb.MsgPosition{},
|
|
endPos: &internalpb.MsgPosition{},
|
|
})
|
|
s.Assert().Nil(err)
|
|
err = fgService.channel.addSegment(addSegmentReq{
|
|
segType: datapb.SegmentType_New,
|
|
segID: 2,
|
|
collID: 1,
|
|
partitionID: 3,
|
|
startPos: &internalpb.MsgPosition{},
|
|
endPos: &internalpb.MsgPosition{},
|
|
})
|
|
s.Assert().Nil(err)
|
|
|
|
req := &datapb.ResendSegmentStatsRequest{
|
|
Base: &commonpb.MsgBase{},
|
|
}
|
|
|
|
wg := sync.WaitGroup{}
|
|
wg.Add(2)
|
|
|
|
resp, err := s.node.ResendSegmentStats(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
s.Assert().ElementsMatch([]UniqueID{0, 1, 2}, resp.GetSegResent())
|
|
|
|
// Duplicate call.
|
|
resp, err = s.node.ResendSegmentStats(s.ctx, req)
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
s.Assert().ElementsMatch([]UniqueID{0, 1, 2}, resp.GetSegResent())
|
|
}
|