Skip to content

Instantly share code, notes, and snippets.

@seiji
Created July 4, 2012 07:41
Show Gist options
  • Save seiji/3045945 to your computer and use it in GitHub Desktop.
Save seiji/3045945 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'mongo-hadoop'
MongoHadoop.reduce do |key, values|
count = 0
values.each do |value|
count += 1
end
{:_id => key, :count => count}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment