mirror of https://github.com/apache/cassandra
Reduce nodetool GC thread count
patch by Thomas Steinmaurer; reviewed by jasobrown for CASSANDRA-14475
This commit is contained in:
parent
7068ef6254
commit
b8cbdde2b8
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in New Issue