Created
July 28, 2016 11:24
-
-
Save umurgdk/8504cb3f241dd7c1921a588b16ad66e4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| CREATE TABLE "Measures" ( | |
| key text, | |
| created_at timestamp, | |
| updated_at timestamp, | |
| version = timestamp, | |
| start_date text, | |
| end_date text, | |
| unit text, | |
| target varint, | |
| target_type text, | |
| target_delta varint, | |
| target_delta_is_percent boolean, | |
| baseline_type text, | |
| baseline varint, | |
| metric text, | |
| metric_with_metadata text, | |
| comparison text, | |
| metadata text, | |
| target_tolerance varint, | |
| PRIMARY KEY ((key)) | |
| ) WITH COMPACT STORAGE AND | |
| bloom_filter_fp_chance=0.010000 AND | |
| caching='KEYS_ONLY' AND | |
| comment='' AND | |
| dclocal_read_repair_chance=0.000000 AND | |
| gc_grace_seconds=864000 AND | |
| index_interval=128 AND | |
| read_repair_chance=0.100000 AND | |
| replicate_on_write='true' AND | |
| populate_io_cache_on_flush='false' AND | |
| default_time_to_live=0 AND | |
| speculative_retry='99.0PERCENTILE' AND | |
| memtable_flush_period_in_ms=0 AND | |
| compaction={'class': 'SizeTieredCompactionStrategy'} AND | |
| compression={'sstable_compression': 'SnappyCompressor'}; |
msimav
commented
Jul 28, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment