Skip to content

[cms.proto] increase default DisabledNodesRatioLimit #4770

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ydb/core/protos/cms.proto
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ message TLimits {
optional uint32 DisabledNodesLimit = 1;
// Works similarly to DisabledNodesLimit but specify
// limit in percents of cluster/tenant nodes count.
optional uint32 DisabledNodesRatioLimit = 2 [default = 10];
optional uint32 DisabledNodesRatioLimit = 2 [default = 13]; // 1/8 rounded up
}

message TCmsConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The task's actions cannot be performed until all conflicting actions from tasks

In the CMS configuration, you can configure limits on the number of unavailable nodes for a database (tenant) or the cluster as a whole. Relative and absolute limits are supported.

By default, each database and the cluster as a whole are allowed to have no more than 10% unavailable nodes.
By default, each database and the cluster as a whole are allowed to have no more than 13% unavailable nodes.

## Checking algorithm {#checking-algorithm}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

В конфигурации CMS можно настроить лимиты на количество недоступных узлов для базы данных (тенанта) или для кластера в целом. Поддерживаются относительные и абсолютные лимиты.

По умолчанию допускается не более 10% недоступных узлов для каждой базы данных и кластера в целом.
По умолчанию допускается не более 13% недоступных узлов для каждой базы данных и кластера в целом.

## Алгоритм проверки {#checking-algorithm}

Expand Down
Loading