mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
447a15207e
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
136 lines
3.6 KiB
Go
136 lines
3.6 KiB
Go
package querynode
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/log"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
)
|
|
|
|
type insertNode struct {
|
|
baseNode
|
|
replica collectionReplica
|
|
}
|
|
|
|
type InsertData struct {
|
|
insertContext map[int64]context.Context
|
|
insertIDs map[UniqueID][]UniqueID
|
|
insertTimestamps map[UniqueID][]Timestamp
|
|
insertRecords map[UniqueID][]*commonpb.Blob
|
|
insertOffset map[UniqueID]int64
|
|
}
|
|
|
|
func (iNode *insertNode) Name() string {
|
|
return "iNode"
|
|
}
|
|
|
|
func (iNode *insertNode) Operate(ctx context.Context, in []Msg) ([]Msg, context.Context) {
|
|
//log.Debug("Do insertNode operation")
|
|
|
|
if len(in) != 1 {
|
|
log.Error("Invalid operate message input in insertNode", zap.Int("input length", len(in)))
|
|
// TODO: add error handling
|
|
}
|
|
|
|
iMsg, ok := in[0].(*insertMsg)
|
|
if !ok {
|
|
log.Error("type assertion failed for insertMsg")
|
|
// TODO: add error handling
|
|
}
|
|
|
|
insertData := InsertData{
|
|
insertIDs: make(map[int64][]int64),
|
|
insertTimestamps: make(map[int64][]uint64),
|
|
insertRecords: make(map[int64][]*commonpb.Blob),
|
|
insertOffset: make(map[int64]int64),
|
|
}
|
|
|
|
// 1. hash insertMessages to insertData
|
|
for _, task := range iMsg.insertMessages {
|
|
insertData.insertIDs[task.SegmentID] = append(insertData.insertIDs[task.SegmentID], task.RowIDs...)
|
|
insertData.insertTimestamps[task.SegmentID] = append(insertData.insertTimestamps[task.SegmentID], task.Timestamps...)
|
|
insertData.insertRecords[task.SegmentID] = append(insertData.insertRecords[task.SegmentID], task.RowData...)
|
|
|
|
// check if segment exists, if not, create this segment
|
|
if !iNode.replica.hasSegment(task.SegmentID) {
|
|
err := iNode.replica.addSegment(task.SegmentID, task.PartitionID, task.CollectionID, segTypeGrowing)
|
|
if err != nil {
|
|
log.Error(err.Error())
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// 2. do preInsert
|
|
for segmentID := range insertData.insertRecords {
|
|
var targetSegment, err = iNode.replica.getSegmentByID(segmentID)
|
|
if err != nil {
|
|
log.Error("preInsert failed")
|
|
// TODO: add error handling
|
|
}
|
|
|
|
var numOfRecords = len(insertData.insertRecords[segmentID])
|
|
if targetSegment != nil {
|
|
var offset = targetSegment.segmentPreInsert(numOfRecords)
|
|
insertData.insertOffset[segmentID] = offset
|
|
}
|
|
}
|
|
|
|
// 3. do insert
|
|
wg := sync.WaitGroup{}
|
|
for segmentID := range insertData.insertRecords {
|
|
wg.Add(1)
|
|
go iNode.insert(&insertData, segmentID, &wg)
|
|
}
|
|
wg.Wait()
|
|
|
|
var res Msg = &serviceTimeMsg{
|
|
gcRecord: iMsg.gcRecord,
|
|
timeRange: iMsg.timeRange,
|
|
}
|
|
return []Msg{res}, ctx
|
|
}
|
|
|
|
func (iNode *insertNode) insert(insertData *InsertData, segmentID int64, wg *sync.WaitGroup) {
|
|
var targetSegment, err = iNode.replica.getSegmentByID(segmentID)
|
|
if err != nil {
|
|
log.Error("cannot find segment:", zap.Int64("segmentID", segmentID))
|
|
// TODO: add error handling
|
|
wg.Done()
|
|
return
|
|
}
|
|
|
|
ids := insertData.insertIDs[segmentID]
|
|
timestamps := insertData.insertTimestamps[segmentID]
|
|
records := insertData.insertRecords[segmentID]
|
|
offsets := insertData.insertOffset[segmentID]
|
|
|
|
err = targetSegment.segmentInsert(offsets, &ids, ×tamps, &records)
|
|
if err != nil {
|
|
log.Error(err.Error())
|
|
// TODO: add error handling
|
|
wg.Done()
|
|
return
|
|
}
|
|
|
|
log.Debug("Do insert done", zap.Int("len", len(insertData.insertIDs[segmentID])))
|
|
wg.Done()
|
|
}
|
|
|
|
func newInsertNode(replica collectionReplica) *insertNode {
|
|
maxQueueLength := Params.FlowGraphMaxQueueLength
|
|
maxParallelism := Params.FlowGraphMaxParallelism
|
|
|
|
baseNode := baseNode{}
|
|
baseNode.SetMaxQueueLength(maxQueueLength)
|
|
baseNode.SetMaxParallelism(maxParallelism)
|
|
|
|
return &insertNode{
|
|
baseNode: baseNode,
|
|
replica: replica,
|
|
}
|
|
}
|