mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
Add more specific logs (#11724)
Signed-off-by: yangxuan <xuan.yang@zilliz.com>
This commit is contained in:
parent
4d58ff2df7
commit
f3852c1db0
@ -168,12 +168,17 @@ func (dsService *dataSyncService) initNodes(vchanInfo *datapb.VchannelInfo) erro
|
||||
Position: pack.pos,
|
||||
})
|
||||
|
||||
startPos := dsService.replica.listNewSegmentsStartPositions()
|
||||
|
||||
log.Debug("SaveBinlogPath",
|
||||
zap.Int64("SegmentID", pack.segmentID),
|
||||
zap.Int64("CollectionID", dsService.collectionID),
|
||||
zap.Bool("IsFlushed", pack.flushed),
|
||||
zap.Bool("IsDropped", pack.dropped),
|
||||
zap.Int("Length of Field2BinlogPaths", len(fieldInsert)),
|
||||
zap.Int("Length of Field2Stats", len(fieldStats)),
|
||||
zap.Int("Length of Field2Deltalogs", len(deltaInfos)),
|
||||
zap.Any("Listed start positions", startPos),
|
||||
)
|
||||
|
||||
req := &datapb.SaveBinlogPathsRequest{
|
||||
@ -190,13 +195,14 @@ func (dsService *dataSyncService) initNodes(vchanInfo *datapb.VchannelInfo) erro
|
||||
Deltalogs: deltaInfos,
|
||||
|
||||
CheckPoints: checkPoints,
|
||||
StartPositions: startPos,
|
||||
|
||||
StartPositions: dsService.replica.listNewSegmentsStartPositions(),
|
||||
Flushed: pack.flushed,
|
||||
Dropped: pack.dropped,
|
||||
}
|
||||
rsp, err := dsService.dataCoord.SaveBinlogPaths(context.Background(), req)
|
||||
if err != nil {
|
||||
log.Warn(err.Error())
|
||||
return fmt.Errorf(err.Error())
|
||||
}
|
||||
if rsp.ErrorCode != commonpb.ErrorCode_Success {
|
||||
|
@ -58,6 +58,7 @@ type ddNode struct {
|
||||
|
||||
segID2SegInfo sync.Map // segment ID to *SegmentInfo
|
||||
flushedSegments []*datapb.SegmentInfo
|
||||
vchannelName string
|
||||
|
||||
deltaMsgStream msgstream.MsgStream
|
||||
dropMode atomic.Value
|
||||
@ -91,7 +92,9 @@ func (ddn *ddNode) Operate(in []Msg) []Msg {
|
||||
}
|
||||
|
||||
if load := ddn.dropMode.Load(); load != nil && load.(bool) {
|
||||
log.Debug("ddNode in dropMode")
|
||||
log.Debug("ddNode in dropMode",
|
||||
zap.String("vchannel name", ddn.vchannelName),
|
||||
zap.Int64("collection ID", ddn.collectionID))
|
||||
return []Msg{}
|
||||
}
|
||||
|
||||
@ -274,6 +277,7 @@ func newDDNode(ctx context.Context, collID UniqueID, vchanInfo *datapb.VchannelI
|
||||
BaseNode: baseNode,
|
||||
collectionID: collID,
|
||||
flushedSegments: fs,
|
||||
vchannelName: vchanInfo.ChannelName,
|
||||
deltaMsgStream: deltaMsgStream,
|
||||
}
|
||||
|
||||
|
@ -279,9 +279,7 @@ func (ibNode *insertBufferNode) Operate(in []Msg) []Msg {
|
||||
dropped: true,
|
||||
})
|
||||
}
|
||||
goto flush // Jump over the auto-flush and manual flush procedure
|
||||
}
|
||||
|
||||
} else {
|
||||
segmentsToFlush = make([]UniqueID, 0, len(seg2Upload)+1) //auto flush number + possible manual flush
|
||||
flushTaskList = make([]flushTask, 0, len(seg2Upload)+1)
|
||||
|
||||
@ -335,8 +333,8 @@ func (ibNode *insertBufferNode) Operate(in []Msg) []Msg {
|
||||
}
|
||||
default:
|
||||
}
|
||||
}
|
||||
|
||||
flush:
|
||||
for _, task := range flushTaskList {
|
||||
err := ibNode.flushManager.flushBufferData(task.buffer, task.segmentID, task.flushed, task.dropped, endPositions[0])
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user