Skip to content

Instantly share code, notes, and snippets.

@seiji
Created July 4, 2012 07:41
Show Gist options
  • Save seiji/3045943 to your computer and use it in GitHub Desktop.
Save seiji/3045943 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'mongo-hadoop'
MongoHadoop.map do |document|
if document['user'] and document['user']['time_zone']
[{ :_id => document['user']['time_zone'], :count => 1 }]
else
[{ :_id => 'Unknown', :count => 1 }]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment