mirror of https://github.com/apache/cassandra
increase Xss to 160k to accomodate latest 1.6 JVMs
patch by jbellis; reviewed by brandonwilliams for CASSANDRA-4602
This commit is contained in:
parent
4764a379e2
commit
08c654601f
|
|
@ -1,4 +1,5 @@
|
|||
1.0.12
|
||||
* increase Xss to 160k to accomodate latest 1.6 JVMs (CASSANDRA-4602)
|
||||
* fix toString of hint destination tokens (CASSANDRA-4568)
|
||||
* (Hadoop) fix setting key length for old-style mapred api (CASSANDRA-4534)
|
||||
* (Hadoop) fix iterating through a resultset consisting entirely
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ if [ "`uname`" = "Linux" ] ; then
|
|||
# thread-per-client. (Best practice is for client connections to
|
||||
# be pooled anyway.) Only do so on Linux where it is known to be
|
||||
# supported.
|
||||
JVM_OPTS="$JVM_OPTS -Xss128k"
|
||||
JVM_OPTS="$JVM_OPTS -Xss160k"
|
||||
fi
|
||||
|
||||
# GC tuning options
|
||||
|
|
|
|||
Loading…
Reference in New Issue