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 C7E7717C06 for ; Sat, 10 Oct 2015 20:19:23 +0000 (UTC) Received: (qmail 7177 invoked by uid 500); 10 Oct 2015 20:19:23 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 7134 invoked by uid 500); 10 Oct 2015 20:19:23 -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 7125 invoked by uid 99); 10 Oct 2015 20:19:23 -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; Sat, 10 Oct 2015 20:19:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7105AE005E; Sat, 10 Oct 2015 20:19:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stack@apache.org To: commits@hbase.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: Revert "HBASE-14583 Enabled client-side metrics by default" Causes TestShell to hang. Reverting for now till we figure why. Date: Sat, 10 Oct 2015 20:19:23 +0000 (UTC) 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 Authored: Sat Oct 10 13:18:48 2015 -0700 Committer: stack 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;