From d0901360853c07ee9eccf4826a02decc01700914 Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Sun, 10 Jan 2016 15:48:57 +0200 Subject: [PATCH] Use serial garbage collector The serial garbage collector has the smallest memory footprint and the smallest impact on the rest of the system, esp. in large multicores. Message-Id: <1452433737-4413-1-git-send-email-avi@scylladb.com> --- scripts/scylla-jmx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/scylla-jmx b/scripts/scylla-jmx index e34e431..dd7b4fe 100755 --- a/scripts/scylla-jmx +++ b/scripts/scylla-jmx @@ -69,4 +69,4 @@ do esac done -exec java $API_ADDR $API_PORT $CONF_FILE -Xmx256m -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=$JMX_PORT -Dcom.sun.management.jmxremote.rmi.port=$JMX_PORT -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -jar $LOCATION/scylla-jmx-1.0.jar +exec java $API_ADDR $API_PORT $CONF_FILE -Xmx256m -XX:+UseSerialGC -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=$JMX_PORT -Dcom.sun.management.jmxremote.rmi.port=$JMX_PORT -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -jar $LOCATION/scylla-jmx-1.0.jar