Are there any particular reasons why we have only two functions map() and reduce() in this MapReduce concept of distributed processing?? Why wasn't the Hadoop framework designed to be generic, allowing the user to make as many function calls as he desires after the initial mapping funtion?
|
|
|||||
|
|
If you just want to apply different Reduce operations for a given Map output, I would just use The goal of having a single Map and Reduce function is so that this can be easily parallelized across a wide range of machines. A Map/Reduce job is a single process that is parallelized, it doesn't really make sense IMO to try to apply several operations on the same data, if you need that you can probably extend your Reducer with what I wrote above, or write another job. |
|||
|
|
|
While Charles' answer explains the reason behind the MapReduce concept, you can very well make as many function calls as you desire after the initial mapping funtion just by overriding the
You can do the similar thing in the reducer too. |
|||||||||
|
