You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by dl...@apache.org on 2021/12/15 18:23:50 UTC

[accumulo] branch main updated: Add options to set heap sizes for CompactionCoordinator and Compactor in accumulo-env (#2389)

This is an automated email from the ASF dual-hosted git repository.

dlmarion pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new 6597638  Add options to set heap sizes for CompactionCoordinator and Compactor in accumulo-env (#2389)
6597638 is described below

commit 6597638da485599fbf0f96da1fcc357d3a63ae6f
Author: Dave Marion <dl...@apache.org>
AuthorDate: Wed Dec 15 13:23:42 2021 -0500

    Add options to set heap sizes for CompactionCoordinator and Compactor in accumulo-env (#2389)
---
 assemble/conf/accumulo-env.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/assemble/conf/accumulo-env.sh b/assemble/conf/accumulo-env.sh
index 634c455..b067203 100644
--- a/assemble/conf/accumulo-env.sh
+++ b/assemble/conf/accumulo-env.sh
@@ -83,6 +83,8 @@ case "$cmd" in
   monitor) JAVA_OPTS=("${JAVA_OPTS[@]}" '-Xmx256m' '-Xms256m') ;;
   gc)      JAVA_OPTS=("${JAVA_OPTS[@]}" '-Xmx256m' '-Xms256m') ;;
   tserver) JAVA_OPTS=("${JAVA_OPTS[@]}" '-Xmx768m' '-Xms768m') ;;
+  compaction-coordinator) JAVA_OPTS=("${JAVA_OPTS[@]}" '-Xmx512m' '-Xms512m') ;;
+  compactor) JAVA_OPTS=("${JAVA_OPTS[@]}" '-Xmx256m' '-Xms256m') ;;
   *)       JAVA_OPTS=("${JAVA_OPTS[@]}" '-Xmx256m' '-Xms64m') ;;
 esac