From c3ff774dee93de4e64282f86556a32cbb0cab5cd Mon Sep 17 00:00:00 2001 From: Jonathan Ellis Date: Fri, 10 May 2013 08:51:52 -0500 Subject: [PATCH] enable native protocol by default --- NEWS.txt | 4 ++++ conf/cassandra.yaml | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/NEWS.txt b/NEWS.txt index 905e7de21e..63d1e58634 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -17,6 +17,10 @@ Features CQL3 documentation (http://cassandra.apache.org/doc/cql3/CQL.html) for details and examples. +Upgrading +--------- + - The native CQL transport is enabled by default on part 9042. + 1.2.4 ===== diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml index c386a780f6..cf7b13988e 100644 --- a/conf/cassandra.yaml +++ b/conf/cassandra.yaml @@ -330,11 +330,9 @@ listen_address: localhost # internode_authenticator: org.apache.cassandra.auth.AllowAllInternodeAuthenticator # Whether to start the native transport server. -# Currently, only the thrift server is started by default because the native -# transport is considered beta. # Please note that the address on which the native transport is bound is the # same as the rpc_address. The port however is different and specified below. -start_native_transport: false +start_native_transport: true # port for the CQL native transport to listen for clients on native_transport_port: 9042 # The minimum and maximum threads for handling requests when the native