Skip to content

Commit

Permalink
HDFS-8703. Merge refactor of DFSInputStream from ErasureCoding branch…
Browse files Browse the repository at this point in the history
… (Contributed by Vinayakumar B)
  • Loading branch information
vinayakumarb committed Jul 2, 2015
1 parent 37d7395 commit bff5999
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 71 deletions.
3 changes: 3 additions & 0 deletions hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
Expand Up @@ -696,6 +696,9 @@ Release 2.8.0 - UNRELEASED

HDFS-8666. Speedup the TestMover tests. (Walter Su via jing9)

HDFS-8703. Merge refactor of DFSInputStream from ErasureCoding branch
(vinayakumarb)

OPTIMIZATIONS

HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
Expand Down
Expand Up @@ -1181,7 +1181,7 @@ public DFSInputStream open(String src, int buffersize, boolean verifyChecksum)
// Get block info from namenode
TraceScope scope = getPathTraceScope("newDFSInputStream", src);
try {
return new DFSInputStream(this, src, verifyChecksum);
return new DFSInputStream(this, src, verifyChecksum, null);
} finally {
scope.close();
}
Expand Down

0 comments on commit bff5999

Please sign in to comment.