Revert "HBASE-14583 Enabled client-side metrics by default"
Causes TestShell to hang. Reverting for now till we figure why.
This reverts commit c7efd14726
.
This commit is contained in:
parent
1b66ea71b6
commit
e37e72c160
|
@ -222,7 +222,7 @@ class ConnectionImplementation implements ClusterConnection, Closeable {
|
||||||
this.rpcCallerFactory = RpcRetryingCallerFactory.instantiate(conf, interceptor, this.stats);
|
this.rpcCallerFactory = RpcRetryingCallerFactory.instantiate(conf, interceptor, this.stats);
|
||||||
this.backoffPolicy = ClientBackoffPolicyFactory.create(conf);
|
this.backoffPolicy = ClientBackoffPolicyFactory.create(conf);
|
||||||
this.asyncProcess = createAsyncProcess(this.conf);
|
this.asyncProcess = createAsyncProcess(this.conf);
|
||||||
if (conf.getBoolean(CLIENT_SIDE_METRICS_ENABLED_KEY, true)) {
|
if (conf.getBoolean(CLIENT_SIDE_METRICS_ENABLED_KEY, false)) {
|
||||||
this.metrics = new MetricsConnection(this);
|
this.metrics = new MetricsConnection(this);
|
||||||
} else {
|
} else {
|
||||||
this.metrics = null;
|
this.metrics = null;
|
||||||
|
|
Loading…
Reference in New Issue