Skip to content

Commit 50d5e58

Browse files
authored
ESQL: Use less data in test (elastic#128337) (elastic#128368)
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 cfbd3b3 commit 50d5e58

File tree

1 file changed

+1
-1
lines changed
  • test/external-modules/esql-heap-attack/src/javaRestTest/java/org/elasticsearch/xpack/esql/heap_attack

1 file changed

+1
-1
lines changed

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
@@ -653,7 +653,7 @@ public void testLookupExplosionManyMatches() throws IOException {
653653
}
654654

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

0 commit comments

Comments
 (0)