HDFS-7675. Remove unused member DFSClient.spanReceiverHost (cmccabe)

This commit is contained in:
Colin Patrick Mccabe 2015-01-27 17:04:20 -08:00
parent ee1e06a3ab
commit d12dd47f45
2 changed files with 3 additions and 2 deletions

View File

@ -554,6 +554,8 @@ Release 2.7.0 - UNRELEASED
HDFS-7683. Combine usages and percent stats in NameNode UI.
(Vinayakumar B via wheat9)
HDFS-7675. Remove unused member DFSClient#spanReceiverHost (cmccabe)
OPTIMIZATIONS
HDFS-7454. Reduce memory footprint for AclEntries in NameNode.

View File

@ -275,7 +275,6 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
private static ThreadPoolExecutor HEDGED_READ_THREAD_POOL;
@VisibleForTesting
KeyProvider provider;
private final SpanReceiverHost spanReceiverHost;
private final Sampler<?> traceSampler;
/**
@ -620,7 +619,7 @@ public DFSClient(URI nameNodeUri, Configuration conf,
public DFSClient(URI nameNodeUri, ClientProtocol rpcNamenode,
Configuration conf, FileSystem.Statistics stats)
throws IOException {
spanReceiverHost = SpanReceiverHost.getInstance(conf);
SpanReceiverHost.getInstance(conf);
traceSampler = TraceSamplerFactory.createSampler(conf);
// Copy only the required DFSClient configuration
this.dfsClientConf = new Conf(conf);