From f43d3008e77ffbfe43671a87494fa32c6ab1725a Mon Sep 17 00:00:00 2001 From: zznate Date: Tue, 24 Jan 2012 12:26:19 -0600 Subject: [PATCH] added cf to schema --- stress-schema.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/stress-schema.txt b/stress-schema.txt index 5c12a9c..62ecf6d 100644 --- a/stress-schema.txt +++ b/stress-schema.txt @@ -1,12 +1,13 @@ create keyspace StressKeyspace with placement_strategy = 'SimpleStrategy' - and strategy_options = [{replication_factor : 1}]; + and strategy_options = {replication_factor : 1}; use StressKeyspace; drop column family StressStandard; create column family StressStandard + with comparator = UTF8Type; + +create column family CounterCf with comparator = UTF8Type - and keys_cached = 10000 - and memtable_flush_after = 1440 - and memtable_throughput = 32; + and default_validation_class = CounterColumnType;