diff options
author | Ilnaz Nizametdinov <i.nizametdinov@gmail.com> | 2022-06-16 13:16:05 +0300 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2022-06-16 13:16:05 +0300 |
commit | 12879bbb18842b514596250835c17f0a16996eaa (patch) | |
tree | d43db24a5af5d06e392883afe75520ad1c63b9da | |
parent | 0e5158ff4589f3ab8a9295dd2ecbdefb50f1a51e (diff) | |
download | ydb-12879bbb18842b514596250835c17f0a16996eaa.tar.gz |
22-2: Enable TTL & BulkUpsert to async-indexed tables by default KIKIMR-13665, KIKIMR-13633
merge from trunk: r9316381, r9587162
REVIEW: 2640792
x-ydb-stable-ref: 11addaab825125ff89ec26aa14ac9a71a673b04e
-rw-r--r-- | ydb/core/protos/config.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/core/protos/config.proto b/ydb/core/protos/config.proto index db5d5572e5..f233cf0570 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -683,8 +683,8 @@ message TFeatureFlags { optional bool EnableArrowFormatInChannels = 52 [default = false]; optional bool EnableBackgroundCompactionServerless = 53 [default = false]; optional bool EnableNotNullColumns = 54 [default = false]; - optional bool EnableTtlOnAsyncIndexedTables = 55 [default = false]; - optional bool EnableBulkUpsertToAsyncIndexedTables = 56 [default = false]; + optional bool EnableTtlOnAsyncIndexedTables = 55 [default = true]; + optional bool EnableBulkUpsertToAsyncIndexedTables = 56 [default = true]; optional bool EnableNodeBrokerSingleDomainMode = 57 [default = false]; optional bool EnableKqpSessionActor = 58 [default = false]; // Dangerous settings we don't want in the public api unless required |