diff options
author | alexvru <alexvru@ydb.tech> | 2022-09-30 15:41:02 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2022-09-30 15:41:02 +0300 |
commit | 0eb8f19e3c049c6509b831b0bf2935f1b9250290 (patch) | |
tree | c1769339207f9ac0a5b9cb7bd3b86510549319f9 | |
parent | 2cc2b4de019c744baf5c7886f9053958cb507449 (diff) | |
download | ydb-0eb8f19e3c049c6509b831b0bf2935f1b9250290.tar.gz |
Enable SelfHeal by default in BSC
-rw-r--r-- | ydb/core/mind/bscontroller/scheme.h | 2 |
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; }; |