This is an automated email from the ASF dual-hosted git repository.
zuston pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 6d656ace0 [#1770] improvement(server): Increase the IHOP value to
avoid frequent garbage collection (#1772)
6d656ace0 is described below
commit 6d656ace00e391a35b0a1e7a848bdf566178d329
Author: RickyMa <[email protected]>
AuthorDate: Tue Jun 11 19:45:44 2024 +0800
[#1770] improvement(server): Increase the IHOP value to avoid frequent
garbage collection (#1772)
### What changes were proposed in this pull request?
Increase the InitiatingHeapOccupancyPercent value of G1 option to avoid
frequent garbage collection.
### Why are the changes needed?
For https://github.com/apache/incubator-uniffle/issues/1770.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Existing tests.
---
bin/start-shuffle-server.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/start-shuffle-server.sh b/bin/start-shuffle-server.sh
index 83431d69b..1b1afe524 100755
--- a/bin/start-shuffle-server.sh
+++ b/bin/start-shuffle-server.sh
@@ -99,7 +99,7 @@ JVM_ARGS=" -server \
-XX:MaxGCPauseMillis=200 \
-XX:ParallelGCThreads=20 \
-XX:ConcGCThreads=5 \
- -XX:InitiatingHeapOccupancyPercent=20 \
+ -XX:InitiatingHeapOccupancyPercent=60 \
-XX:G1HeapRegionSize=32m \
-XX:+UnlockExperimentalVMOptions \
-XX:G1NewSizePercent=10 \