Skip to content

Commit 820031d

Browse files
Merge 7b9dbfe into bc5cd8b
2 parents bc5cd8b + 7b9dbfe commit 820031d

File tree

1 file changed

+3
-2
lines changed
  • ydb/core/tx/columnshard/engines/storage/optimizer/lcbuckets/constructor/level

1 file changed

+3
-2
lines changed

ydb/core/tx/columnshard/engines/storage/optimizer/lcbuckets/constructor/level/zero_level.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,9 @@ std::shared_ptr<NKikimr::NOlap::NStorageOptimizer::NLCBuckets::IPortionsLevel> T
9696
const std::shared_ptr<IPortionsLevel>& nextLevel, const ui32 indexLevel, const std::shared_ptr<TSimplePortionsGroupInfo>& /*portionsInfo*/,
9797
const TLevelCounters& counters, const std::vector<std::shared_ptr<IPortionsSelector>>& selectors) const {
9898
return std::make_shared<TZeroLevelPortions>(indexLevel, nextLevel, counters,
99-
std::make_shared<TLimitsOverloadChecker>(PortionsCountLimit, PortionsSizeLimit), PortionsLiveDuration.value_or(TDuration::Max()),
100-
ExpectedBlobsSize.value_or((ui64)1 << 20), PortionsCountAvailable.value_or(10), selectors, GetDefaultSelectorName());
99+
std::make_shared<TLimitsOverloadChecker>(PortionsCountLimit.value_or(1000000), PortionsSizeLimit),
100+
PortionsLiveDuration.value_or(TDuration::Max()), ExpectedBlobsSize.value_or((ui64)1 << 20), PortionsCountAvailable.value_or(10),
101+
selectors, GetDefaultSelectorName());
101102
}
102103

103104
} // namespace NKikimr::NOlap::NStorageOptimizer::NLCBuckets

0 commit comments

Comments
 (0)