From 00c04a378cd8fdd1744534595cbef52060d3ff83 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Thu, 31 Jul 2025 22:55:11 +0200 Subject: [PATCH] [build] Increment default thread stack size from to 2MB (was 1MB) (#23638) I suspect the StackOverflow errors started to get triggered recently as our build got larger/more complicated - increae in the thread stack size should mitigate the issue, otherwise, we'll need to investigate it again. [Cherry-picked fe6b7eb1d5a72993b1ebe4f4d02ce3b61f47514f] --- .jvmopts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jvmopts b/.jvmopts index 4df4f826d1db..d8606eba733e 100644 --- a/.jvmopts +++ b/.jvmopts @@ -1,4 +1,4 @@ --Xss1m +-Xss2m -Xms1024m -Xmx8192m -XX:MaxInlineLevel=35