mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.1' into cassandra-2.2
This commit is contained in:
commit
78f46ded7f
|
|
@ -10,6 +10,7 @@
|
|||
* Fix paging on DISTINCT queries repeats result when first row in partition changes
|
||||
(CASSANDRA-10010)
|
||||
Merged from 2.1:
|
||||
* Fix sstableloader to unthrottle streaming by default (CASSANDRA-9714)
|
||||
* Fix incorrect warning in 'nodetool status' (CASSANDRA-10176)
|
||||
* Properly release sstable ref when doing offline scrub (CASSANDRA-10697)
|
||||
* Improve nodetool status performance for large cluster (CASSANDRA-7238)
|
||||
|
|
|
|||
|
|
@ -434,6 +434,9 @@ public class BulkLoader
|
|||
else
|
||||
{
|
||||
config = new Config();
|
||||
// unthrottle stream by default
|
||||
config.stream_throughput_outbound_megabits_per_sec = 0;
|
||||
config.inter_dc_stream_throughput_outbound_megabits_per_sec = 0;
|
||||
}
|
||||
opts.storagePort = config.storage_port;
|
||||
opts.sslStoragePort = config.ssl_storage_port;
|
||||
|
|
|
|||
Loading…
Reference in New Issue