You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/output/committer/manifest/stages/AbstractJobOrTaskStage.java
+20-14Lines changed: 20 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,6 @@
23
23
importjava.time.Duration;
24
24
importjava.util.concurrent.TimeUnit;
25
25
importjava.util.concurrent.atomic.AtomicBoolean;
26
-
importjava.util.concurrent.atomic.AtomicInteger;
27
26
importjava.util.function.Supplier;
28
27
29
28
importorg.slf4j.Logger;
@@ -653,23 +652,28 @@ protected final <T extends AbstractManifestData> T saveManifest(
Copy file name to clipboardExpand all lines: hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/output/committer/manifest/stages/CleanupJobStage.java
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -189,7 +189,7 @@ protected Result executeStage(
189
189
} else {
190
190
// failure: log and continue
191
191
LOG.warn("{}: Exception on initial attempt at deleting base dir {}"
192
-
+ " and directory count {}. Falling back to parallel delete",
192
+
+ " with directory count {}. Falling back to parallel delete",
193
193
getName(), baseDir, directoryCount, exception);
194
194
}
195
195
}
@@ -241,6 +241,9 @@ protected Result executeStage(
241
241
exception = deleteOneDir(baseDir);
242
242
if (exception != null) {
243
243
// failure, report and continue
244
+
LOG.warn("{}: Exception on final attempt at deleting base dir {}"
Copy file name to clipboardExpand all lines: hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/test/java/org/apache/hadoop/mapreduce/lib/output/committer/manifest/ManifestCommitterTestSupport.java
0 commit comments