mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 20:39:36 +08:00
bfae6b49af
Signed-off-by: wayblink <anyang.wang@zilliz.com>
162 lines
4.5 KiB
Go
162 lines
4.5 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"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
)
|
|
|
|
func TestTimetickManagerNormal(t *testing.T) {
|
|
ctx := context.Background()
|
|
manager := newTimeTickManager(&DataCoordFactory{}, 0)
|
|
|
|
channelName1 := "channel1"
|
|
ts := uint64(time.Now().Unix())
|
|
var segmentID1 int64 = 28257
|
|
var segmentID2 int64 = 28258
|
|
segmentStats := []*commonpb.SegmentStats{
|
|
{
|
|
SegmentID: segmentID1,
|
|
NumRows: 100,
|
|
},
|
|
}
|
|
// update first time
|
|
manager.update(channelName1, ts, segmentStats)
|
|
|
|
channel1SegmentStates, channelSegmentStatesExist := manager.channelStatesCaches[channelName1]
|
|
assert.Equal(t, true, channelSegmentStatesExist)
|
|
segmentState1, segmentState1Exist := channel1SegmentStates.data[ts]
|
|
assert.Equal(t, segmentStats[0], segmentState1[0])
|
|
assert.Equal(t, true, segmentState1Exist)
|
|
|
|
// update second time
|
|
segmentStats2 := []*commonpb.SegmentStats{
|
|
{
|
|
SegmentID: segmentID1,
|
|
NumRows: 10000,
|
|
},
|
|
{
|
|
SegmentID: segmentID2,
|
|
NumRows: 33333,
|
|
},
|
|
}
|
|
ts2 := uint64(time.Now().Unix())
|
|
manager.update(channelName1, ts2, segmentStats2)
|
|
|
|
channelSegmentStates, channelSegmentStatesExist := manager.channelStatesCaches[channelName1]
|
|
assert.Equal(t, true, channelSegmentStatesExist)
|
|
|
|
segmentStates, segmentStatesExist := channelSegmentStates.data[ts2]
|
|
assert.Equal(t, segmentStats2[0], segmentStates[0])
|
|
assert.Equal(t, segmentStats2[1], segmentStates[1])
|
|
assert.Equal(t, true, segmentStatesExist)
|
|
|
|
var segmentID3 int64 = 28259
|
|
var segmentID4 int64 = 28260
|
|
channelName2 := "channel2"
|
|
ts3 := uint64(time.Now().Unix())
|
|
segmentStats3 := []*commonpb.SegmentStats{
|
|
{
|
|
SegmentID: segmentID3,
|
|
NumRows: 1000000,
|
|
},
|
|
{
|
|
SegmentID: segmentID4,
|
|
NumRows: 3333300,
|
|
},
|
|
}
|
|
manager.update(channelName2, ts3, segmentStats3)
|
|
|
|
err := manager.sendReport(ctx, 100)
|
|
assert.NoError(t, err)
|
|
|
|
_, channelExistAfterSubmit := manager.channelStatesCaches[channelName1]
|
|
assert.Equal(t, false, channelExistAfterSubmit)
|
|
|
|
_, channelSegmentStatesExistAfterSubmit := manager.channelStatesCaches[channelName1]
|
|
assert.Equal(t, false, channelSegmentStatesExistAfterSubmit)
|
|
|
|
var segmentID5 int64 = 28261
|
|
var segmentID6 int64 = 28262
|
|
channelName3 := "channel3"
|
|
ts4 := uint64(time.Now().Unix())
|
|
segmentStats4 := []*commonpb.SegmentStats{
|
|
{
|
|
SegmentID: segmentID5,
|
|
NumRows: 1000000,
|
|
},
|
|
{
|
|
SegmentID: segmentID6,
|
|
NumRows: 3333300,
|
|
},
|
|
}
|
|
manager.update(channelName3, ts4, segmentStats4)
|
|
|
|
err = manager.sendReport(ctx, 100)
|
|
assert.NoError(t, err)
|
|
|
|
_, channelExistAfterSubmit2 := manager.channelStatesCaches[channelName1]
|
|
assert.Equal(t, false, channelExistAfterSubmit2)
|
|
|
|
_, channelSegmentStatesExistAfterSubmit2 := manager.channelStatesCaches[channelName1]
|
|
assert.Equal(t, false, channelSegmentStatesExistAfterSubmit2)
|
|
}
|
|
|
|
func TestTimetickManagerSendErr(t *testing.T) {
|
|
ctx := context.Background()
|
|
manager := newTimeTickManager(&DataCoordFactory{ReportDataNodeTtMsgsError: true}, 0)
|
|
|
|
channelName1 := "channel1"
|
|
ts := uint64(time.Now().Unix())
|
|
var segmentID1 int64 = 28257
|
|
segmentStats := []*commonpb.SegmentStats{
|
|
{
|
|
SegmentID: segmentID1,
|
|
NumRows: 100,
|
|
},
|
|
}
|
|
// update first time
|
|
manager.update(channelName1, ts, segmentStats)
|
|
err := manager.sendReport(ctx, 100)
|
|
assert.Error(t, err)
|
|
}
|
|
|
|
func TestTimetickManagerSendNotSuccess(t *testing.T) {
|
|
ctx := context.Background()
|
|
manager := newTimeTickManager(&DataCoordFactory{ReportDataNodeTtMsgsNotSuccess: true}, 0)
|
|
|
|
channelName1 := "channel1"
|
|
ts := uint64(time.Now().Unix())
|
|
var segmentID1 int64 = 28257
|
|
segmentStats := []*commonpb.SegmentStats{
|
|
{
|
|
SegmentID: segmentID1,
|
|
NumRows: 100,
|
|
},
|
|
}
|
|
// update first time
|
|
manager.update(channelName1, ts, segmentStats)
|
|
err := manager.sendReport(ctx, 100)
|
|
assert.Error(t, err)
|
|
}
|