-
Notifications
You must be signed in to change notification settings - Fork 1
/
cassandra.cql
778 lines (666 loc) · 19 KB
/
cassandra.cql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
-- Wikidumps
CREATE KEYSPACE wikidumps WITH REPLICATION = {
'class' : 'SimpleStrategy',
'replication_factor' : 3
};
-- Wikidumps.Wikipedia
CREATE TYPE wikidumps.link (
alias text,
page text,
offset int,
context map<text, int>,
article text
);
CREATE TYPE wikidumps.entitylink (
alias text,
entity text,
offset int
);
CREATE TABLE wikidumps.parsedwikipedia (
title text PRIMARY KEY,
categorylinks frozen<list<frozen<link>>>,
categorylinksreduced frozen<list<frozen<link>>>,
context map<text, int>,
disambiguationlinks frozen<list<frozen<link>>>,
disambiguationlinksreduced frozen<list<frozen<link>>>,
foundaliases list<text>,
linkswithcontext frozen<list<frozen<link>>>,
listlinks list<frozen<link>>,
listlinksreduced list<frozen<link>>,
rawextendedlinks frozen<list<frozen<extendedlink>>>,
templatelinks list<frozen<link>>,
templatelinksreduced list<frozen<link>>,
text text,
textlinks list<frozen<link>>,
textlinksreduced list<frozen<link>>,
triealiases frozen<list<frozen<triealias>>>
);
CREATE TABLE wikidumps.parsedwikipedia_backup (
title text PRIMARY KEY,
categorylinks frozen<list<frozen<link>>>,
context map<text, int>,
disambiguationlinks frozen<list<frozen<link>>>,
extendedlinks frozen<list<frozen<link>>>,
foundaliases list<text>,
linkswithcontext frozen<list<frozen<link>>>,
listlinks list<frozen<link>>,
templatelinks list<frozen<link>>,
text text,
textlinks list<frozen<link>>,
triealiases frozen<list<frozen<triealias>>>
);
CREATE TABLE wikidumps.wikipedia (
title text PRIMARY KEY,
text text
);
CREATE TABLE wikidumps.wikipedialinks (
alias text PRIMARY KEY,
pages map<text, int>,
pagesreduced map<text, int>,
linkoccurrences int,
totaloccurrences int
);
CREATE TABLE wikidumps.wikipediapages (
page text PRIMARY KEY,
aliases map<text, int>,
aliasesreduced map<text, int>
);
CREATE TABLE wikidumps.wikipediadocfreq (
word text PRIMARY KEY,
count int
);
CREATE TABLE wikidumps.wikipediasentences (
articletitle text,
articleoffset int,
text text,
entities frozen<list<frozen<entitylink>>>,
bagofwords frozen<list<text>>,
PRIMARY KEY (articletitle, articleoffset)
);
CREATE TYPE wikidumps.multifeature (
value double,
rank int,
delta_top double,
delta_successor double
);
CREATE TABLE wikidumps.featureentries (
article text,
offset int,
alias text,
entity text,
link_score double,
entity_score frozen<multifeature>,
cosine_sim frozen<multifeature>,
correct boolean,
PRIMARY KEY (article, offset, alias, entity)
);
CREATE TABLE wikidumps.featureentrieswithsof (
article text,
offset int,
alias text,
entity text,
link_score double,
entity_score multifeature,
cosine_sim multifeature,
correct boolean,
PRIMARY KEY (article, offset, alias, entity)
);
CREATE TYPE wikidumps.precisionrecalldatatuple (
threshold double,
precision double,
recall double,
fscore double
);
CREATE TABLE wikidumps.sim_measure_stats (
id timeuuid PRIMARY KEY,
comment text,
data list<frozen<precisionrecalldatatuple>>,
xaxis text,
yaxis text
);
CREATE TYPE wikidumps.triealias (
alias text,
offset int,
context map<text, int>
);
CREATE TABLE wikidumps.linkedarticles (
title text PRIMARY KEY,
text text
);
CREATE TABLE wikidumps.wikipediacooccurrences (
entityList frozen<list<text>> PRIMARY KEY,
count int
);
CREATE TABLE wikidumps.spiegel (
id text PRIMARY KEY,
title text,
foundentities frozen<list<frozen<link>>>,
text text,
triealiases frozen<list<frozen<triealias>>>
);
CREATE TABLE wikidumps.wikipedianel (
id text PRIMARY KEY,
title text,
text text,
triealiases frozen<list<triealias>>,
foundentities frozen<list<frozen<link>>>
);
CREATE TABLE wikidumps.redirects (
alias text PRIMARY KEY,
page text
);
CREATE TABLE wikidumps.dbpediarelations (
subjectentity text,
relationtype text,
objectentity text,
PRIMARY KEY (subjectentity, relationtype, objectentity)
);
CREATE TABLE wikidumps.relationpredictions (
subjectentity text,
relationtype text,
objectentity text,
dbpedia boolean,
sentences frozen<list<sentence>>,
count int,
normalizedcount double,
PRIMARY KEY (subjectentity, relationtype, objectentity)
);
CREATE TYPE wikidumps.sentence (
articletitle text,
articleoffset int,
text text,
entities frozen<list<frozen<entitylink>>>,
bagofwords frozen<list<text>>,
PRIMARY KEY (articletitle, articleoffset)
);
CREATE TABLE wikidumps.wikipediaarticlecount (
countedtable text PRIMARY KEY,
count bigint
);
CREATE TABLE wikidumps.articletfidf (
article text PRIMARY KEY,
tfidf map<text, double>
);
CREATE TABLE wikidumps.dbpediarelations (
subjectentity text,
relationtype text,
objectentity text,
PRIMARY KEY (subjectentity, relationtype, objectentity)
);
-- Wikidumps.Wikidata
CREATE TABLE wikidumps.wikidata (
id text PRIMARY KEY,
aliases list<text>,
data map<text, frozen<list<text>>>,
description text,
entitytype text,
enwikiname text,
instancetype text,
label text,
wikiname text
);
-- Wikidumps.DBpedia
CREATE TABLE wikidumps.dbpedia (
dbpedianame text PRIMARY KEY,
data map<text, frozen<list<text>>>,
description text,
instancetype text,
label text,
wikipageid text,
wikidataid text
);
CREATE TYPE wikidumps.extendedlink (
alias text,
page map<text, int>,
offset int
);
CREATE TABLE wikidumps.relationclassifierstats (
id timeuuid PRIMARY KEY,
rel text,
sentenceswithrelation int,
sentenceswithnorelation int,
average precisionrecalldatatuple,
data list<frozen<precisionrecalldatatuple>>,
comment text
);
-- Fuzzy Matching NEL
CREATE KEYSPACE fuzzy WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 };
-- Types
CREATE TYPE fuzzy.namedentity (
start int,
length int,
neType text
);
-- Tables
CREATE TABLE fuzzy.ner_articles (
id text,
uuid uuid,
title text,
text text,
nerentities list<frozen<namedentity>>,
PRIMARY KEY (uuid, id)
);
CREATE TABLE fuzzy.matched_entities (
subject_id uuid,
subject_name text,
article_id uuid,
entity_name text,
article_source text,
score double,
PRIMARY KEY (article_id, subject_id, entity_name)
);
-- Datalake
CREATE KEYSPACE datalake WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 };
-- Types
CREATE TYPE datalake.blockstats (
key text,
numsubjects int,
numstaging int,
precision double
);
CREATE TYPE datalake.candidate (
id uuid,
name text,
score double
);
CREATE TYPE datalake.subject (
id uuid,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
master uuid,
master_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>
);
CREATE TYPE datalake.version (
version timeuuid,
value frozen<list<text>>,
validity frozen<map<text, text>>,
datasources frozen<list<text>>,
timestamp timestamp,
program text
);
-- Tables
CREATE TABLE datalake.blockingstats (
jobid timeuuid,
schemetag text,
blockcount int,
comment text,
comparisoncount bigint,
data frozen<SET<frozen<blockstats>>>,
pairscompleteness double,
xaxis text,
yaxis text,
PRIMARY KEY (jobid, schemetag)
);
CREATE TABLE datalake.duplicates (
subject_id uuid PRIMARY KEY,
subject_name text,
datasource text,
candidates list<frozen<candidate>>
);
CREATE TABLE datalake.graphs (
id uuid PRIMARY KEY,
graphtype text,
nodenames list<text>,
nodes list<uuid>,
size int
);
CREATE TABLE datalake.kompass_entities (
id uuid PRIMARY KEY,
data map<text, frozen<list<text>>>,
instancetype text,
name text
);
CREATE TABLE datalake.object (
id uuid PRIMARY KEY,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>
);
CREATE TABLE datalake.subject (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE datalake.subject_dbpedia (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE datalake.subject_implisense (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE datalake.subject_kompass (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE datalake.subject_temp (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE datalake.subject_wikidata (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE datalake.version (
version timeuuid PRIMARY KEY,
datasources list<text>,
program text,
subjecttable text,
timestamp timestamp
);
CREATE TABLE datalake.versiondiff (
oldversion timeuuid,
newversion timeuuid,
id uuid,
aliases text,
category text,
datasource text,
master text,
name text,
properties text,
relations text,
PRIMARY KEY ((oldversion, newversion), id)
);
-- Indices
CREATE CUSTOM INDEX ON datalake.subject (name) USING 'org.apache.cassandra.index.sasi.SASIIndex'
WITH OPTIONS = {
'analyzer_class': 'org.apache.cassandra.index.sasi.analyzer.NonTokenizingAnalyzer',
'case_sensitive': 'false'
};
CREATE CUSTOM INDEX ON datalake.duplicates (subject_name) USING 'org.apache.cassandra.index.sasi.SASIIndex'
WITH OPTIONS = {
'analyzer_class': 'org.apache.cassandra.index.sasi.analyzer.NonTokenizingAnalyzer',
'case_sensitive': 'false'
};
-- Evaluation
CREATE KEYSPACE evaluation WITH REPLICATION = {
'class' : 'SimpleStrategy',
'replication_factor' : 3
};
-- Types
CREATE TYPE evaluation.candidate (
id uuid,
name text,
score double
);
CREATE TYPE evaluation.precisionrecalldatatuple (
threshold double,
precision double,
recall double,
fscore double
);
CREATE TYPE evaluation.subject (
id uuid,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
master uuid,
master_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>
);
CREATE TYPE evaluation.version (
version timeuuid,
value frozen<list<text>>,
validity frozen<map<text, text>>,
datasources frozen<list<text>>,
timestamp timestamp,
program text
);
-- Tables
CREATE TABLE evaluation.dbpedia_wikidata_deduplication_only_uuid (
subject_id uuid PRIMARY KEY,
candidates list<frozen<tuple<uuid, text, double>>>
);
CREATE TABLE evaluation.duplicatecandidates (
subject_id uuid PRIMARY KEY,
candidates list<frozen<tuple<subject, text, double>>>
);
CREATE TABLE evaluation.dbpedia_wikidata_duplicates (
subject_id uuid PRIMARY KEY,
subject_name text,
datasources text,
candidates list<frozen<candidate>>
);
CREATE TABLE evaluation.featureentries (
id uuid PRIMARY KEY,
subject frozen<subject>,
staging frozen<subject>,
score map<text, frozen<list<double>>>,
correct boolean
);
CREATE TABLE evaluation.goldstandard (
id1 uuid PRIMARY KEY,
id2 uuid
);
CREATE TABLE evaluation.sim_measure_stats (
id timeuuid PRIMARY KEY,
comment text,
data list<frozen<precisionrecalldatatuple>>,
xaxis text,
yaxis text
);
CREATE TABLE evaluation.subject (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE evaluation.subject_dbpedia (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE evaluation.subject_temp (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE evaluation.subject_wikidata (
id uuid,
master uuid,
master_history list<frozen<version>>,
datasource text,
aliases list<text>,
aliases_history list<frozen<version>>,
category text,
category_history list<frozen<version>>,
name text,
name_history list<frozen<version>>,
properties map<text, frozen<list<text>>>,
properties_history map<text, frozen<list<frozen<version>>>>,
relations map<uuid, frozen<map<text, text>>>,
relations_history map<uuid, frozen<map<text, frozen<list<frozen<version>>>>>>,
PRIMARY KEY ((master), id, datasource)
);
CREATE TABLE evaluation.version (
version timeuuid PRIMARY KEY,
datasources list<text>,
program text,
timestamp timestamp
);
-- CLE
CREATE KEYSPACE cle WITH REPLICATION = {
'class' : 'SimpleStrategy',
'replication_factor' : 3
};
CREATE TABLE cle.events (
type text,
user text,
timestamp timestamp,
props map<text, text>,
PRIMARY KEY ((type, user), timestamp)
) WITH CLUSTERING ORDER BY (timestamp DESC);
-- Sentence Embeddings
CREATE KEYSPACE embeddings WITH REPLICATION = {
'class' : 'SimpleStrategy',
'replication_factor' : 3
};
CREATE TABLE embeddings.sentences (
id bigint PRIMARY KEY,
sentence text
);
CREATE TABLE embeddings.sentenceembeddings (
id bigint PRIMARY KEY,
cluster int,
embedding list<double>,
sentence text,
tokens list<text>
);
CREATE TABLE embeddings.dependencytrees (
id bigint PRIMARY KEY,
dependency_tree text,
pattern text,
patternfrequency int,
relations list<frozen<tuple<frozen<list<text>>, frozen<list<text>>, frozen<list<text>>>>>,
sentence text
);
CREATE TABLE embeddings.companysentences (
id bigint PRIMARY KEY,
dependency_tree text,
pattern text,
patternfrequency int,
relations list<frozen<tuple<frozen<list<text>>, frozen<list<text>>, frozen<list<text>>>>>,
sentence text
);
CREATE TABLE embeddings.dpt_patterns (
pattern text PRIMARY KEY,
frequency int,
sentences list<text>
);
-- Indices
CREATE CUSTOM INDEX ON embeddings.dependencytrees (sentence) USING 'org.apache.cassandra.index.sasi.SASIIndex'
WITH OPTIONS = {
'analyzer_class': 'org.apache.cassandra.index.sasi.analyzer.NonTokenizingAnalyzer',
'case_sensitive': 'false'
};