mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 11:29:48 +08:00
5bcb94294c
Signed-off-by: yangxuan <xuan.yang@zilliz.com>
221 lines
6.2 KiB
Go
221 lines
6.2 KiB
Go
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// Licensed 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"
|
|
"fmt"
|
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
"github.com/milvus-io/milvus/internal/msgstream"
|
|
"github.com/milvus-io/milvus/internal/proto/commonpb"
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
|
"github.com/milvus-io/milvus/internal/types"
|
|
"github.com/milvus-io/milvus/internal/util/flowgraph"
|
|
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type dataSyncService struct {
|
|
ctx context.Context
|
|
cancelFn context.CancelFunc
|
|
fg *flowgraph.TimeTickedFlowGraph
|
|
flushChan <-chan *flushMsg
|
|
replica Replica
|
|
idAllocator allocatorInterface
|
|
msFactory msgstream.Factory
|
|
collectionID UniqueID
|
|
dataService types.DataService
|
|
clearSignal chan<- UniqueID
|
|
}
|
|
|
|
func newDataSyncService(ctx context.Context,
|
|
flushChan <-chan *flushMsg,
|
|
replica Replica,
|
|
alloc allocatorInterface,
|
|
factory msgstream.Factory,
|
|
vchan *datapb.VchannelInfo,
|
|
clearSignal chan<- UniqueID,
|
|
dataService types.DataService,
|
|
|
|
) *dataSyncService {
|
|
|
|
ctx1, cancel := context.WithCancel(ctx)
|
|
|
|
service := &dataSyncService{
|
|
ctx: ctx1,
|
|
cancelFn: cancel,
|
|
fg: nil,
|
|
flushChan: flushChan,
|
|
replica: replica,
|
|
idAllocator: alloc,
|
|
msFactory: factory,
|
|
collectionID: vchan.GetCollectionID(),
|
|
dataService: dataService,
|
|
clearSignal: clearSignal,
|
|
}
|
|
|
|
service.initNodes(vchan)
|
|
return service
|
|
}
|
|
|
|
func (dsService *dataSyncService) start() {
|
|
if dsService.fg != nil {
|
|
log.Debug("Data Sync Service starting flowgraph")
|
|
dsService.fg.Start()
|
|
} else {
|
|
log.Debug("Data Sync Service flowgraph nil")
|
|
}
|
|
}
|
|
|
|
func (dsService *dataSyncService) close() {
|
|
if dsService.fg != nil {
|
|
log.Debug("Data Sync Service closing flowgraph")
|
|
dsService.fg.Close()
|
|
}
|
|
|
|
dsService.cancelFn()
|
|
}
|
|
|
|
func (dsService *dataSyncService) initNodes(vchanInfo *datapb.VchannelInfo) {
|
|
// TODO: add delete pipeline support
|
|
dsService.fg = flowgraph.NewTimeTickedFlowGraph(dsService.ctx)
|
|
|
|
m := map[string]interface{}{
|
|
"PulsarAddress": Params.PulsarAddress,
|
|
"ReceiveBufSize": 1024,
|
|
"PulsarBufSize": 1024,
|
|
}
|
|
|
|
err := dsService.msFactory.SetParams(m)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
saveBinlog := func(fu *segmentFlushUnit) error {
|
|
id2path := []*datapb.ID2PathList{}
|
|
checkPoints := []*datapb.CheckPoint{}
|
|
for k, v := range fu.field2Path {
|
|
id2path = append(id2path, &datapb.ID2PathList{ID: k, Paths: []string{v}})
|
|
}
|
|
for k, v := range fu.checkPoint {
|
|
v := v
|
|
checkPoints = append(checkPoints, &datapb.CheckPoint{
|
|
SegmentID: k,
|
|
NumOfRows: v.numRows,
|
|
Position: &v.pos,
|
|
})
|
|
}
|
|
log.Debug("SaveBinlogPath",
|
|
zap.Int64("SegmentID", fu.segID),
|
|
zap.Int64("CollectionID", fu.collID),
|
|
zap.Int("Length of Field2BinlogPaths", len(id2path)),
|
|
zap.Any("Start Positions", fu.startPositions),
|
|
)
|
|
|
|
req := &datapb.SaveBinlogPathsRequest{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: 0, //TODO msg type
|
|
MsgID: 0, //TODO msg id
|
|
Timestamp: 0, //TODO time stamp
|
|
SourceID: Params.NodeID,
|
|
},
|
|
SegmentID: fu.segID,
|
|
CollectionID: fu.collID,
|
|
Field2BinlogPaths: id2path,
|
|
CheckPoints: checkPoints,
|
|
StartPositions: fu.startPositions,
|
|
Flushed: fu.flushed,
|
|
}
|
|
rsp, err := dsService.dataService.SaveBinlogPaths(dsService.ctx, req)
|
|
if err != nil {
|
|
return fmt.Errorf(err.Error())
|
|
}
|
|
if rsp.ErrorCode != commonpb.ErrorCode_Success {
|
|
return fmt.Errorf("data service save bin log path failed, reason = %s", rsp.Reason)
|
|
}
|
|
return nil
|
|
}
|
|
var dmStreamNode Node = newDmInputNode(
|
|
dsService.ctx,
|
|
dsService.msFactory,
|
|
vchanInfo.GetChannelName(),
|
|
vchanInfo.GetSeekPosition(),
|
|
)
|
|
var ddNode Node = newDDNode(dsService.clearSignal, dsService.collectionID, vchanInfo)
|
|
var insertBufferNode Node = newInsertBufferNode(
|
|
dsService.ctx,
|
|
dsService.replica,
|
|
dsService.msFactory,
|
|
dsService.idAllocator,
|
|
dsService.flushChan,
|
|
saveBinlog,
|
|
vchanInfo.GetChannelName(),
|
|
)
|
|
|
|
// recover segment checkpoints
|
|
for _, us := range vchanInfo.GetUnflushedSegments() {
|
|
if us.CollectionID != dsService.collectionID ||
|
|
us.GetInsertChannel() != vchanInfo.ChannelName {
|
|
log.Warn("Collection ID or ChannelName not compact",
|
|
zap.Int64("Wanted ID", dsService.collectionID),
|
|
zap.Int64("Actual ID", us.CollectionID),
|
|
zap.String("Wanted Channel Name", vchanInfo.ChannelName),
|
|
zap.String("Actual Channel Name", us.GetInsertChannel()),
|
|
)
|
|
continue
|
|
}
|
|
|
|
log.Info("Recover Segment NumOfRows form checkpoints",
|
|
zap.String("InsertChannel", us.GetInsertChannel()),
|
|
zap.Int64("SegmentID", us.GetID()),
|
|
zap.Int64("NumOfRows", us.GetNumOfRows()),
|
|
)
|
|
dsService.replica.addSegment(us.GetID(), us.CollectionID, us.PartitionID, us.GetInsertChannel())
|
|
dsService.replica.updateStatistics(us.GetID(), us.GetNumOfRows())
|
|
}
|
|
|
|
dsService.fg.AddNode(dmStreamNode)
|
|
dsService.fg.AddNode(ddNode)
|
|
dsService.fg.AddNode(insertBufferNode)
|
|
|
|
// ddStreamNode
|
|
err = dsService.fg.SetEdges(dmStreamNode.Name(),
|
|
[]string{},
|
|
[]string{ddNode.Name()},
|
|
)
|
|
if err != nil {
|
|
log.Error("set edges failed in node", zap.String("name", dmStreamNode.Name()), zap.Error(err))
|
|
panic("set edges faild in the node")
|
|
}
|
|
|
|
// ddNode
|
|
err = dsService.fg.SetEdges(ddNode.Name(),
|
|
[]string{dmStreamNode.Name()},
|
|
[]string{insertBufferNode.Name()},
|
|
)
|
|
if err != nil {
|
|
log.Error("set edges failed in node", zap.String("name", ddNode.Name()), zap.Error(err))
|
|
panic("set edges faild in the node")
|
|
}
|
|
|
|
// insertBufferNode
|
|
err = dsService.fg.SetEdges(insertBufferNode.Name(),
|
|
[]string{ddNode.Name()},
|
|
[]string{},
|
|
)
|
|
if err != nil {
|
|
log.Error("set edges failed in node", zap.String("name", insertBufferNode.Name()), zap.Error(err))
|
|
panic("set edges faild in the node")
|
|
}
|
|
}
|