From 8952e660fdd415f68df2bcfcb8dbbd1b6b4cd7f7 Mon Sep 17 00:00:00 2001 From: Andrew Ross Date: Thu, 1 May 2025 13:33:13 -0700 Subject: [PATCH] Mute WarmIndexSegmentReplicationIT This is a new test that is pretty flaky. Muting it now while the feature is still under development. Signed-off-by: Andrew Ross --- .../indices/replication/WarmIndexSegmentReplicationIT.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/internalClusterTest/java/org/opensearch/indices/replication/WarmIndexSegmentReplicationIT.java b/server/src/internalClusterTest/java/org/opensearch/indices/replication/WarmIndexSegmentReplicationIT.java index dbaf378d61b7e..d48f0eaead04c 100644 --- a/server/src/internalClusterTest/java/org/opensearch/indices/replication/WarmIndexSegmentReplicationIT.java +++ b/server/src/internalClusterTest/java/org/opensearch/indices/replication/WarmIndexSegmentReplicationIT.java @@ -20,6 +20,7 @@ import org.apache.lucene.index.IndexWriter; import org.apache.lucene.index.IndexWriterConfig; import org.apache.lucene.index.SegmentInfos; +import org.apache.lucene.tests.util.LuceneTestCase; import org.apache.lucene.tests.util.TestUtil; import org.apache.lucene.util.BytesRef; import org.opensearch.action.admin.cluster.stats.ClusterStatsResponse; @@ -110,6 +111,7 @@ /** * This class runs Segment Replication Integ test suite with partial locality indices (warm indices). */ +@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/18157") @OpenSearchIntegTestCase.ClusterScope(scope = OpenSearchIntegTestCase.Scope.TEST, numDataNodes = 0) @ThreadLeakFilters(filters = CleanerDaemonThreadLeakFilter.class) public class WarmIndexSegmentReplicationIT extends SegmentReplicationBaseIT {