[ 
https://issues.apache.org/jira/browse/HADOOP-16191?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

wujinhu updated HADOOP-16191:
-----------------------------
    Description: 
Returned status of copyFile and copyDirectory are ignored. It's OK most of the 
time.
{code:java}
if (srcStatus.isDirectory()) {
    copyDirectory(srcPath, dstPath);
} else {
    copyFile(srcPath, srcStatus.getLen(), dstPath);
}
        
return srcPath.equals(dstPath) || delete(srcPath, true);{code}
However, oss fs can not catch errors when rename from one dir to another if the 
src dir is being deleted. 

> AliyunOSS: returned status of copyFile and copyDirectory are ignored
> --------------------------------------------------------------------
>
>                 Key: HADOOP-16191
>                 URL: https://issues.apache.org/jira/browse/HADOOP-16191
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: fs/oss
>    Affects Versions: 2.10.0, 2.9.2, 3.0.3, 3.3.0, 3.1.2
>            Reporter: wujinhu
>            Assignee: wujinhu
>            Priority: Major
>
> Returned status of copyFile and copyDirectory are ignored. It's OK most of 
> the time.
> {code:java}
> if (srcStatus.isDirectory()) {
>     copyDirectory(srcPath, dstPath);
> } else {
>     copyFile(srcPath, srcStatus.getLen(), dstPath);
> }
>       
> return srcPath.equals(dstPath) || delete(srcPath, true);{code}
> However, oss fs can not catch errors when rename from one dir to another if 
> the src dir is being deleted. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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

Reply via email to