Skip to content

Commit

Permalink
[filestore] Allow 4G+ throttle values (#13454) (#13738)
Browse files Browse the repository at this point in the history
  • Loading branch information
proller authored Jan 29, 2025
1 parent a1e2575 commit c1b8015
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ydb/core/protos/blockstore_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,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 @@ -69,7 +69,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

0 comments on commit c1b8015

Please sign in to comment.