From b8cbdde2b854229d950d7087ac1847f8453d2b1e Mon Sep 17 00:00:00 2001 From: Thomas Steinmaurer Date: Tue, 29 May 2018 05:19:26 -0700 Subject: [PATCH] Reduce nodetool GC thread count patch by Thomas Steinmaurer; reviewed by jasobrown for CASSANDRA-14475 --- CHANGES.txt | 1 + bin/nodetool | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 87e7c24417..3879a55ba7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,5 @@ 3.11.3 + * Reduce nodetool GC thread count (CASSANDRA-14475) * Fix New SASI view creation during Index Redistribution (CASSANDRA-14055) * Remove string formatting lines from BufferPool hot path (CASSANDRA-14416) * Update metrics to 3.1.5 (CASSANDRA-12924) diff --git a/bin/nodetool b/bin/nodetool index b1cfba5b03..6456b19b81 100755 --- a/bin/nodetool +++ b/bin/nodetool @@ -106,6 +106,7 @@ if [ "x$MAX_HEAP_SIZE" = "x" ]; then fi "$JAVA" $JAVA_AGENT -ea -cp "$CLASSPATH" $JVM_OPTS -Xmx$MAX_HEAP_SIZE \ + -XX:ParallelGCThreads=1 \ -Dcassandra.storagedir="$cassandra_storagedir" \ -Dlogback.configurationFile=logback-tools.xml \ $JVM_ARGS \