Write arbitrary map and reduce function
开发者_C百科I want to write my own map and reduce function in mapreduce framework How can I do that??(my programming language is java)
Thanks.
Just extend from the Mapper and Reducer class and override the methods you need.
Start by reading the MapReduce Tutorial, then start implementing of your application. If you run into problems, feel free to ask a more specific question.
精彩评论