READ Free Dumps For Cloudera- CCD-410
Question ID 12481 | You write MapReduce job to process 100 files in HDFS. Your MapReduce algorithm uses |
Option A | There is no difference in output between the two settings. |
Option B | With zero reducers, no reducer runs and the job throws an exception. With one reducer, instances of matching patterns are stored in a single file on HDFS. |
Option C | With zero reducers, all instances of matching patterns are gathered together in one file on HDFS. With one reducer, instances of matching patterns are stored in multiple files on HDFS. |
Option D | With zero reducers, instances of matching patterns are stored in multiple files on HDFS. With one reducer, all instances of matching patterns are gathered together in one file on HDFS. |
Correct Answer | D |
Question ID 12482 | Determine which best describes when the reduce method is first called in a MapReduce |
Option A | Reducers start copying intermediate key-value pairs from each Mapper as soon as it has completed. The programmer can configure in the job what percentage of the intermediate data should arrive before the reduce method begins. |
Option B | Reducers start copying intermediate key-value pairs from each Mapper as soon as it has completed. The reduce method is called only after all intermediate data has been copied and sorted. |
Option C | Reduce methods and map methods all start at the beginning of a job, in order to provide optimal performance for map-only or reduce-only jobs. |
Option D | Reducers start copying intermediate key-value pairs from each Mapper as soon as it has completed. The reduce method is called as soon as the intermediate key-value pairs start to arrive. |
Correct Answer | B |