This is an automated email from the ASF dual-hosted git repository.
kfaraz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 77b4284940e fix: Perform best effort cleanup of intermediary data in
ParallelIndexSupervisorTask (#19647)
77b4284940e is described below
commit 77b4284940e852ed24531e5155b106522d29013a
Author: Kashif Faraz <[email protected]>
AuthorDate: Wed Jul 1 19:52:30 2026 +0530
fix: Perform best effort cleanup of intermediary data in
ParallelIndexSupervisorTask (#19647)
Do not fail the task if cleanup fails.
---
.../common/task/batch/parallel/ParallelIndexSupervisorTask.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/indexing-service/src/main/java/org/apache/druid/indexing/common/task/batch/parallel/ParallelIndexSupervisorTask.java
b/indexing-service/src/main/java/org/apache/druid/indexing/common/task/batch/parallel/ParallelIndexSupervisorTask.java
index 9025c2ce8a6..2764c26c6af 100644
---
a/indexing-service/src/main/java/org/apache/druid/indexing/common/task/batch/parallel/ParallelIndexSupervisorTask.java
+++
b/indexing-service/src/main/java/org/apache/druid/indexing/common/task/batch/parallel/ParallelIndexSupervisorTask.java
@@ -1841,7 +1841,8 @@ public class ParallelIndexSupervisorTask extends
AbstractBatchIndexTask
DeepStorageIntermediaryDataManager.retrieveShuffleDataStoragePath(getId())
);
}
- catch (IOException e) {
+ catch (Exception e) {
+ // Best effort cleanup, do not fail the task if cleanup fails
LOG.warn(e, "Failed recursive deep storage cleanup for intermediary path
for task[%s]", getId());
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]