Repository: hbase Updated Branches: refs/heads/branch-1 90f0644d9 -> cab158173
Revert "HBASE-14583 Enabled client-side metrics by default" Caused TestShell to hang. Reverting for now. This reverts commit dced02ad9ff647118a830e10b3628a4687754a72. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/cab15817 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/cab15817 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/cab15817 Branch: refs/heads/branch-1 Commit: cab158173d34e93c5cb3dee1f42126b37aa7ac7b Parents: 90f0644 Author: stack <[email protected]> Authored: Sat Oct 10 13:19:52 2015 -0700 Committer: stack <[email protected]> Committed: Sat Oct 10 13:19:52 2015 -0700 ---------------------------------------------------------------------- .../java/org/apache/hadoop/hbase/client/ConnectionManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/cab15817/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionManager.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionManager.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionManager.java index 1def19a..0e4fb3a 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionManager.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionManager.java @@ -673,7 +673,7 @@ class ConnectionManager { 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;
