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 2014/05/08 22:58:43 UTC

git commit: Ninja: add missing "enabled" option to compaction options docs

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.0 a626c6dcb -> 46f7f84ce


Ninja: add missing "enabled" option to compaction options docs

Done for CASSANDRA-7185


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

Branch: refs/heads/cassandra-2.0
Commit: 46f7f84cea0b608da22e1e315c8a05096ce494ac
Parents: a626c6d
Author: Tyler Hobbs <ty...@datastax.com>
Authored: Thu May 8 15:57:35 2014 -0500
Committer: Tyler Hobbs <ty...@datastax.com>
Committed: Thu May 8 15:57:35 2014 -0500

----------------------------------------------------------------------
 doc/cql3/CQL.textile | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/46f7f84c/doc/cql3/CQL.textile
----------------------------------------------------------------------
diff --git a/doc/cql3/CQL.textile b/doc/cql3/CQL.textile
index bedd189..66a4566 100644
--- a/doc/cql3/CQL.textile
+++ b/doc/cql3/CQL.textile
@@ -336,6 +336,7 @@ h4(#compactionOptions). @compaction@ options
 The @compaction@ property must at least define the @'class'@ sub-option, that defines the compaction strategy class to use. The default supported class are @'SizeTieredCompactionStrategy'@ and @'LeveledCompactionStrategy'@. Custom strategy can be provided by specifying the full class name as a "string constant":#constants. The rest of the sub-options depends on the chosen class. The sub-options supported by the default classes are:
 
 |_. option                        |_. supported compaction strategy |_. default |_. description |
+| @enabled@                       | _all_                           | true      | A boolean denoting whether compaction should be enabled or not.|
 | @tombstone_threshold@           | _all_                           | 0.2       | A ratio such that if a sstable has more than this ratio of gcable tombstones over all contained columns, the sstable will be compacted (with no other sstables) for the purpose of purging those tombstones. |
 | @tombstone_compaction_interval@ | _all_                           | 1 day     | The minimum time to wait after an sstable creation time before considering it for "tombstone compaction", where "tombstone compaction" is the compaction triggered if the sstable has more gcable tombstones than @tombstone_threshold@. |
 | @min_sstable_size@              | SizeTieredCompactionStrategy    | 50MB      | The size tiered strategy groups SSTables to compact in buckets. A bucket groups SSTables that differs from less than 50% in size.  However, for small sizes, this would result in a bucketing that is too fine grained. @min_sstable_size@ defines a size threshold (in bytes) below which all SSTables belong to one unique bucket|