Complete the code to specify the MapReduce phase that processes input data in parallel.
job.setMapperClass([1].class);
The Mapper class handles the parallel processing of input data in MapReduce.
Complete the code to set the number of reduce tasks for parallel processing.
job.setNumReduceTasks([1]);Setting the number of reduce tasks to a positive number enables parallel reduce processing.
Fix the error in the code that sets the input format for parallel data splitting.
job.setInputFormatClass([1]);TextInputFormat splits input data for parallel processing in MapReduce.
Fill both blanks to create a MapReduce job that processes data in parallel and writes output.
job.setMapperClass([1].class); job.setOutputFormatClass([2].class);
The Mapper processes data in parallel, and TextOutputFormat writes the output files.
Fill all three blanks to configure a MapReduce job with parallel map, reduce, and output format classes.
job.setMapperClass([1].class); job.setReducerClass([2].class); job.setOutputFormatClass([3].class);
Mapper and Reducer classes handle parallel processing phases, and TextOutputFormat writes the results.