Skip to content

Commit 1cf0a9b

Browse files
Fix and unmute HeapAttack test
1 parent 2504368 commit 1cf0a9b

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
@@ -375,9 +375,6 @@ tests:
375375
- class: org.elasticsearch.index.mapper.DynamicMappingIT
376376
method: testConcurrentDynamicIgnoreBeyondLimitUpdates
377377
issue: https://github.com/elastic/elasticsearch/issues/143326
378-
- class: org.elasticsearch.xpack.esql.heap_attack.HeapAttackLookupJoinIT
379-
method: testLookupExplosionManyMatchesManyFields
380-
issue: https://github.com/elastic/elasticsearch/issues/143347
381378
- class: org.elasticsearch.snapshots.ConcurrentSnapshotsIT
382379
method: testBackToBackQueuedDeletes
383380
issue: https://github.com/elastic/elasticsearch/issues/143387

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void testLookupExplosionManyMatchesManyFields() throws IOException {
6666
// Streaming lookup processes batches incrementally, keeping memory bounded
6767
// even with many matches and many fields. Previously threw CircuitBreakerException with the non-streaming path.
6868
int sensorDataCount = 1500;
69-
int lookupEntries = 10000;
69+
int lookupEntries = 1000;
7070
Map<?, ?> map = lookupExplosion(sensorDataCount, lookupEntries, 30, lookupEntries, false);
7171
assertMap(map, matchesMap().extraOk().entry("values", List.of(List.of(sensorDataCount * lookupEntries))));
7272
}

0 commit comments

Comments
 (0)