Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. CREATE TABLE activities (
  2. user_id uuid,
  3. event text,
  4. reveal_at timestamp,
  5. owner_id uuid,
  6. id uuid,
  7. data text,
  8. PRIMARY KEY ((user_id, event), reveal_at, owner_id, id)
  9. ) WITH CLUSTERING ORDER BY (reveal_at DESC, owner_id ASC, id ASC) AND
  10. bloom_filter_fp_chance=0.010000 AND
  11. caching='KEYS_ONLY' AND
  12. comment='' AND
  13. dclocal_read_repair_chance=0.100000 AND
  14. gc_grace_seconds=864000 AND
  15. index_interval=128 AND
  16. read_repair_chance=0.000000 AND
  17. replicate_on_write='true' AND
  18. populate_io_cache_on_flush='false' AND
  19. default_time_to_live=0 AND
  20. speculative_retry='99.0PERCENTILE' AND
  21. memtable_flush_period_in_ms=0 AND
  22. compaction={'class': 'SizeTieredCompactionStrategy'} AND
  23. compression={'sstable_compression': 'LZ4Compressor'};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement