February 2019
Beginner to intermediate
544 pages
14h 36m
English
The minimum and maximum calculation for a specific field is a commonly used use case in MapReduce. Once the mapper completes its operation, the reducer simply iterates through all the key values and finds out the minimum and maximum in the key grouping:
We will use the following import packages:
import org.apache.Hadoop.io.IntWritable;import org.apache.Hadoop.io.LongWritable;import org.apache.Hadoop.io.Text; ...
Read now
Unlock full access