Repository: cassandra Updated Branches: refs/heads/cassandra-3.0 0c97908b2 -> ef5ce7cf5 refs/heads/cassandra-3.11 85e402a7f -> 866a89435 refs/heads/trunk 1f19d5f7a -> 2275ab6d6
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.0 Commit: ef5ce7cf5d5bd5308f3612f8419d623a0c260abe Parents: 9bcbb45 Author: sumanthpasupuleti <[email protected]> Authored: Tue Nov 20 08:17:01 2018 -0800 Committer: Benedict Elliott Smith <[email protected]> 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: [email protected] For additional commands, e-mail: [email protected]
