mirror of https://github.com/milvus-io/milvus.git
fix: Rectify delete buffer row count quota value (#37060)
Related to #37057 Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/37069/head
parent
3b024f9b36
commit
30121a5a0d
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue