From 30121a5a0dffe407f8d143e572555c345f479c50 Mon Sep 17 00:00:00 2001 From: congqixia Date: Wed, 23 Oct 2024 10:15:29 +0800 Subject: [PATCH] fix: Rectify delete buffer row count quota value (#37060) Related to #37057 Signed-off-by: Congqi Xia --- internal/rootcoord/quota_center.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/rootcoord/quota_center.go b/internal/rootcoord/quota_center.go index dfb379a685..70d239f531 100644 --- a/internal/rootcoord/quota_center.go +++ b/internal/rootcoord/quota_center.go @@ -1060,9 +1060,6 @@ func (q *QuotaCenter) getDeleteBufferRowCountFactor() map[int64]float64 { for collectionID, num := range queryNodeMetrics.DeleteBufferInfo.CollectionDeleteBufferNum { deleteBufferNum[collectionID] += num } - for collectionID, size := range queryNodeMetrics.DeleteBufferInfo.CollectionDeleteBufferSize { - deleteBufferNum[collectionID] += size - } } collectionFactor := make(map[int64]float64)