fix: Rectify delete buffer row count quota value (#37060)

Related to #37057

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
pull/37069/head
congqixia 2024-10-23 10:15:29 +08:00 committed by GitHub
parent 3b024f9b36
commit 30121a5a0d
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)