Map Reduce

The concept of map-reduce is actually very simple, you got a dataset that is spread across multiple machines. There is a map function that you as an engineer or the system administrator is going to specify, that function is going to transform the data into the intermediary values ( key-value pairs) and these key-value pairs after being re-organised in some way is reduced into some final output.

There are some important points to note about map-reduce function.

back