Skip to content

Commit 3b853aa

Browse files
Limit number docs to avoid OOM on testDateHistogramAggregation (#135029)
1 parent d18da3c commit 3b853aa

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -465,9 +465,6 @@ tests:
465465
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeForkIT
466466
method: test {csv-spec:spatial_shapes.ConvertFromStringParseError}
467467
issue: https://github.com/elastic/elasticsearch/issues/134254
468-
- class: org.elasticsearch.xpack.logsdb.qa.BulkDynamicMappingChallengeRestIT
469-
method: testDateHistogramAggregation
470-
issue: https://github.com/elastic/elasticsearch/issues/134389
471468
- class: org.elasticsearch.xpack.esql.expression.function.scalar.score.DecayTests
472469
method: "testEvaluateBlockWithNulls {TestCase=<double>, <double>, <double>, <_source> #11}"
473470
issue: https://github.com/elastic/elasticsearch/issues/134447

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ public void testTermsAggregation() throws IOException {
239239
}
240240

241241
public void testDateHistogramAggregation() throws IOException {
242-
int numberOfDocuments = ESTestCase.randomIntBetween(20, 80);
242+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 70);
243243
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
244244

245245
indexDocuments(documents);

0 commit comments

Comments
 (0)