Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cascalog invert index #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ A collection of MapReduce tasks translated (from Pig, Hive, MapReduce streaming,
* [Pig](https://github.com/echen/rosetta-scone/blob/master/distributed-grep/distributed-grep.pig)
* [Inverted Index](https://github.com/echen/rosetta-scone/tree/master/inverted-index)
* [Scalding](https://github.com/echen/rosetta-scone/blob/master/inverted-index/InvertedIndex.scala)
* [Cascalog](https://github.com/echen/rosetta-scone/blob/master/inverted-index/inverted-index.clj)
* [Hadoop Streaming](https://github.com/echen/rosetta-scone/blob/master/inverted-index/inverted_index.rb)
* [Pig](https://github.com/echen/rosetta-scone/blob/master/inverted-index/inverted-index.pig)
25 changes: 25 additions & 0 deletions inverted-index/inverted-index.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
;;;; Invert index in Cascalog.

;; bootstrap
(use 'cascalog.playground)(bootstrap)

;; define the data
(def index [
[0 "Hello World"]
[101 "The quick brown fox jumps over the lazy dog"]
[42 "Answer to the Ultimate Question of Life, the Universe, and Everything"]
])

;; the tokenize function
(defmapcatop tokenize [text]
(seq (.split text "\\s+")))

;; ensure inverted index is distinct per word
(defbufferop distinct-vals [tuples]
(list (set (map first tuples))))

;; run the query on data
(?<- (stdout) [?word ?ids]
(index ?id ?text)
(tokenize ?text :> ?word)
(distinct-vals ?id :> ?ids))