mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.1' into cassandra-2.2
This commit is contained in:
commit
95feab6631
|
|
@ -12,7 +12,8 @@
|
|||
* Deprecate Pig support (CASSANDRA-10542)
|
||||
* Reduce contention getting instances of CompositeType (CASSANDRA-10433)
|
||||
Merged from 2.1:
|
||||
* * (cqlsh) Improve COPY TO performance and error handling (CASSANDRA-9304)
|
||||
* sstableloader does not use MAX_HEAP_SIZE env parameter (CASSANDRA-10188)
|
||||
* (cqlsh) Improve COPY TO performance and error handling (CASSANDRA-9304)
|
||||
* Don't remove level info when running upgradesstables (CASSANDRA-10692)
|
||||
* Create compression chunk for sending file only (CASSANDRA-10680)
|
||||
* Make buffered read size configurable (CASSANDRA-10249)
|
||||
|
|
|
|||
|
|
@ -43,7 +43,11 @@ if [ -z "$CLASSPATH" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
"$JAVA" $JAVA_AGENT -ea -cp "$CLASSPATH" $JVM_OPTS -Xmx256M \
|
||||
if [ "x$MAX_HEAP_SIZE" = "x" ]; then
|
||||
MAX_HEAP_SIZE="256M"
|
||||
fi
|
||||
|
||||
"$JAVA" $JAVA_AGENT -ea -cp "$CLASSPATH" $JVM_OPTS -Xmx$MAX_HEAP_SIZE \
|
||||
-Dcassandra.storagedir="$cassandra_storagedir" \
|
||||
-Dlogback.configurationFile=logback-tools.xml \
|
||||
org.apache.cassandra.tools.BulkLoader "$@"
|
||||
|
|
|
|||
Loading…
Reference in New Issue