MAPREDUCE-6973. Fix comments on creating _SUCCESS file.
This closes #280 Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
parent
aebac6d2d2
commit
c0a0c353e8
@ -409,7 +409,7 @@ protected void commitJobInternal(JobContext context) throws IOException {
|
|||||||
LOG.info("Skip cleanup the _temporary folders under job's output " +
|
LOG.info("Skip cleanup the _temporary folders under job's output " +
|
||||||
"directory in commitJob.");
|
"directory in commitJob.");
|
||||||
} else {
|
} else {
|
||||||
// delete the _temporary folder and create a _done file in the o/p
|
// delete the _temporary folder and create a _SUCCESS file in the o/p
|
||||||
// folder
|
// folder
|
||||||
try {
|
try {
|
||||||
cleanupJob(context);
|
cleanupJob(context);
|
||||||
@ -426,6 +426,7 @@ protected void commitJobInternal(JobContext context) throws IOException {
|
|||||||
}
|
}
|
||||||
// True if the job requires output.dir marked on successful job.
|
// True if the job requires output.dir marked on successful job.
|
||||||
// Note that by default it is set to true.
|
// Note that by default it is set to true.
|
||||||
|
// Create a _SUCCESS file in the o/p folder.
|
||||||
if (context.getConfiguration().getBoolean(
|
if (context.getConfiguration().getBoolean(
|
||||||
SUCCESSFUL_JOB_OUTPUT_DIR_MARKER, true)) {
|
SUCCESSFUL_JOB_OUTPUT_DIR_MARKER, true)) {
|
||||||
Path markerPath = new Path(outputPath, SUCCEEDED_FILE_NAME);
|
Path markerPath = new Path(outputPath, SUCCEEDED_FILE_NAME);
|
||||||
|
Loading…
Reference in New Issue
Block a user