Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Chasing the Elephant

Chasing the Elephant

JRubyConfEU 2013

Theo Hultberg

August 15, 2013
Tweet

More Decks by Theo Hultberg

Other Decks in Programming

Transcript

  1. module WordCount class Mapper def map(key, value, context) value.to_s.downcase.split.each do

    |word| key = Hadoop::Io::Text.new(word) value = Hadoop::Io::IntWritable.new(1) context.write(key, value) end end end end
  2. RUBYDOOP IS LOW LEVEL I would love to see someone

    write something like Scalding or Cascading on top of it