mirror of https://github.com/milvus-io/milvus.git
enhance: Remove current stats after RollStats action (#30391)
See also #27675 BloomFilterSet.current shall be reset after RollStats, otherwise it will keep tracking whole segment data causing the false positive ratio larger than expected. Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/30277/head
parent
5cf9bb236e
commit
b5e078c4d3
|
@ -96,6 +96,7 @@ func (bfs *BloomFilterSet) Roll(newStats ...*storage.PrimaryKeyStats) {
|
|||
MinPK: stats.MinPk,
|
||||
}
|
||||
})...)
|
||||
bfs.current = nil
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue