Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the default value of max-io-mb to 0 (unlimited) #1713

Merged
merged 1 commit into from
Aug 30, 2023

Conversation

enjoy-binbin
Copy link
Member

@enjoy-binbin enjoy-binbin commented Aug 30, 2023

For now, the max-io-mb is 500MiB which may be too low for fast devices
like NVMe SSD, so it'd be better to set the io bandwidth to unlimited by default.

This closes #1711.

don't squash me (don't squash the below message)

i did a local test:

./build/kvrocks
redis-cli -p 6666 config get max-io-mb
1) "max-io-mb"
2) "0"

./build/kvrocks -c kvrocks.conf
redis-cli -p 6666 config get max-io-mb
1) "max-io-mb"
2) "0"

and note that we actually have a another default value:

const int64_t kIORateLimitMaxMb = 1024000;

void Storage::SetIORateLimit(int64_t max_io_mb) {
  if (max_io_mb == 0) {
    max_io_mb = kIORateLimitMaxMb;
  }
  rate_limiter_->SetBytesPerSecond(max_io_mb * static_cast<int64_t>(MiB));
}

Copy link
Contributor

@torwig torwig left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@enjoy-binbin enjoy-binbin requested a review from git-hulk August 30, 2023 08:28
@git-hulk
Copy link
Member

Thank you!

@enjoy-binbin enjoy-binbin merged commit 9a79dd0 into apache:unstable Aug 30, 2023
@enjoy-binbin enjoy-binbin deleted the max-io-mb branch August 30, 2023 12:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Change the default value of max-io-mb to 0(unlimited)
4 participants