You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by be...@apache.org on 2018/12/06 15:46:53 UTC

[6/9] cassandra git commit: Making immediate flusher OFF by default

Making immediate flusher OFF by default


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/ef5ce7cf
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/ef5ce7cf
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/ef5ce7cf

Branch: refs/heads/cassandra-3.11
Commit: ef5ce7cf5d5bd5308f3612f8419d623a0c260abe
Parents: 9bcbb45
Author: sumanthpasupuleti <su...@gmail.com>
Authored: Tue Nov 20 08:17:01 2018 -0800
Committer: Benedict Elliott Smith <be...@apache.org>
Committed: Thu Dec 6 15:38:47 2018 +0000

----------------------------------------------------------------------
 conf/cassandra.yaml                              | 7 +------
 src/java/org/apache/cassandra/config/Config.java | 2 +-
 2 files changed, 2 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/ef5ce7cf/conf/cassandra.yaml
----------------------------------------------------------------------
diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml
index 2e6f363..84664fe 100644
--- a/conf/cassandra.yaml
+++ b/conf/cassandra.yaml
@@ -1002,9 +1002,4 @@ windows_timer_interval: 1
 # time and queue contention while iterating the backlog of messages.
 # An interval of 0 disables any wait time, which is the behavior of former Cassandra versions.
 #
-# otc_backlog_expiration_interval_ms: 200
-
-# Define use of legacy delayed flusher for replies to TCP connections. This will increase latency, but might be beneficial for
-# legacy use-cases where only a single connection is used for each Cassandra node. Default is false.
-# native_transport_flush_in_batches_legacy: false
-
+# otc_backlog_expiration_interval_ms: 200
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cassandra/blob/ef5ce7cf/src/java/org/apache/cassandra/config/Config.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/config/Config.java b/src/java/org/apache/cassandra/config/Config.java
index 6d56c74..130ff08 100644
--- a/src/java/org/apache/cassandra/config/Config.java
+++ b/src/java/org/apache/cassandra/config/Config.java
@@ -149,7 +149,7 @@ public class Config
     public Integer native_transport_max_frame_size_in_mb = 256;
     public volatile Long native_transport_max_concurrent_connections = -1L;
     public volatile Long native_transport_max_concurrent_connections_per_ip = -1L;
-    public boolean native_transport_flush_in_batches_legacy = false;
+    public boolean native_transport_flush_in_batches_legacy = true;
 
     @Deprecated
     public Integer thrift_max_message_length_in_mb = 16;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org