mirror of https://github.com/apache/cassandra
Change default start_native_transport to true and remove from jvm.options
patch by Tomas Repik; reviewed by Stefan Podkowinski for CASSANDRA-13656
This commit is contained in:
parent
fd06571400
commit
12d4e2f189
|
|
@ -1,4 +1,5 @@
|
|||
4.0
|
||||
* Default for start_native_transport now true if not set in config (CASSANDRA-13656)
|
||||
* Don't add localhost to the graph when calculating where to stream from (CASSANDRA-13583)
|
||||
* Allow skipping equality-restricted clustering columns in ORDER BY clause (CASSANDRA-10271)
|
||||
* Use common nowInSec for validation compactions (CASSANDRA-13671)
|
||||
|
|
|
|||
|
|
@ -56,9 +56,6 @@
|
|||
# Set the SSL port for encrypted communication. (Default: 7001)
|
||||
#-Dcassandra.ssl_storage_port=port
|
||||
|
||||
# Enable or disable the native transport server. See start_native_transport in cassandra.yaml.
|
||||
# cassandra.start_native_transport=true|false
|
||||
|
||||
# Set the port for inter-node communication. (Default: 7000)
|
||||
#-Dcassandra.storage_port=port
|
||||
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ public class Config
|
|||
public int internode_send_buff_size_in_bytes = 0;
|
||||
public int internode_recv_buff_size_in_bytes = 0;
|
||||
|
||||
public boolean start_native_transport = false;
|
||||
public boolean start_native_transport = true;
|
||||
public int native_transport_port = 9042;
|
||||
public Integer native_transport_port_ssl = null;
|
||||
public int native_transport_max_threads = 128;
|
||||
|
|
|
|||
Loading…
Reference in New Issue