aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralexvru <alexvru@ydb.tech>2022-09-30 15:41:02 +0300
committeralexvru <alexvru@ydb.tech>2022-09-30 15:41:02 +0300
commit0eb8f19e3c049c6509b831b0bf2935f1b9250290 (patch)
treec1769339207f9ac0a5b9cb7bd3b86510549319f9
parent2cc2b4de019c744baf5c7886f9053958cb507449 (diff)
downloadydb-0eb8f19e3c049c6509b831b0bf2935f1b9250290.tar.gz
Enable SelfHeal by default in BSC
-rw-r--r--ydb/core/mind/bscontroller/scheme.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/mind/bscontroller/scheme.h b/ydb/core/mind/bscontroller/scheme.h
index 8c7ef037597..31a18260424 100644
--- a/ydb/core/mind/bscontroller/scheme.h
+++ b/ydb/core/mind/bscontroller/scheme.h
@@ -88,7 +88,7 @@ struct Schema : NIceDb::Schema {
struct NextOperationLogIndex : Column<5, NScheme::NTypeIds::Uint64> {};
struct DefaultMaxSlots : Column<6, NScheme::NTypeIds::Uint32> { static constexpr Type Default = 16; };
struct InstanceId : Column<7, NScheme::NTypeIds::String> {};
- struct SelfHealEnable : Column<8, NScheme::NTypeIds::Bool> { static constexpr Type Default = false; };
+ struct SelfHealEnable : Column<8, NScheme::NTypeIds::Bool> { static constexpr Type Default = true; };
struct DonorModeEnable : Column<9, NScheme::NTypeIds::Bool> { static constexpr Type Default = true; };
struct ScrubPeriodicity : Column<10, NScheme::NTypeIds::Uint32> { static constexpr Type Default = 86400 * 30; };
struct SerialManagementStage : Column<11, NScheme::NTypeIds::Uint32> { using Type = NKikimrBlobStorage::TSerialManagementStage::E; };