diff options
author | zalyalov <zalyalov@yandex-team.com> | 2023-10-05 15:48:05 +0300 |
---|---|---|
committer | zalyalov <zalyalov@yandex-team.com> | 2023-10-05 16:15:37 +0300 |
commit | 37597d32312a262dc3ec9e25e1f1f6fcd9e6006c (patch) | |
tree | 92811699584557e187fd9e711829eb80ac9b4db0 | |
parent | d0e657937bb5c52a909ee0997d9b244d8db7d0d5 (diff) | |
download | ydb-37597d32312a262dc3ec9e25e1f1f6fcd9e6006c.tar.gz |
lower column shard booting priority
-rw-r--r-- | ydb/core/mind/hive/boot_queue.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ydb/core/mind/hive/boot_queue.h b/ydb/core/mind/hive/boot_queue.h index 5b13e08f6d7..6ad5eb0d476 100644 --- a/ydb/core/mind/hive/boot_queue.h +++ b/ydb/core/mind/hive/boot_queue.h @@ -25,6 +25,9 @@ struct TBootQueue { case TTabletTypes::BlobDepot: priority = 2; break; + case TTabletTypes::ColumnShard: + priority = 0; + break; default: if (tablet.IsLeader()) { priority = 1; |