Skip to content
Snippets Groups Projects
Commit 3c471745 authored by nguyentd's avatar nguyentd
Browse files

Ex twitter join

parent 46ebef23
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
A = LOAD 'sample-input/OSN/tw.txt' AS (id: long, fr: long);
good_dataA = FILTER A BY id is not null and fr is not null;
good_dataB = good_dataB;
good_dataB = good_dataA;
DUMP good_dataA;
-- TODO: compute all the two-hop paths
......
-- TODO: load the input dataset, located in ./local-input/OSN/tw.txt
A = LOAD 'sample-input/OSN/tw.txt' AS (id: long, fr: long);
good_dataA = FILTER dataset BY id is not null and fr is not null;
good_dataA = FILTER A BY id is not null and fr is not null;
good_dataB = good_dataB;
DUMP good_dataA;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment