mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.2' into trunk
This commit is contained in:
commit
5c31a86334
|
|
@ -12,6 +12,7 @@
|
|||
|
||||
|
||||
2.2
|
||||
* BulkLoader has --transport-factory option but does not use it (CASSANDRA-9675)
|
||||
* Allow JMX over SSL directly from nodetool (CASSANDRA-9090)
|
||||
* Update cqlsh for UDFs (CASSANDRA-7556)
|
||||
* Change Windows kernel default timer resolution (CASSANDRA-9634)
|
||||
|
|
|
|||
|
|
@ -24,7 +24,6 @@ import java.net.MalformedURLException;
|
|||
import java.net.UnknownHostException;
|
||||
import java.util.*;
|
||||
|
||||
import com.google.common.base.Optional;
|
||||
import com.google.common.collect.HashMultimap;
|
||||
import com.google.common.collect.Multimap;
|
||||
import org.apache.commons.cli.*;
|
||||
|
|
@ -53,8 +52,6 @@ public class BulkLoader
|
|||
private static final String PASSWD_OPTION = "password";
|
||||
private static final String THROTTLE_MBITS = "throttle";
|
||||
|
||||
private static final String TRANSPORT_FACTORY = "transport-factory";
|
||||
|
||||
/* client encryption options */
|
||||
private static final String SSL_TRUSTSTORE = "truststore";
|
||||
private static final String SSL_TRUSTSTORE_PW = "truststore-password";
|
||||
|
|
@ -516,7 +513,6 @@ public class BulkLoader
|
|||
options.addOption("t", THROTTLE_MBITS, "throttle", "throttle speed in Mbits (default unlimited)");
|
||||
options.addOption("u", USER_OPTION, "username", "username for cassandra authentication");
|
||||
options.addOption("pw", PASSWD_OPTION, "password", "password for cassandra authentication");
|
||||
options.addOption("tf", TRANSPORT_FACTORY, "transport factory", "Fully-qualified ITransportFactory class name for creating a connection to cassandra");
|
||||
options.addOption("cph", CONNECTIONS_PER_HOST, "connectionsPerHost", "number of concurrent connections-per-host.");
|
||||
// ssl connection-related options
|
||||
options.addOption("ts", SSL_TRUSTSTORE, "TRUSTSTORE", "Client SSL: full path to truststore");
|
||||
|
|
|
|||
Loading…
Reference in New Issue