Skip to content

Commit 3483aed

Browse files
committed
Sync api protos
1 parent 6bf7488 commit 3483aed

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

src/api/protos/draft/ydb_logstore.proto

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ message Tier {
6060
Ydb.Table.TtlSettings eviction = 2; // When to evict data to the next tier (or remove if none)
6161
}
6262

63-
message TieringSettings {
64-
optional string tiering_id = 2;
65-
}
66-
6763
message CreateLogStoreRequest {
6864
Ydb.Operations.OperationParams operation_params = 1;
6965

@@ -135,8 +131,8 @@ message CreateLogTableRequest {
135131
};
136132
oneof ttl_specification {
137133
Ydb.Table.TtlSettings ttl_settings = 5;
138-
TieringSettings tiering_settings = 6;
139134
};
135+
reserved 6;
140136

141137
// Specifies the desired number of ColumnShards for this table
142138
uint32 shards_count = 7;
@@ -160,9 +156,9 @@ message DescribeLogTableResult {
160156

161157
string schema_preset_name = 2;
162158
Schema schema = 3;
159+
reserved 4;
163160
oneof ttl_specification {
164161
Ydb.Table.TtlSettings ttl_settings = 5;
165-
TieringSettings tiering_settings = 4;
166162
}
167163

168164
// Specifies the desired number of ColumnShards for this table
@@ -195,9 +191,9 @@ message AlterLogTableRequest {
195191
oneof ttl_action {
196192
google.protobuf.Empty drop_ttl_settings = 3;
197193
Ydb.Table.TtlSettings set_ttl_settings = 4;
198-
TieringSettings set_tiering_settings = 5;
199194
google.protobuf.Empty drop_tiering_settings = 6;
200195
}
196+
reserved 5;
201197
}
202198

203199
message AlterLogTableResponse {

src/api/protos/ydb_table.proto

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -667,8 +667,7 @@ message CreateTableRequest {
667667
Ydb.FeatureFlag.Status key_bloom_filter = 16;
668668
// Read replicas settings for table
669669
ReadReplicasSettings read_replicas_settings = 17;
670-
// Tiering rules name. It specifies how data migrates from one tier (logical storage) to another.
671-
string tiering = 18;
670+
reserved 18;
672671
// Is temporary table
673672
bool temporary = 19;
674673
// Is table column or row oriented
@@ -747,11 +746,7 @@ message AlterTableRequest {
747746
repeated string drop_changefeeds = 20;
748747
// Rename existed index
749748
repeated RenameIndexItem rename_indexes = 21;
750-
// Setup or remove tiering
751-
oneof tiering_action {
752-
string set_tiering = 22;
753-
google.protobuf.Empty drop_tiering = 23;
754-
}
749+
reserved 22, 23;
755750
}
756751

757752
message AlterTableResponse {

0 commit comments

Comments
 (0)