You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Allen Wittenauer (JIRA)" <ji...@apache.org> on 2014/07/21 23:40:39 UTC

[jira] [Resolved] (HADOOP-5439) FileSystem.create() with overwrite param specified sometimes takes a long time to return.

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

Allen Wittenauer resolved HADOOP-5439.
--------------------------------------

    Resolution: Fixed

> FileSystem.create() with overwrite param specified sometimes takes a long time to return.
> -----------------------------------------------------------------------------------------
>
>                 Key: HADOOP-5439
>                 URL: https://issues.apache.org/jira/browse/HADOOP-5439
>             Project: Hadoop Common
>          Issue Type: Bug
>    Affects Versions: 0.19.0
>            Reporter: He Yongqiang
>
> If a file already exists, it takes a long time for the overwrite create to return.
> {code}
> fs.create(path_1, true);
> {code}
> sometimes takes a long time. 
> Instead, the code:
> {code}
> if (fs.exists(path_1))
>     fs.delete(path_1);
> fs.create(path_1);
> {code}
> works pretty well.



--
This message was sent by Atlassian JIRA
(v6.2#6252)