Which of the following class is provided by the Aggregate package?
Reducer
Well Done. Your Answer is Correct Keep it Up! Explanation: Aggregate provides a special reducer class and a special combiner class, and a list of simple aggregators that perform aggregations such as “sum”, “max”, “min” and so on over a sequence of values.
Hadoop has a library class, org.apache.hadoop.mapred.lib.FieldSelectionMapReduce, that effectively allows you to process text data like the unix ______ utility.
Cut
Well Done. Your Answer is Correct Keep it Up! Explanation: The map function defined in the class treats each input key/value pair as a list of fields.
______________ class allows the Map/Reduce framework to partition the map outputs based on certain key fields, not the whole keys.
KeyFieldBasedPartitioner
Well Done. Your Answer is Correct Keep it Up! Explanation: The primary key is used for partitioning, and the combination of the primary and secondary keys is used for sorting.