Gopal Kumar
Gopal Kumar

Reputation: 311

Output Without Additional File From a MapReduce Job in Hadoop

How to generate output from a MapReduce job without having the additional _SUCCESS file in the output repository?

Upvotes: 0

Views: 216

Answers (1)

Manish Pansari
Manish Pansari

Reputation: 401

use this property in your java program. conf.set("mapreduce.fileoutputcommitter.marksuccessfuljobs", "false");

Upvotes: 1

Related Questions