diff options
author | andrewproni <andrewproni@yandex-team.com> | 2023-08-28 16:04:22 +0300 |
---|---|---|
committer | andrewproni <andrewproni@yandex-team.com> | 2023-08-28 17:07:47 +0300 |
commit | a1bbdb3d1b2fbe4d9fd2bdf1ab243b0d8e02379b (patch) | |
tree | ff4c1136651c2331741ab318913041952494e34d | |
parent | 5462cc6a10db1479840dc940f1ff0099fa3a8dcf (diff) | |
download | ydb-a1bbdb3d1b2fbe4d9fd2bdf1ab243b0d8e02379b.tar.gz |
KIKIMR-19038: proto config for QueryService
-rw-r--r-- | ydb/core/protos/config.proto | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ydb/core/protos/config.proto b/ydb/core/protos/config.proto index ca7118320f0..6871f2d54d7 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -28,6 +28,7 @@ import "ydb/core/protos/key.proto"; import "ydb/core/protos/alloc.proto"; import "ydb/core/protos/node_limits.proto"; import "ydb/core/fq/libs/config/protos/fq_config.proto"; +import "ydb/library/yql/providers/common/proto/gateways_config.proto"; package NKikimrConfig; option java_package = "ru.yandex.kikimr.proto"; @@ -1380,6 +1381,18 @@ message TTableServiceConfig { optional EChannelTransportVersion ChannelTransportVersion = 46 [default = CTV_OOB_PICKLE_1_0]; }; +message TQueryServiceConfig { + optional uint64 ScriptOperationTimeoutDefaultSeconds = 1; + optional uint64 ScriptForgetAfterDefaultSeconds = 2; // 0 = infinity + optional uint64 ScriptResultsTtlDefaultSeconds = 3; // 0 = infinity + optional uint64 ScriptResultSizeLimit = 4; // 0 = infinity + optional uint64 ScriptResultRowsLimit = 5; // 0 = infinity + + optional NYql.TS3GatewayConfig S3 = 6; + optional NYql.THttpGatewayConfig HttpGateway = 7; + optional NYql.TGenericConnectorConfig Connector = 8; +} + // Config describes immediate controls and allows // to manage their values (not variety and limits) // via CMS. All fields should be either [u]int64 or @@ -2000,6 +2013,7 @@ message TAppConfig { optional TAwsCompatibilityConfig AwsCompatibilityConfig = 70; optional TKafkaProxyConfig KafkaProxyConfig = 71; optional TConveyorConfig CompConveyorConfig = 72; + optional TQueryServiceConfig QueryServiceConfig = 73; repeated TNamedConfig NamedConfigs = 100; optional string ClusterYamlConfig = 101; |