mirror of https://github.com/apache/cassandra
merge from 2.0
This commit is contained in:
commit
f92a457a30
|
|
@ -66,6 +66,7 @@
|
|||
* Fix snapshot repair error on indexed tables (CASSANDRA-8020)
|
||||
* Do not exit nodetool repair when receiving JMX NOTIF_LOST (CASSANDRA-7909)
|
||||
Merged from 2.0:
|
||||
* Add sanity check of $JAVA on startup (CASSANDRA-7676)
|
||||
* Schedule fat client schema pull on join (CASSANDRA-7993)
|
||||
* Don't reset nodes' versions when closing IncomingTcpConnections
|
||||
(CASSANDRA-7734)
|
||||
|
|
|
|||
|
|
@ -98,6 +98,11 @@ else
|
|||
JAVA=java
|
||||
fi
|
||||
|
||||
if [ -z $JAVA ] ; then
|
||||
echo Unable to find java executable. Check JAVA_HOME and PATH environment variables. > /dev/stderr
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
# If numactl is available, use it. For Cassandra, the priority is to
|
||||
# avoid disk I/O. Even for the purpose of CPU efficiency, we don't
|
||||
# really have CPU<->data affinity anyway. Also, empirically test that numactl
|
||||
|
|
|
|||
Loading…
Reference in New Issue