[
https://issues.apache.org/jira/browse/HADOOP-1453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Doug Cutting updated HADOOP-1453:
---------------------------------
Resolution: Fixed
Status: Resolved (was: Patch Available)
I just committed this. Thanks, Raghu!
> exists() not necessary before DFS.open
> --------------------------------------
>
> Key: HADOOP-1453
> URL: https://issues.apache.org/jira/browse/HADOOP-1453
> Project: Hadoop
> Issue Type: Bug
> Components: dfs
> Reporter: Raghu Angadi
> Assignee: Raghu Angadi
> Fix For: 0.14.0
>
> Attachments: HADOOP-1453-01.patch, HADOOP-1453-02.patch,
> HADOOP-1453-02.patch
>
>
> {code:title=DistributedFileSystem.java:131|borderStyle=solid}
> public FSDataInputStream open(Path f, int bufferSize) throws IOException {
> if (!exists(f)) {
> throw new FileNotFoundException(f.toString());
> }
> return new DFSClient.DFSDataInputStream(dfs.open(getPath(f)),
> bufferSize);
> }
> {code}
> {{exists(f)}} adds extra namenode interaction that is not really required.
> Open is a critical DFS call.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.