Skip to content

Commit c1b8015

Browse files
authored
[filestore] Allow 4G+ throttle values (#13454) (#13738)
1 parent a1e2575 commit c1b8015

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ydb/core/protos/blockstore_config.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ message TVolumeConfig {
6060
optional uint32 StorageMediaKind = 13;
6161

6262
// Performance profile fields, used for correct bs group allocation and iops/bandwidth throttling
63-
optional uint32 PerformanceProfileMaxReadBandwidth = 14;
63+
optional uint64 PerformanceProfileMaxReadBandwidth = 14;
6464
/* optional uint32 PerformanceProfileMaxBurstBandwidth = 15; obsolete */
6565
optional uint32 PerformanceProfileMaxPostponedWeight = 16;
6666
optional bool PerformanceProfileThrottlingEnabled = 17;
@@ -69,7 +69,7 @@ message TVolumeConfig {
6969
optional uint32 PerformanceProfileBoostTime = 20;
7070
optional uint32 PerformanceProfileBoostRefillTime = 21;
7171
optional uint32 PerformanceProfileBoostPercentage = 22;
72-
optional uint32 PerformanceProfileMaxWriteBandwidth = 23;
72+
optional uint64 PerformanceProfileMaxWriteBandwidth = 23;
7373
optional uint32 PerformanceProfileMaxWriteIops = 24;
7474
optional uint32 PerformanceProfileBurstPercentage = 25;
7575

ydb/core/protos/filestore_config.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ message TConfig {
3535

3636
optional uint32 StorageMediaKind = 32;
3737

38-
optional uint32 PerformanceProfileMaxReadBandwidth = 33;
38+
optional uint64 PerformanceProfileMaxReadBandwidth = 33;
3939
optional uint32 PerformanceProfileMaxReadIops = 34;
40-
optional uint32 PerformanceProfileMaxWriteBandwidth = 35;
40+
optional uint64 PerformanceProfileMaxWriteBandwidth = 35;
4141
optional uint32 PerformanceProfileMaxWriteIops = 36;
4242
optional uint32 PerformanceProfileBoostTime = 37;
4343
optional uint32 PerformanceProfileBoostRefillTime = 38;

0 commit comments

Comments
 (0)