From 788255fa5e493a35396011168064e127b94e2fc7 Mon Sep 17 00:00:00 2001 From: Nik Everett Date: Wed, 29 Jan 2025 15:13:17 -0500 Subject: [PATCH] updates --- .../elasticsearch/xpack/esql/heap_attack/HeapAttackIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 bd85b0cd2b454..59ce3c2dbb1cf 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 @@ -636,7 +636,7 @@ public void testLookupExplosion() throws IOException { public void testLookupExplosionManyMatches() throws IOException { assertCircuitBreaks(() -> { - Map result = lookupExplosion(900, 10000); + Map result = lookupExplosion(1500, 10000); logger.error("should have failed but got {}", result); }); } @@ -656,7 +656,7 @@ public void testLookupExplosionNoFetchManyMatches() throws IOException { } public void testLookupExplosionBigString() throws IOException { - int sensorDataCount = 250; + int sensorDataCount = 150; int lookupEntries = 1; Map map = lookupExplosionBigString(sensorDataCount, lookupEntries); assertMap(map, matchesMap().extraOk().entry("values", List.of(List.of(sensorDataCount * lookupEntries))));