You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ty...@apache.org on 2015/05/27 19:04:31 UTC

cassandra git commit: Update commitlog archiving docs now that segments aren't recycled

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 <br...@datastax.com>
Authored: Wed May 27 12:03:22 2015 -0500
Committer: Tyler Hobbs <ty...@gmail.com>
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.