mirror of https://github.com/milvus-io/milvus.git
fix: Print number of pks instead of delete pk val (#29653)
See also #29445 Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/29674/head
parent
6bf46c6fac
commit
cf228c2f1c
|
@ -169,7 +169,9 @@ func (dn *deleteNode) Operate(in []Msg) []Msg {
|
|||
}
|
||||
|
||||
func (dn *deleteNode) bufferDeleteMsg(msg *msgstream.DeleteMsg, tr TimeRange, startPos, endPos *msgpb.MsgPosition) ([]UniqueID, error) {
|
||||
log.Debug("bufferDeleteMsg", zap.Any("primary keys", msg.PrimaryKeys), zap.String("vChannelName", dn.channelName))
|
||||
log.Debug("bufferDeleteMsg",
|
||||
zap.Int("pkNum", typeutil.GetSizeOfIDs(msg.GetPrimaryKeys())),
|
||||
zap.String("vChannelName", dn.channelName))
|
||||
|
||||
primaryKeys := storage.ParseIDs2PrimaryKeys(msg.PrimaryKeys)
|
||||
segIDToPks, segIDToTss := dn.filterSegmentByPK(msg.PartitionID, primaryKeys, msg.Timestamps)
|
||||
|
|
Loading…
Reference in New Issue