Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B4A5519FB3 for ; Tue, 29 Mar 2016 16:52:18 +0000 (UTC) Received: (qmail 93412 invoked by uid 500); 29 Mar 2016 16:52:18 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 93381 invoked by uid 500); 29 Mar 2016 16:52:18 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 93370 invoked by uid 99); 29 Mar 2016 16:52:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Mar 2016 16:52:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 49584DFC74; Tue, 29 Mar 2016 16:52:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aleksey@apache.org To: commits@cassandra.apache.org Message-Id: <598ba539457c4a79965b2bafb546982a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cassandra git commit: Compress only inter-dc traffic by default Date: Tue, 29 Mar 2016 16:52:18 +0000 (UTC) Repository: cassandra Updated Branches: refs/heads/trunk 93c750ae3 -> 761dfc2c8 Compress only inter-dc traffic by default patch by Kaide Mu; reviewed by Paulo Motta for CASSANDRA-8888 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/761dfc2c Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/761dfc2c Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/761dfc2c Branch: refs/heads/trunk Commit: 761dfc2c834a10c6a1468c1a4cabe7f0f746df5f Parents: 93c750a Author: Kaide Mu Authored: Fri Mar 25 14:28:51 2016 +0100 Committer: Aleksey Yeschenko Committed: Tue Mar 29 17:51:58 2016 +0100 ---------------------------------------------------------------------- CHANGES.txt | 1 + conf/cassandra.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/761dfc2c/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 25eff53..4810a12 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,5 @@ 3.6 + * Compress only inter-dc traffic by default (CASSANDRA-8888) * Add metrics to track write amplification (CASSANDRA-11420) * cassandra-stress: cannot handle "value-less" tables (CASSANDRA-7739) * Add/drop multiple columns in one ALTER TABLE statement (CASSANDRA-10411) http://git-wip-us.apache.org/repos/asf/cassandra/blob/761dfc2c/conf/cassandra.yaml ---------------------------------------------------------------------- diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml index 4abe96e..58bd1b6 100644 --- a/conf/cassandra.yaml +++ b/conf/cassandra.yaml @@ -930,7 +930,7 @@ client_encryption_options: # can be: all - all traffic is compressed # dc - traffic between different datacenters is compressed # none - nothing is compressed. -internode_compression: all +internode_compression: dc # Enable or disable tcp_nodelay for inter-dc communication. # Disabling it will result in larger (but fewer) network packets being sent,