Skip to content

Commit 66a2735

Browse files
No space left on device (CI)...
1 parent aaca661 commit 66a2735

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -586,15 +586,15 @@ public void testFetchTooManyBigFields() throws IOException {
586586
}
587587

588588
public void testStatsOnLargeKeywords() throws IOException, InterruptedException {
589-
initVeryLargeKeyword(1000, 1, 10_000_000, 1);
589+
initVeryLargeText(500, 1, 10_000_000, 1);
590590
StringBuilder query = startQuery();
591591
query.append("FROM large_text_idx | STATS SUM(LENGTH(large_text0))\"}");
592592
for (int i = 0; i < 5; i++) {
593593
assertCircuitBreaks(attempt -> responseAsMap(query(query.toString(), "columns")));
594594
}
595595
}
596596

597-
private void initVeryLargeKeyword(int docs, int nFields, int fieldSize, int docsPerBulk) throws IOException {
597+
private void initVeryLargeText(int docs, int nFields, int fieldSize, int docsPerBulk) throws IOException {
598598
logger.info("loading many documents a very large string field");
599599
Request request = new Request("PUT", "/large_text_idx");
600600
XContentBuilder config = JsonXContent.contentBuilder().startObject();

0 commit comments

Comments
 (0)