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 27EE91763C for ; Wed, 27 May 2015 17:04:32 +0000 (UTC) Received: (qmail 18166 invoked by uid 500); 27 May 2015 17:04:31 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 18127 invoked by uid 500); 27 May 2015 17:04:31 -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 18115 invoked by uid 99); 27 May 2015 17:04:31 -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; Wed, 27 May 2015 17:04:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A0061DFFCF; Wed, 27 May 2015 17:04:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tylerhobbs@apache.org To: commits@cassandra.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cassandra git commit: Update commitlog archiving docs now that segments aren't recycled Date: Wed, 27 May 2015 17:04:31 +0000 (UTC) Repository: cassandra Updated Branches: refs/heads/cassandra-2.2 860141229 -> f9c998cbc Update commitlog archiving docs now that segments aren't recycled Patch by Branimir Lambov; reviewed by Ariel Weisberg for CASSANDRA-9350 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/f9c998cb Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/f9c998cb Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/f9c998cb Branch: refs/heads/cassandra-2.2 Commit: f9c998cbc33c1cdbd65c1b57a1e3fba6c38a17a5 Parents: 8601412 Author: Branimir Lambov Authored: Wed May 27 12:03:22 2015 -0500 Committer: Tyler Hobbs Committed: Wed May 27 12:03:22 2015 -0500 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ conf/commitlog_archiving.properties | 7 ------- 2 files changed, 2 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/f9c998cb/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 454bd65..e183137 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,6 @@ 2.2 + * Update commitlog archiving examples now that commitlog segments are + not recycled (CASSANDRA-9350) * Extend Transactional API to sstable lifecycle management (CASSANDRA-8568) * (cqlsh) Add support for native protocol 4 (CASSANDRA-9399) * Ensure that UDF and UDAs are keyspace-isolated (CASSANDRA-9409) http://git-wip-us.apache.org/repos/asf/cassandra/blob/f9c998cb/conf/commitlog_archiving.properties ---------------------------------------------------------------------- diff --git a/conf/commitlog_archiving.properties b/conf/commitlog_archiving.properties index 109a50b..393259c 100644 --- a/conf/commitlog_archiving.properties +++ b/conf/commitlog_archiving.properties @@ -22,13 +22,6 @@ # %name => Name of the commit log. # Example: archive_command=/bin/ln %path /backup/%name # -# commitlog archiving configuration. Leave blank to disable. - -# Command to execute to archive a commitlog segment -# Parameters: %path => Fully qualified path of the segment to archive -# %name => Name of the commit log. -# Example: archive_command=/bin/cp -f %path /backup/%name -# # Limitation: *_command= expects one command with arguments. STDOUT # and STDIN or multiple commands cannot be executed. You might want # to script multiple commands and add a pointer here.