Skip to content

Commit d9d0650

Browse files
authored
Fixed out of memory error in BulkDynamicMappingChallengeRestIT (#136579)
* Fixed out of memory error in BulkDynamicMappingChallengeRestIT * Update muted-tests.yml
1 parent e22e908 commit d9d0650

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

muted-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -510,9 +510,6 @@ tests:
510510
- class: org.elasticsearch.xpack.esql.ccq.AllSupportedFieldsIT
511511
method: testFetchDenseVector {pref=null mode=time_series}
512512
issue: https://github.com/elastic/elasticsearch/issues/135762
513-
- class: org.elasticsearch.xpack.logsdb.qa.BulkDynamicMappingChallengeRestIT
514-
method: testMatchAllQuery
515-
issue: https://github.com/elastic/elasticsearch/issues/135820
516513
- class: org.elasticsearch.xpack.esql.action.CrossClusterQueryWithPartialResultsIT
517514
method: testOneRemoteClusterPartial
518515
issue: https://github.com/elastic/elasticsearch/issues/124055
@@ -522,9 +519,6 @@ tests:
522519
- class: org.elasticsearch.xpack.ml.integration.RegressionIT
523520
method: testAliasFields
524521
issue: https://github.com/elastic/elasticsearch/issues/135996
525-
- class: org.elasticsearch.xpack.logsdb.qa.BulkDynamicMappingChallengeRestIT
526-
method: testHistogramAggregation
527-
issue: https://github.com/elastic/elasticsearch/issues/136002
528522
- class: org.elasticsearch.xpack.security.authz.microsoft.MicrosoftGraphAuthzPluginIT
529523
method: testConcurrentAuthentication
530524
issue: https://github.com/elastic/elasticsearch/issues/135777

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ protected static void waitForLogs(RestClient client) throws Exception {
126126
}
127127

128128
public void testMatchAllQuery() throws IOException {
129-
int numberOfDocuments = ESTestCase.randomIntBetween(20, 80);
129+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 60);
130130
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
131131

132132
indexDocuments(documents);
@@ -203,7 +203,7 @@ public void testTermsQuery() throws IOException {
203203
}
204204

205205
public void testHistogramAggregation() throws IOException {
206-
int numberOfDocuments = ESTestCase.randomIntBetween(20, 80);
206+
int numberOfDocuments = ESTestCase.randomIntBetween(20, 70);
207207
final List<XContentBuilder> documents = generateDocuments(numberOfDocuments);
208208

209209
indexDocuments(documents);

0 commit comments

Comments
 (0)