Bump Xss to 256k to match 2.0+ (CASSANDRA-5517)

This commit is contained in:
Jonathan Ellis 2013-11-19 16:42:32 -06:00
parent 4cf2a48699
commit 50970320de
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@
(CASSANDRA-6347)
* Disallow altering CQL3 table from thrift (CASSANDRA-6370)
* Fix size computation of prepared statement (CASSANDRA-6369)
* Bump Xss to 256k (CASSANDRA-5517)
1.2.11

View File

@ -190,7 +190,7 @@ if [ "`uname`" = "Linux" ] ; then
# be pooled anyway.) Only do so on Linux where it is known to be
# supported.
# u34 and greater need 180k
JVM_OPTS="$JVM_OPTS -Xss180k"
JVM_OPTS="$JVM_OPTS -Xss256k"
fi
echo "xss = $JVM_OPTS"