diff options
author | Vitalii Gridnev <gridnevvvit@gmail.com> | 2022-06-24 14:57:38 +0300 |
---|---|---|
committer | Vitalii Gridnev <gridnevvvit@gmail.com> | 2022-06-24 14:57:38 +0300 |
commit | bd27be4437e22260a6ecd24043c8eb2c76700ce1 (patch) | |
tree | 57b3f19ea7a7600ab832b5a90aa7d4ab889c1411 | |
parent | 3b32688dae7af8ef3eef83bb4cd15dc6e7c41875 (diff) | |
download | ydb-bd27be4437e22260a6ecd24043c8eb2c76700ce1.tar.gz |
Change "config.proto": enable balancer by default
ref:789cef828c84ab844b1eed5bcdfcb06363d17226
-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 8c93d3fcacf..5212d8624b2 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -1044,7 +1044,7 @@ message TTableServiceConfig { } message TSessionBalancerSettings { - optional bool Enabled = 1 [default = false]; + optional bool Enabled = 1 [default = true]; // MaxSessionsShutdownInFlightSize option determines the number of sessions // that we can keep in shutdown state at the moment. optional uint32 MaxSessionsShutdownInFlightSize = 2 [default = 3]; |