RKUpdate metrics changes.

This commit is contained in:
neethuhaneesha 2024-05-21 11:55:16 -07:00
parent 4bda00ab9c
commit 8de8dd4281
1 changed files with 4 additions and 3 deletions

View File

@ -871,8 +871,8 @@ void Ratekeeper::updateRate(RatekeeperLimits* limits) {
int64_t minFreeSpace = std::max(SERVER_KNOBS->MIN_AVAILABLE_SPACE,
(int64_t)(SERVER_KNOBS->MIN_AVAILABLE_SPACE_RATIO * ss.getSmoothTotalSpace()));
worstFreeSpaceStorageServer =
std::min(worstFreeSpaceStorageServer, (int64_t)ss.getSmoothFreeSpace() - minFreeSpace);
worstFreeSpaceStorageServer = std::min(worstFreeSpaceStorageServer,
std::max((int64_t)ss.getSmoothFreeSpace() - minFreeSpace, (int64_t)0));
int64_t springBytes = std::max<int64_t>(
1, std::min<int64_t>(limits->storageSpringBytes, (ss.getSmoothFreeSpace() - minFreeSpace) * 0.2));
@ -1257,7 +1257,8 @@ void Ratekeeper::updateRate(RatekeeperLimits* limits) {
int64_t minFreeSpace = std::max(SERVER_KNOBS->MIN_AVAILABLE_SPACE,
(int64_t)(SERVER_KNOBS->MIN_AVAILABLE_SPACE_RATIO * tl.getSmoothTotalSpace()));
worstFreeSpaceTLog = std::min(worstFreeSpaceTLog, (int64_t)tl.getSmoothFreeSpace() - minFreeSpace);
worstFreeSpaceTLog =
std::min(worstFreeSpaceTLog, std::max((int64_t)tl.getSmoothFreeSpace() - minFreeSpace, (int64_t)0));
int64_t springBytes = std::max<int64_t>(
1, std::min<int64_t>(limits->logSpringBytes, (tl.getSmoothFreeSpace() - minFreeSpace) * 0.2));