Created
November 14, 2014 17:43
-
-
Save jsanda/9406b8d28b56aa45f2a4 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 data ( | |
metric text, | |
time timeuuid, | |
attributes map<text, text> static, | |
value double, | |
PRIMARY KEY (metric, time) | |
); | |
CREATE TABLE grouped_data ( | |
group text, | |
metric text, | |
time timeuuid, | |
attributes map<text, text> static, | |
value double, | |
PRIMARY KEY (group, metric, time) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment