Created
January 29, 2015 11:13
-
-
Save mfelsche/c65d1303b47b1f2af8f2 to your computer and use it in GitHub Desktop.
amplab tables
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 rankings ( | |
"pageURL" string primary key, | |
"pageRank" int, | |
"avgDuration" int | |
) clustered into 48 shards with (number_of_replicas=0, refresh_interval=0); | |
create table uservisits ( | |
"sourceIP" string, | |
"destinationURL" string, | |
"visitDate" timestamp, | |
"adRevenue" float, | |
"UserAgent" string INDEX using fulltext, | |
"cCode" string, | |
"lCode" string, | |
"searchWord" string, | |
"duration" int | |
) clustered into 96 shards with (number_of_replicas = 0, refresh_interval = 0); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment