diff options
author | Ilnaz Nizametdinov <i.nizametdinov@gmail.com> | 2022-06-14 21:27:54 +0300 |
---|---|---|
committer | Ilnaz Nizametdinov <i.nizametdinov@gmail.com> | 2022-06-14 21:27:54 +0300 |
commit | 4b46426070e2b3aebab4227127199ad37b768c8c (patch) | |
tree | cc39937da277424e2be22f11012f00d64bf822b2 | |
parent | d6f7808571d965e693402934343c5509d5038ca6 (diff) | |
download | ydb-4b46426070e2b3aebab4227127199ad37b768c8c.tar.gz |
Enable BulkUpsert to async-indexed tables by default KIKIMR-13633
ref:525568802d8c040698bf8441c3b16f29d50e81db
-rw-r--r-- | ydb/core/protos/config.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/protos/config.proto b/ydb/core/protos/config.proto index 914796e8d5f..95319dc42ec 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -688,7 +688,7 @@ message TFeatureFlags { optional bool EnableBackgroundCompactionServerless = 53 [default = false]; optional bool EnableNotNullColumns = 54 [default = false]; optional bool EnableTtlOnAsyncIndexedTables = 55 [default = true]; - optional bool EnableBulkUpsertToAsyncIndexedTables = 56 [default = false]; + optional bool EnableBulkUpsertToAsyncIndexedTables = 56 [default = true]; optional bool EnableNodeBrokerSingleDomainMode = 57 [default = false]; optional bool EnableKqpSessionActor = 58 [default = true]; // Dangerous settings we don't want in the public api unless required |