nerdexam
Cloudera

CCD-410 · Question #9

CCD-410 Question #9: Real Exam Question with Answer & Explanation

The correct answer is A. Yes, because the sum operation is both associative and commutative and the input and output types. Combiners are used to increase the efficiency of a MapReduce program. They are used to aggregate intermediate map output locally on individual mapper outputs. Combiners can help you reduce the amount of data that needs to be transferred across to the You can use your reducer code

Question

You want to count the number of occurrences for each unique word in the supplied input data. You've decided to implement this by having your mapper tokenize each word and emit a literal value 1, and then have your reducer increment a counter for each literal 1 it receives. After successful implementing this, it occurs to you that you could optimize this by specifying a combiner. Will you be able to reuse your existing Reduces as your combiner in this case and why or why not?

Options

  • AYes, because the sum operation is both associative and commutative and the input and output types
  • BNo, because the sum operation in the reducer is incompatible with the operation of a Combiner.
  • CNo, because the Reducer and Combiner are separate interfaces.
  • DNo, because the Combiner is incompatible with a mapper which doesn't use the same data type for
  • EYes, because Java is a polymorphic object-oriented language and thus reducer code can be reused

Explanation

Combiners are used to increase the efficiency of a MapReduce program. They are used to aggregate intermediate map output locally on individual mapper outputs. Combiners can help you reduce the amount of data that needs to be transferred across to the You can use your reducer code as a combiner if the operation performed is commutative and The execution of combiner is not guaranteed, Hadoop may or may not execute a combiner. Also, if required it may execute it more then 1 times. Therefore your MapReduce jobs should not depend on the combiners execution.

Community Discussion

No community discussion yet for this question.

Full CCD-410 Practice
You want to count the number of occurrences for each unique word... | CCD-410 Q#9 Answer | NerdExam