Merge branch 'cassandra-3.11' into trunk

This commit is contained in:
Ariel Weisberg 2017-06-29 16:12:35 -04:00
commit fe3cfe3d7d
2 changed files with 2 additions and 1 deletions

View File

@ -85,6 +85,7 @@
3.11.1
* Properly evict pstmts from prepared statements cache (CASSANDRA-13641)
Merged from 3.0:
* Allow different NUMACTL_ARGS to be passed in (CASSANDRA-13557)
* Fix secondary index queries on COMPACT tables (CASSANDRA-13627)
* Nodetool listsnapshots output is missing a newline, if there are no snapshots (CASSANDRA-13568)

View File

@ -107,7 +107,7 @@ fi
# 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
# works before trying to use it (CASSANDRA-3245).
NUMACTL_ARGS="--interleave=all"
NUMACTL_ARGS=${NUMACTL_ARGS:-"--interleave=all"}
if which numactl >/dev/null 2>/dev/null && numactl $NUMACTL_ARGS ls / >/dev/null 2>/dev/null
then
NUMACTL="numactl $NUMACTL_ARGS"