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?
|
feedback
|
|
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. | |||||||||||
feedback
|
| ||||
|
feedback
|