You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
asim: refactor the code to use rebalancing snapshot rate
Previously, asim used ReplicaAddRate for SimulationSettings, which was an
artificial approximation and differed from the real cluster behaviour with
snapshot-based calculation. This patch refactors it to use the actual snapshot
rate instead. There is no behavioral change, since SnapshotRate = AddRate /
(1024*1024). So
(RangeSize/(1024*1024))/(AddRate)=RangeSize/(1024*1024*AddRate)=RangeSize/SnapshotRate.
NB: there's an existing bug here; the calculation is missing a final
multiplication by time.Second, and snapshot rate is defined per second. A future
commit will address this.
Epic: none
Release note: none
0 commit comments