fix: [2.4] Rectify delete buffer row count quota value (#37060) (#37068)

Cherry pick from master
pr: #37060

Related to #37057

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
pull/36423/head
congqixia 2024-10-23 14:13:28 +08:00 committed by GitHub
parent 7eba3aa67e
commit b958c56f48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 3 deletions

View File

@ -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)