diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionRuntimeFieldIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionRuntimeFieldIT.java index 4a21cc5a77521..f70f7173d19c0 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionRuntimeFieldIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionRuntimeFieldIT.java @@ -63,6 +63,7 @@ public void testDouble() throws InterruptedException, IOException { assertThat(getValuesList(response), equalTo(List.of(List.of((double) SIZE)))); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100141") public void testKeyword() throws InterruptedException, IOException { createIndexWithConstRuntimeField("keyword"); try (EsqlQueryResponse response = run("from test | keep const | limit 1")) { @@ -74,6 +75,7 @@ public void testKeyword() throws InterruptedException, IOException { * Test grouping by runtime keyword which requires disabling the ordinals * optimization available to more keyword fields. */ + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100141") public void testKeywordBy() throws InterruptedException, IOException { createIndexWithConstRuntimeField("keyword"); EsqlQueryResponse response = run("from test | stats max(foo) by const"); @@ -87,6 +89,7 @@ public void testBoolean() throws InterruptedException, IOException { } } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100141") public void testDate() throws InterruptedException, IOException { createIndexWithConstRuntimeField("date"); EsqlQueryResponse response = run(""" diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ManyShardsIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ManyShardsIT.java index c1476c8c52de5..84ad26b711112 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ManyShardsIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ManyShardsIT.java @@ -25,6 +25,7 @@ @LuceneTestCase.SuppressFileSystems(value = "HandleLimitFS") public class ManyShardsIT extends AbstractEsqlIntegTestCase { + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100142") public void testConcurrentQueries() throws Exception { int numIndices = between(10, 20); for (int i = 0; i < numIndices; i++) {