You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by nd...@apache.org on 2015/10/09 19:46:44 UTC

hbase git commit: HBASE-14583 Enabled client-side metrics by default

Repository: hbase
Updated Branches:
  refs/heads/master 79607bd9f -> c7efd1472


HBASE-14583 Enabled client-side metrics by default


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c7efd147
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c7efd147
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c7efd147

Branch: refs/heads/master
Commit: c7efd14726e932235dff52bd73f76cb861b5b1b3
Parents: 79607bd
Author: Nick Dimiduk <nd...@apache.org>
Authored: Fri Oct 9 10:17:56 2015 -0700
Committer: Nick Dimiduk <nd...@apache.org>
Committed: Fri Oct 9 10:17:56 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/c7efd147/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 9f03184..1082c3f 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, false)) {
+    if (conf.getBoolean(CLIENT_SIDE_METRICS_ENABLED_KEY, true)) {
       this.metrics = new MetricsConnection(this);
     } else {
       this.metrics = null;