Given the following code from a MapReduce application:
Job job = new Job(getConf(), "MyMapReduceJob");
Path in = new Path(“source1”, “source2”);
Path out = new Path(“dest1”);
FileInputFormat.setInputPaths(job, in);
FileOutputFormat.setOutputPath(job, out);
Which one of the following statements is true?
Wähle eine der folgenden: