Reputation: 311
How to generate output from a MapReduce job without having the additional _SUCCESS file in the output repository?
Upvotes: 0
Views: 216
Reputation: 401
use this property in your java program. conf.set("mapreduce.fileoutputcommitter.marksuccessfuljobs", "false");
Upvotes: 1