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

[filestore] Allow 4G+ throttle values (#13454) #13739

Open
wants to merge 1 commit into
base: stream-nb-24-3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ydb/core/protos/blockstore_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ message TVolumeConfig {
optional uint32 StorageMediaKind = 13;

// Performance profile fields, used for correct bs group allocation and iops/bandwidth throttling
optional uint32 PerformanceProfileMaxReadBandwidth = 14;
optional uint64 PerformanceProfileMaxReadBandwidth = 14;
/* optional uint32 PerformanceProfileMaxBurstBandwidth = 15; obsolete */
optional uint32 PerformanceProfileMaxPostponedWeight = 16;
optional bool PerformanceProfileThrottlingEnabled = 17;
Expand All @@ -62,7 +62,7 @@ message TVolumeConfig {
optional uint32 PerformanceProfileBoostTime = 20;
optional uint32 PerformanceProfileBoostRefillTime = 21;
optional uint32 PerformanceProfileBoostPercentage = 22;
optional uint32 PerformanceProfileMaxWriteBandwidth = 23;
optional uint64 PerformanceProfileMaxWriteBandwidth = 23;
optional uint32 PerformanceProfileMaxWriteIops = 24;
optional uint32 PerformanceProfileBurstPercentage = 25;

Expand Down
4 changes: 2 additions & 2 deletions ydb/core/protos/filestore_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ message TConfig {

optional uint32 StorageMediaKind = 32;

optional uint32 PerformanceProfileMaxReadBandwidth = 33;
optional uint64 PerformanceProfileMaxReadBandwidth = 33;
optional uint32 PerformanceProfileMaxReadIops = 34;
optional uint32 PerformanceProfileMaxWriteBandwidth = 35;
optional uint64 PerformanceProfileMaxWriteBandwidth = 35;
optional uint32 PerformanceProfileMaxWriteIops = 36;
optional uint32 PerformanceProfileBoostTime = 37;
optional uint32 PerformanceProfileBoostRefillTime = 38;
Expand Down
Loading