| drop dataverse test if exists; |
| create dataverse test; |
| use dataverse test; |
| |
| create type DBLPType as closed { |
| id: int32, |
| dblpid: string, |
| title: string, |
| authors: string, |
| misc: string |
| } |
| |
| create nodegroup group1 if not exists on nc1, nc2; |
| |
| create dataset DBLP(DBLPType) |
| primary key id on group1; |
| |
| load dataset DBLP |
| using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter" |
| (("path"="nc1://data/dblp-small/dblp-small-id.txt"),("format"="delimited-text"),("delimiter"=":")) pre-sorted; |
| |
| write output to nc1:"rttest/similarity_fuzzyeq-similarity-jaccard.adm"; |
| |
| set simfunction 'jaccard'; |
| set simthreshold '0.5f'; |
| |
| for $paper in dataset('DBLP') |
| where word-tokens($paper.title) ~= word-tokens("Transactions for Cooperative Environments") |
| return $paper |