blob: 0cb6b21692081e1eee1c283cf485aee0dd73cf3d [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001use dataverse fuzzy1;
2
3declare type DBLPType as open {
4 id: int32,
5 dblpid: string,
6 title: string,
7 authors: string,
8 misc: string
9}
10
11declare nodegroup group1 on rainbow-01, rainbow-02, rainbow-03,
12rainbow-04, rainbow-05;
13
14declare dataset DBLP(DBLPType)
15 partitioned by key id on group1;
16
17load dataset DBLP
18using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
19(("path"="rainbow-01:///home/hyracks/demo-data/dblp-id.txt"),("format"="delimited-text"),("delimiter"=":") pre-sorted;