July 2017
Beginner to intermediate
715 pages
17h 3m
English
As we already said, Hadoop MapReduce is a library, that allows you to process data in a scalable way.
There are two main abstractions in the MapReduce framework: Map and Reduce. This idea originally comes from the functional programming paradigm, where map and reduce are high-level functions:
In this book, we have already used the map function from the Java Stream API quite extensively, starting with Chapter 2, Data Processing ...