diff options
author | sharpeye <sharpeye@yandex-team.ru> | 2022-04-18 18:40:18 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-04-18 18:40:18 +0300 |
commit | 10b7298d75e2da1ce3c8abdbfe76b57b15eefb0d (patch) | |
tree | b72fe9e59316af941aafc4d045bf495bd96d8362 | |
parent | eb2ade2862bd6f3f539198942ca9dbf66d41ad85 (diff) | |
download | ydb-10b7298d75e2da1ce3c8abdbfe76b57b15eefb0d.tar.gz |
[NBS] merge to stable 22-2
NBS-2994: remove NonReplicatedIOFadingDuration
REVIEW: 2436525
NBS-3174: mute E_IO
REVIEW: 2435680
NBS-3088: implement QueryAvailableStorage
REVIEW: 2429703
NBS-3088: rename StorageNodes to AgentIds
REVIEW: 2432457
NBS-2833: new params for DM/CreateDisk
REVIEW: 2428492
NBS-2833: tweak config
REVIEW: 2428316
NBS-2833: forward parameters from CLI to DR
REVIEW: 2427829
NBS-2833: fix allocation on target
REVIEW: 2426618
[NBS] tweak allocation errors handing
REVIEW: 2426249
NBS-2833: show storage pool name on mon pages
REVIEW: 2425366
NBS-2833: specify constraints for AllocateDisk (nodes, pool tag)
REVIEW: 2390736
more tests for rack ranking [fix]; NBS-3082
REVIEW: 2325078
more tests for rack ranking; NBS-3082
REVIEW: 2324675
[NBS] add STORAGE_MEDIA_SSD_LOCAL
add STORAGE_MEDIA_SSD_LOCAL
REVIEW: 2387176
NBS-3088: QueryAvailableStorage method
REVIEW: 2323678
REVIEW: 2437421
x-ydb-stable-ref: 56fe522659dafb0b193acea558893e87d6c3f129
-rw-r--r-- | ydb/core/protos/blockstore_config.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ydb/core/protos/blockstore_config.proto b/ydb/core/protos/blockstore_config.proto index 5cba383bfd..435a308017 100644 --- a/ydb/core/protos/blockstore_config.proto +++ b/ydb/core/protos/blockstore_config.proto @@ -99,6 +99,12 @@ message TVolumeConfig { // Channel descriptions for volume tablets repeated TChannelProfile VolumeExplicitChannelProfiles = 41; + + // Storage pool name (e.g. local:ssd), allowed only for nonreplicated volumes. + optional string StoragePoolName = 42; + + // List of agents to allocate disk, allowed only for nonreplicated volumes. + repeated string AgentIds = 43; } message TUpdateVolumeConfig { |