Skip to content

Instantly share code, notes, and snippets.

View BertrandDechoux's full-sized avatar

Bertrand Dechoux BertrandDechoux

View GitHub Profile
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@BertrandDechoux
BertrandDechoux / hadoop-map-reduce.clj
Created August 24, 2012 05:49
Hadoop map-reduce explained with clojure map, reduce and mapcat using the word count example.
; Interested in a short introduction to hadoop mapreduce?
(declare mapreduce)
; Let's look at the "hello world job" ie word count.
(def input [
[1 "hadoop map-reduce explained"]
[2 "with clojure map, reduce and mapcat"]
[3 "using the world count example"]])