diff options
author | xyliganSereja <matva0509@gmail.com> | 2025-06-04 17:07:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-04 17:07:03 +0300 |
commit | ee494fe01cde439ee03e4394ca4aa8499f7aaf78 (patch) | |
tree | e385f8e3be0305375cdc1e72ae8ad8757fa5c34b | |
parent | e7bd8b4facfef8abe4079c243dd6fe611e0ea719 (diff) | |
download | ydb-ee494fe01cde439ee03e4394ca4aa8499f7aaf78.tar.gz |
fix bag with raice #18846 (#19264)
-rw-r--r-- | .github/config/muted_ya.txt | 1 | ||||
-rw-r--r-- | ydb/core/kqp/ut/olap/combinatory/compaction.cpp | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/config/muted_ya.txt b/.github/config/muted_ya.txt index ba00a1495a4..834206c213d 100644 --- a/.github/config/muted_ya.txt +++ b/.github/config/muted_ya.txt @@ -21,7 +21,6 @@ ydb/core/kqp/ut/cost KqpCost.OlapWriteRow ydb/core/kqp/ut/federated_query/large_results KqpScriptExecResults.ExecuteScriptWithLargeFile ydb/core/kqp/ut/federated_query/s3 sole chunk chunk ydb/core/kqp/ut/indexes KqpMultishardIndex.WriteIntoRenamingSyncIndex -ydb/core/kqp/ut/olap KqpOlapDictionary.DifferentPages ydb/core/kqp/ut/olap KqpOlapJson.BloomMixIndexesVariants ydb/core/kqp/ut/olap KqpOlapJson.BloomNGrammIndexesVariants ydb/core/kqp/ut/olap KqpOlapJson.CompactionVariants diff --git a/ydb/core/kqp/ut/olap/combinatory/compaction.cpp b/ydb/core/kqp/ut/olap/combinatory/compaction.cpp index 9c25831e970..c90524f6aee 100644 --- a/ydb/core/kqp/ut/olap/combinatory/compaction.cpp +++ b/ydb/core/kqp/ut/olap/combinatory/compaction.cpp @@ -19,15 +19,18 @@ TConclusionStatus TOneCompactionCommand::DoExecute(TKikimrRunner& /*kikimr*/) { const i64 compactions = controller->GetCompactionFinishedCounter().Val(); controller->EnableBackground(NKikimr::NYDBTest::ICSController::EBackground::Compaction); const TInstant start = TInstant::Now(); - while (TInstant::Now() - start < TDuration::Seconds(5)) { + while (TInstant::Now() - start < TDuration::Seconds(10)) { if (compactions < controller->GetCompactionFinishedCounter().Val()) { Cerr << "COMPACTION_HAPPENED: " << compactions << " -> " << controller->GetCompactionFinishedCounter().Val() << Endl; break; } + Cerr << "WAIT_COMPACTION: " << controller->GetCompactionFinishedCounter().Val() << Endl; Sleep(TDuration::MilliSeconds(300)); } + AFL_VERIFY(compactions < controller->GetCompactionFinishedCounter().Val()); + controller->DisableBackground(NKikimr::NYDBTest::ICSController::EBackground::Compaction); return TConclusionStatus::Success(); } |