Skip to content

Commit fbc6abe

Browse files
authored
[TEST] Unmute randomized logsdb test (#117450)
Test fixed in #117228 and here. Fixes #116536 Fixes #117212
1 parent 79d8eb5 commit fbc6abe

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

muted-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,6 @@ tests:
168168
- class: org.elasticsearch.xpack.searchablesnapshots.SearchableSnapshotsCanMatchOnCoordinatorIntegTests
169169
method: testSearchableSnapshotShardsAreSkippedBySearchRequestWithoutQueryingAnyNodeWhenTheyAreOutsideOfTheQueryRange
170170
issue: https://github.com/elastic/elasticsearch/issues/116523
171-
- class: org.elasticsearch.xpack.logsdb.qa.StandardVersusLogsIndexModeRandomDataDynamicMappingChallengeRestIT
172-
method: testMatchAllQuery
173-
issue: https://github.com/elastic/elasticsearch/issues/116536
174171
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT
175172
method: test {categorize.Categorize}
176173
issue: https://github.com/elastic/elasticsearch/issues/116434
@@ -208,9 +205,6 @@ tests:
208205
- class: org.elasticsearch.xpack.inference.DefaultEndPointsIT
209206
method: testMultipleInferencesTriggeringDownloadAndDeploy
210207
issue: https://github.com/elastic/elasticsearch/issues/117208
211-
- class: org.elasticsearch.xpack.logsdb.qa.StandardVersusLogsStoredSourceChallengeRestIT
212-
method: testEsqlSource
213-
issue: https://github.com/elastic/elasticsearch/issues/117212
214208
- class: org.elasticsearch.ingest.geoip.EnterpriseGeoIpDownloaderIT
215209
method: testEnterpriseDownloaderTask
216210
issue: https://github.com/elastic/elasticsearch/issues/115163

x-pack/plugin/logsdb/src/javaRestTest/java/org/elasticsearch/xpack/logsdb/qa/StandardVersusLogsIndexModeChallengeRestIT.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ protected static void waitForLogs(RestClient client) throws Exception {
181181
}
182182

183183
public void testMatchAllQuery() throws IOException {
184-
int numberOfDocuments = ESTestCase.randomIntBetween(100, 200);
184+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 100);
185185
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
186186

187187
indexDocuments(documents);
@@ -199,7 +199,7 @@ public void testMatchAllQuery() throws IOException {
199199
}
200200

201201
public void testTermsQuery() throws IOException {
202-
int numberOfDocuments = ESTestCase.randomIntBetween(100, 200);
202+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 100);
203203
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
204204

205205
indexDocuments(documents);
@@ -217,7 +217,7 @@ public void testTermsQuery() throws IOException {
217217
}
218218

219219
public void testHistogramAggregation() throws IOException {
220-
int numberOfDocuments = ESTestCase.randomIntBetween(100, 200);
220+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 100);
221221
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
222222

223223
indexDocuments(documents);
@@ -235,7 +235,7 @@ public void testHistogramAggregation() throws IOException {
235235
}
236236

237237
public void testTermsAggregation() throws IOException {
238-
int numberOfDocuments = ESTestCase.randomIntBetween(100, 200);
238+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 100);
239239
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
240240

241241
indexDocuments(documents);
@@ -253,7 +253,7 @@ public void testTermsAggregation() throws IOException {
253253
}
254254

255255
public void testDateHistogramAggregation() throws IOException {
256-
int numberOfDocuments = ESTestCase.randomIntBetween(100, 200);
256+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 100);
257257
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
258258

259259
indexDocuments(documents);

0 commit comments

Comments
 (0)