Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F40A5180E6 for ; Fri, 9 Oct 2015 17:46:44 +0000 (UTC) Received: (qmail 90296 invoked by uid 500); 9 Oct 2015 17:46:44 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 90259 invoked by uid 500); 9 Oct 2015 17:46:44 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 90250 invoked by uid 99); 9 Oct 2015 17:46:44 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Oct 2015 17:46:44 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 38263E038A; Fri, 9 Oct 2015 17:46:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ndimiduk@apache.org To: commits@hbase.apache.org Message-Id: <65fa56d9f0864970b2055341934215ac@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-14583 Enabled client-side metrics by default Date: Fri, 9 Oct 2015 17:46:44 +0000 (UTC) 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 Authored: Fri Oct 9 10:17:56 2015 -0700 Committer: Nick Dimiduk 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;