-
Notifications
You must be signed in to change notification settings - Fork 11
GMQL Examples
OlgaGorlova edited this page Sep 19, 2017
·
1 revision
GMQL Engine has several deployment modes:
Example Code:
A = SELECT() /home/user1/ds/ref/;
B = SELECT() /home/user1/ds/exp/;
S = MAP() A B;
MATERIALIZE S INTO /home/user1/ds/out/S/;
A = SELECT() hdfs://127.0.0.1:9000/user/repo/user1/regions/ref/;
B = SELECT() hdfs://127.0.0.1:9000/user/repo/user1/regions/exp/;
S = MAP() A B;
MATERIALIZE S INTO hdfs://127.0.0.1:9000/user/repo/user1/regions/out/;
Example Code:
A = SELECT() ann;
B = SELECT() exp;
S = MAP() A B;
MATERIALIZE S INTO res;