You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cassandra.apache.org by Tim Underwood <ti...@gmail.com> on 2009/11/19 01:02:00 UTC

Two -XX:SurvivorRatio arguments in cassandra.in.sh

It looks like CASSANDRA-504 commit added a second -XX:SurvivorRatio argument
to cassandra.in.sh. Was this intentional?

JVM_OPTS=" \
        -ea \
        -Xdebug \
        -Xrunjdwp:transport=dt_socket,server=y,address=8888,suspend=n \
        -Xms128M \
        -Xmx1G \
        -XX:SurvivorRatio=8 \
        -XX:TargetSurvivorRatio=90 \
        -XX:+AggressiveOpts \
        -XX:+UseParNewGC \
        -XX:+UseConcMarkSweepGC \
        -XX:+CMSParallelRemarkEnabled \
        -XX:+HeapDumpOnOutOfMemoryError \
        -XX:SurvivorRatio=128 \
        -XX:MaxTenuringThreshold=0 \
        -Dcom.sun.management.jmxremote.port=8080 \
        -Dcom.sun.management.jmxremote.ssl=false \
        -Dcom.sun.management.jmxremote.authenticate=false"

Here's the commit:

http://svn.apache.org/viewvc/incubator/cassandra/trunk/bin/cassandra.in.sh?p2=%2Fincubator%2Fcassandra%2Ftrunk%2Fbin%2Fcassandra.in.sh&p1=%2Fincubator%2Fcassandra%2Ftrunk%2Fbin%2Fcassandra.in.sh&r1=828139&r2=828138&pathrev=828139&view=diff&diff_format=l

-Tim