What can I do with Mapreduce? Dictionaries? Lists? What do I use it for? Give a real easy example
views:
77answers:
1
+1
A:
The classic example is counting the occurrence of words in a very large collection of documents. You can use the map step to generate a set of word counts for every document in parallel, then use the reduce step to collate all the words found in each document to a global count.
Here is a link to the documentation page you were probably looking for: http://hadoop.apache.org/common/docs/current/mapred_tutorial.html
Doug
2010-05-20 00:01:32