diff options
author | drbasic <[email protected]> | 2023-02-16 13:29:17 +0300 |
---|---|---|
committer | drbasic <[email protected]> | 2023-02-16 13:29:17 +0300 |
commit | 61239a868c9b1e58172ca90cd8b78fbe8d279695 (patch) | |
tree | d48130b55fb72ce20a2fd308dbdcb63e05e3d5f9 | |
parent | 1147111f58eb766b5c013fa5f4aecf55427a86a9 (diff) |
Change API for partition placement group (YDB part)
-rw-r--r-- | ydb/core/protos/blockstore_config.proto | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ydb/core/protos/blockstore_config.proto b/ydb/core/protos/blockstore_config.proto index 2e4850da906..26fda533d32 100644 --- a/ydb/core/protos/blockstore_config.proto +++ b/ydb/core/protos/blockstore_config.proto @@ -116,11 +116,14 @@ message TVolumeConfig { // Encryption description. optional TEncryptionDesc EncryptionDesc = 44; - // Placement partition id. + // Placement partition id. Deprecated. optional string PlacementPartitionId = 45; // Tablet id of base disk. optional uint64 BaseDiskTabletId = 46; + + // Placement partition index. + optional uint32 PlacementPartitionIndex = 47; } message TUpdateVolumeConfig { |