diff --git a/test/external-modules/esql-heap-attack/src/javaRestTest/java/org/elasticsearch/xpack/esql/heap_attack/HeapAttackIT.java b/test/external-modules/esql-heap-attack/src/javaRestTest/java/org/elasticsearch/xpack/esql/heap_attack/HeapAttackIT.java index 70f1ba529ec5e..3dbcd14129f63 100644 --- a/test/external-modules/esql-heap-attack/src/javaRestTest/java/org/elasticsearch/xpack/esql/heap_attack/HeapAttackIT.java +++ b/test/external-modules/esql-heap-attack/src/javaRestTest/java/org/elasticsearch/xpack/esql/heap_attack/HeapAttackIT.java @@ -641,7 +641,7 @@ private Map fetchMvLongs() throws IOException { } public void testLookupExplosion() throws IOException { - int sensorDataCount = 500; + int sensorDataCount = 400; int lookupEntries = 10000; Map map = lookupExplosion(sensorDataCount, lookupEntries); assertMap(map, matchesMap().extraOk().entry("values", List.of(List.of(sensorDataCount * lookupEntries)))); @@ -653,7 +653,7 @@ public void testLookupExplosionManyMatches() throws IOException { } public void testLookupExplosionNoFetch() throws IOException { - int sensorDataCount = 7500; + int sensorDataCount = 7000; int lookupEntries = 10000; Map map = lookupExplosionNoFetch(sensorDataCount, lookupEntries); assertMap(map, matchesMap().extraOk().entry("values", List.of(List.of(sensorDataCount * lookupEntries))));