blob: f4d8ae0ec349bd699dfad7ca08a0bdb7a55a80df [file] [log] [blame]
use dataverse fuzzy1;
declare type DBLPType as open {
id: int32,
dblpid: string,
title: string,
authors: string,
misc: string
}
declare nodegroup group1 on rainbow-01, rainbow-02, rainbow-03,
rainbow-04, rainbow-05;
declare dataset DBLPSmall(DBLPType)
partitioned by key id on group1;
load dataset DBLPSmall
using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
(("path"="rainbow-01:///home/hyracks/demo-data/dblp-small-id.txt"),("format"="delimited-text"),("delimiter"=":") pre-sorted;