Advertisement
Guest User

cassandra column family

a guest
Jun 17th, 2013
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. CREATE TABLE t1 (
  2. ise text PRIMARY KEY,
  3. filtre int,
  4. value_1 int
  5. ) WITH
  6. bloom_filter_fp_chance=0.010000 AND
  7. caching='KEYS_ONLY' AND
  8. comment='' AND
  9. dclocal_read_repair_chance=0.000000 AND
  10. gc_grace_seconds=864000 AND
  11. read_repair_chance=0.100000 AND
  12. replicate_on_write='true' AND
  13. populate_io_cache_on_flush='false' AND
  14. compaction={'class': 'SizeTieredCompactionStrategy'} AND
  15. compression={'sstable_compression': 'SnappyCompressor'};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement