[ 
https://issues.apache.org/jira/browse/HADOOP-17907?focusedWorklogId=650422&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-650422
 ]

ASF GitHub Bot logged work on HADOOP-17907:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 14/Sep/21 08:48
            Start Date: 14/Sep/21 08:48
    Worklog Time Spent: 10m 
      Work Description: ayushtkn commented on a change in pull request #3431:
URL: https://github.com/apache/hadoop/pull/3431#discussion_r708054511



##########
File path: 
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FileUtil.java
##########
@@ -182,7 +183,7 @@ public static boolean fullyDelete(final File dir, boolean 
tryGrantPermissions) {
       return true;
     }
     // handle nonempty directory deletion
-    if (!fullyDeleteContents(dir, tryGrantPermissions)) {
+    if (!FileUtils.isSymlink(dir) && !fullyDeleteContents(dir, 
tryGrantPermissions)) {

Review comment:
       Makes sense then....




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 650422)
    Time Spent: 50m  (was: 40m)

> FileUtil#fullyDelete deletes contents of sym-linked directory when symlink 
> cannot be deleted because of local fs fault
> ----------------------------------------------------------------------------------------------------------------------
>
>                 Key: HADOOP-17907
>                 URL: https://issues.apache.org/jira/browse/HADOOP-17907
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: fs
>            Reporter: Weihao Zheng
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 50m
>  Remaining Estimate: 0h
>
> As discussed in HADOOP-6536, FileUtil#fullyDelete should not delete the 
> contents of the sym-linked directory when we pass a symlink parameter. 
> Currently we try to delete the resource first by calling deleteImpl, and if 
> deleteImpl is failed, we regard it as non-empty directory and remove all its 
> contents and then itself. This logic behaves wrong when local file system 
> cannot delete symlink to a directory because of faulty disk, local system's 
> error, etc. When we cannot delete it in the first time, hadoop will try to 
> remove all the contents of the directory it pointed to and leave an empty dir.
> So, we should add an isSymlink checking before we call fullyDeleteContents to 
> prevent such behavior.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to