Repository: hbase Updated Branches: refs/heads/master 1b66ea71b -> e37e72c16
Revert "HBASE-14583 Enabled client-side metrics by default" Causes TestShell to hang. Reverting for now till we figure why. This reverts commit c7efd14726e932235dff52bd73f76cb861b5b1b3. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/e37e72c1 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e37e72c1 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e37e72c1 Branch: refs/heads/master Commit: e37e72c1601cc2006b2587f15e5ba1f790dff64b Parents: 1b66ea7 Author: stack <[email protected]> Authored: Sat Oct 10 13:18:48 2015 -0700 Committer: stack <[email protected]> Committed: Sat Oct 10 13:18:48 2015 -0700 ---------------------------------------------------------------------- .../org/apache/hadoop/hbase/client/ConnectionImplementation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/e37e72c1/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java index 1082c3f..9f03184 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java @@ -222,7 +222,7 @@ class ConnectionImplementation implements ClusterConnection, Closeable { this.rpcCallerFactory = RpcRetryingCallerFactory.instantiate(conf, interceptor, this.stats); this.backoffPolicy = ClientBackoffPolicyFactory.create(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); } else { this.metrics = null;
