READ Free Dumps For Cloudera- CCD-410
Question ID 12495 | When can a reduce class also serve as a combiner without affecting the output of a |
Option A | When the types of the reduce operations input key and input value match the types of the reducers output key and output value and when the reduce operation is both communicative and associative. |
Option B | When the signature of the reduce method matches the signature of the combine method. |
Option C | Always. Code can be reused in Java since it is a polymorphic object-oriented programming language. |
Option D | Always. The point of a combiner is to serve as a mini-reducer directly after the map phase to increase performance. |
Option E | Never. Combiners and reducers must be implemented separately because they serve different purposes. |
Correct Answer | A |
Question ID 12496 | You need to run the same job many times with minor variations. Rather than hardcoding all |
Option A | hadoop “mapred.job.name=Example” MyDriver input output |
Option B | hadoop MyDriver mapred.job.name=Example input output |
Option C | hadoop MyDrive –D mapred.job.name=Example input output |
Option D | hadoop setproperty mapred.job.name=Example MyDriver input output |
Option E | hadoop setproperty (“mapred.job.name=Example”) MyDriver input output |
Correct Answer | C |