Skip to content

Commit 49a1bb8

Browse files
authored
Scale down randomized esql tests with logsdb (#117228)
1 parent 7c18f11 commit 49a1bb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ public void testDateHistogramAggregation() throws IOException {
271271
}
272272

273273
public void testEsqlSource() throws IOException {
274-
int numberOfDocuments = ESTestCase.randomIntBetween(100, 200);
274+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 100);
275275
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
276276

277277
indexDocuments(documents);
@@ -287,7 +287,7 @@ public void testEsqlSource() throws IOException {
287287
}
288288

289289
public void testEsqlTermsAggregation() throws IOException {
290-
int numberOfDocuments = ESTestCase.randomIntBetween(100, 200);
290+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 100);
291291
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
292292

293293
indexDocuments(documents);
@@ -302,7 +302,7 @@ public void testEsqlTermsAggregation() throws IOException {
302302
}
303303

304304
public void testEsqlTermsAggregationByMethod() throws IOException {
305-
int numberOfDocuments = ESTestCase.randomIntBetween(100, 200);
305+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 100);
306306
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
307307

308308
indexDocuments(documents);

0 commit comments

Comments
 (0)