-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zznate
committed
Jan 24, 2012
1 parent
114a217
commit f43d300
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|