MAPREDUCE-7041. MR should not try to clean up at first job attempt. (Gergo Repas via Haibo Chen)

This commit is contained in:
Haibo Chen 2018-01-25 16:11:01 -08:00
parent ff8378eb1b
commit cc10852252
1 changed files with 1 additions and 1 deletions

View File

@ -1400,7 +1400,7 @@ public class MRAppMaster extends CompositeService {
private void cleanUpPreviousJobOutput() {
// recovered application masters should not remove data from previous job
if (!recovered()) {
if (!isFirstAttempt() && !recovered()) {
JobContext jobContext = getJobContextFromConf(getConfig());
try {
LOG.info("Starting to clean up previous job's temporary files");