Skip to content

Commit

Permalink
added cf to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
zznate committed Jan 24, 2012
1 parent 114a217 commit f43d300
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions stress-schema.txt
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit f43d300

Please sign in to comment.