File tree Expand file tree Collapse file tree 4 files changed +26
-0
lines changed Expand file tree Collapse file tree 4 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ import "ydb/core/protos/table_service_config.proto";
35
35
import "ydb/core/protos/tablet.proto" ;
36
36
import "ydb/core/protos/tenant_pool.proto" ;
37
37
import "ydb/core/protos/tenant_slot_broker.proto" ;
38
+ import "ydb/core/protos/nbs/blockstore.proto" ;
38
39
import "ydb/library/actors/protos/interconnect.proto" ;
39
40
import "yql/essentials/core/file_storage/proto/file_storage.proto" ;
40
41
import "yql/essentials/providers/common/proto/gateways_config.proto" ;
@@ -2367,6 +2368,7 @@ message TAppConfig {
2367
2368
optional TDataErasureConfig DataErasureConfig = 88 ;
2368
2369
optional THealthCheckConfig HealthCheckConfig = 89 ;
2369
2370
optional TGroupedMemoryLimiterConfig CompGroupedMemoryLimiterConfig = 92 ;
2371
+ optional TBlockstoreConfig BlockstoreConfig = 93 ;
2370
2372
2371
2373
repeated TNamedConfig NamedConfigs = 100 ;
2372
2374
optional string ClusterYamlConfig = 101 ;
Original file line number Diff line number Diff line change
1
+ package NKikimrConfig ;
2
+
3
+ // This is a message that is used for config overrides in Console for https://github.com/ydb-platform/nbs, where it's not empty
4
+ message TBlockstoreConfig {}
Original file line number Diff line number Diff line change
1
+ PROTO_LIBRARY()
2
+
3
+ SET(PROTOC_TRANSITIVE_HEADERS "no")
4
+
5
+ GRPC()
6
+
7
+ IF (OS_WINDOWS)
8
+ NO_OPTIMIZE_PY_PROTOS()
9
+ ENDIF()
10
+
11
+ SRCS(
12
+ blockstore.proto
13
+ )
14
+
15
+ CPP_PROTO_PLUGIN0(config_proto_plugin ydb/core/config/tools/protobuf_plugin)
16
+
17
+ EXCLUDE_TAGS(GO_PROTO)
18
+
19
+ END()
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ GENERATE_ENUM_SERIALIZATION(shared_cache.pb.h)
163
163
PEERDIR(
164
164
ydb/core/config/protos
165
165
ydb/core/fq/libs/config/protos
166
+ ydb/core/protos/nbs
166
167
ydb/core/protos/schemeshard
167
168
ydb/core/scheme/protos
168
169
ydb/core/tx/columnshard/common/protos
You can’t perform that action at this time.
0 commit comments