HDFS-7336. Unused member DFSInputStream.buffersize. Contributed by Milan Desai.
This commit is contained in:
parent
693939782b
commit
5c8b55856b
|
@ -92,6 +92,8 @@ Release 2.7.0 - UNRELEASED
|
|||
HDFS-7329. Improve logging when MiniDFSCluster fails to start.
|
||||
(Byron Wong via shv)
|
||||
|
||||
HDFS-7336. Unused member DFSInputStream.buffersize. (Milan Desai via shv)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -1510,7 +1510,7 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|||
throws IOException, UnresolvedLinkException {
|
||||
checkOpen();
|
||||
// Get block info from namenode
|
||||
return new DFSInputStream(this, src, buffersize, verifyChecksum);
|
||||
return new DFSInputStream(this, src, verifyChecksum);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -41,7 +41,6 @@ import java.util.concurrent.ExecutionException;
|
|||
import java.util.concurrent.ExecutorCompletionService;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.atomic.AtomicLong;
|
||||
|
||||
import org.apache.commons.io.IOUtils;
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
|
@ -215,7 +214,6 @@ implements ByteBufferReadable, CanSetDropBehind, CanSetReadahead,
|
|||
* parallel accesses to DFSInputStream (through ptreads) properly */
|
||||
private final ConcurrentHashMap<DatanodeInfo, DatanodeInfo> deadNodes =
|
||||
new ConcurrentHashMap<DatanodeInfo, DatanodeInfo>();
|
||||
private int buffersize = 1;
|
||||
|
||||
private final byte[] oneByteBuf = new byte[1]; // used for 'int read()'
|
||||
|
||||
|
@ -223,11 +221,10 @@ implements ByteBufferReadable, CanSetDropBehind, CanSetReadahead,
|
|||
deadNodes.put(dnInfo, dnInfo);
|
||||
}
|
||||
|
||||
DFSInputStream(DFSClient dfsClient, String src, int buffersize, boolean verifyChecksum
|
||||
DFSInputStream(DFSClient dfsClient, String src, boolean verifyChecksum
|
||||
) throws IOException, UnresolvedLinkException {
|
||||
this.dfsClient = dfsClient;
|
||||
this.verifyChecksum = verifyChecksum;
|
||||
this.buffersize = buffersize;
|
||||
this.src = src;
|
||||
this.cachingStrategy =
|
||||
dfsClient.getDefaultReadCachingStrategy();
|
||||
|
|
Loading…
Reference in New Issue