Answers for "how to change output file name part-r-00000 hadoop"

0

how to change output file name part-r-00000 hadoop

// job.setOutputFormatClass(TextOutputFormat.class);
LazyOutputFormat.setOutputFormatClass(job, TextOutputFormat.class);
MultipleOutputs.addNamedOutput(job,“20180318”, TextOutputFormat.class, Text.class, IntWritable.class);
Posted by: Guest on April-05-2021
0

how to change output file name part-r-00000 hadoop

job.getConfiguration().set(“mapreduce.output.basename”, “20180318”);
Posted by: Guest on April-05-2021

Code answers related to "how to change output file name part-r-00000 hadoop"

Browse Popular Code Answers by Language