vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame^] | 1 | use dataverse fuzzy1; |
| 2 | |
| 3 | declare type DBLPType as open { |
| 4 | id: int32, |
| 5 | dblpid: string, |
| 6 | title: string, |
| 7 | authors: string, |
| 8 | misc: string |
| 9 | } |
| 10 | |
| 11 | declare nodegroup group1 on nc1; |
| 12 | |
| 13 | declare dataset DBLP(DBLPType) |
| 14 | partitioned by key id on group1; |
| 15 | |
| 16 | load dataset DBLP |
| 17 | using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter" |
| 18 | (("path"="nc1://data/fuzzyjoin/dblp/dblp-id.txt"),("format"="delimited-text"),("delimiter"=":")) pre-sorted; |
| 19 | |
| 20 | |