i want to write a mapreduce code for counting number of records in given CSV file.i am not getting what to do in map and what to do in reduce how should i go about solving this can anyone suggest something?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Your mapper must emit a fixed key ( just use a Text with the value "count") an a fixed value of 1 (same as you see in the wordcount example).

Then simply use a LongSumReducer as your reducer.

The output of your job will be a record with the key "count" and the value isthe number of records you are looking for.

You have the option of (dramatically!) improving the performance by using the same LongSumReducer as a combiner.

link|improve this answer
thanks for your anwer can you please tell me what exactly is LongSumReducer and how it is different from normal reducer? – chhaya vishwakarma Feb 13 at 10:24
LongSumReducer is a simple implementation of a reducer that does exactly what you need. So you don't have to write it yourself. I added the URL to the documentation in my answer. – Niels Basjes Feb 13 at 15:09
i want my file name to be key how can i do that.. – chhaya vishwakarma Feb 14 at 5:23
can you please tell me how to use LongSumReducer? can you provide me code snippet which will help me? – chhaya vishwakarma Feb 14 at 11:49
This code is trivial when you simply try to write it yourself. Checkout a Hadoop tutorial ( developer.yahoo.com/hadoop/tutorial/module4.html ) or a good Hadoop book and try to write it yourself. This is not a "other people do my homework" site. – Niels Basjes Feb 14 at 17:00
show 1 more comment
feedback
  • Your map should emit 1 for each record read
  • your combiner should emit the sum of all the "1"s it got (sub total per map)
  • you reducer should emit the the grand total number of records
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.