Skip to content

Commit cf1f48e

Browse files
authored
ESQL: Use less data in test (elastic#128337)
This test is expected to complete a deeply abusive lookup join without circuit breaking. It was sometimes circuit breaking. This lowers the data we feed to the test so its slightly less abusive. It's still plenty abusive. Closes elastic#127365
1 parent 1a641e5 commit cf1f48e

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
@@ -396,9 +396,6 @@ tests:
396396
- class: org.elasticsearch.xpack.remotecluster.CrossClusterEsqlRCS2EnrichUnavailableRemotesIT
397397
method: testEsqlEnrichWithSkipUnavailable
398398
issue: https://github.com/elastic/elasticsearch/issues/127368
399-
- class: org.elasticsearch.xpack.esql.heap_attack.HeapAttackIT
400-
method: testLookupExplosionNoFetch
401-
issue: https://github.com/elastic/elasticsearch/issues/127365
402399
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
403400
method: test {p0=ml/data_frame_analytics_cat_apis/Test cat data frame analytics all jobs with header}
404401
issue: https://github.com/elastic/elasticsearch/issues/127625

test/external-modules/esql-heap-attack/src/javaRestTest/java/org/elasticsearch/xpack/esql/heap_attack/HeapAttackIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ public void testLookupExplosionManyMatches() throws IOException {
655655
}
656656

657657
public void testLookupExplosionNoFetch() throws IOException {
658-
int sensorDataCount = 7000;
658+
int sensorDataCount = 6000;
659659
int lookupEntries = 10000;
660660
Map<?, ?> map = lookupExplosionNoFetch(sensorDataCount, lookupEntries);
661661
assertMap(map, matchesMap().extraOk().entry("values", List.of(List.of(sensorDataCount * lookupEntries))));

0 commit comments

Comments
 (0)