diff options
author | ivanmorozov <ivanmorozov@yandex-team.com> | 2023-07-18 15:30:54 +0300 |
---|---|---|
committer | ivanmorozov <ivanmorozov@yandex-team.com> | 2023-07-18 15:30:54 +0300 |
commit | a21a3016bdd3bf7eee496e357554d11e4c121cdf (patch) | |
tree | e1d5f6f6ed5a8008724358841fb4b0d6dfd5e574 | |
parent | 99d0528de90ca30f5e366352b1bcaeba0967a42d (diff) | |
download | ydb-a21a3016bdd3bf7eee496e357554d11e4c121cdf.tar.gz |
correct validation
-rw-r--r-- | ydb/core/tx/columnshard/columnshard_impl.h | 2 | ||||
-rw-r--r-- | ydb/core/tx/columnshard/engines/column_engine.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ydb/core/tx/columnshard/columnshard_impl.h b/ydb/core/tx/columnshard/columnshard_impl.h index 2314745442c..5942d140612 100644 --- a/ydb/core/tx/columnshard/columnshard_impl.h +++ b/ydb/core/tx/columnshard/columnshard_impl.h @@ -349,7 +349,7 @@ private: for (auto&& i : ActiveCompactionInfo) { if (TMonotonic::Now() - i.second.GetStartTime() > NOlap::TCompactionLimits::CompactionTimeout) { AFL_EMERG(NKikimrServices::TX_COLUMNSHARD)("event", "deadline_compaction"); - Y_VERIFY(false); + Y_VERIFY_DEBUG(false); } } } diff --git a/ydb/core/tx/columnshard/engines/column_engine.h b/ydb/core/tx/columnshard/engines/column_engine.h index 316a16b389f..8c55239570c 100644 --- a/ydb/core/tx/columnshard/engines/column_engine.h +++ b/ydb/core/tx/columnshard/engines/column_engine.h @@ -35,7 +35,7 @@ struct TCompactionLimits { static constexpr const ui64 WARNING_INSERTED_PORTIONS_SIZE = 0.5 * WARNING_OVERLOAD_GRANULE_SIZE; static constexpr const ui64 WARNING_INSERTED_PORTIONS_COUNT = 100; - static constexpr const TDuration CompactionTimeout = TDuration::Seconds(120); + static constexpr const TDuration CompactionTimeout = TDuration::Minutes(3); ui32 GoodBlobSize{MIN_GOOD_BLOB_SIZE}; ui32 GranuleBlobSplitSize{MAX_BLOB_SIZE}; |