Skip to content

Instantly share code, notes, and snippets.

@jsanda
Created November 14, 2014 17:43
Show Gist options
  • Save jsanda/9406b8d28b56aa45f2a4 to your computer and use it in GitHub Desktop.
Save jsanda/9406b8d28b56aa45f2a4 to your computer and use it in GitHub Desktop.
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