Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E3365200B7C for ; Thu, 25 Aug 2016 06:55:44 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E1D18160AC1; Thu, 25 Aug 2016 04:55:44 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 363E9160AB1 for ; Thu, 25 Aug 2016 06:55:44 +0200 (CEST) Received: (qmail 34877 invoked by uid 500); 25 Aug 2016 04:55:43 -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 34868 invoked by uid 99); 25 Aug 2016 04:55:43 -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; Thu, 25 Aug 2016 04:55:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3D5F5E00DB; Thu, 25 Aug 2016 04:55:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tedyu@apache.org To: commits@hbase.apache.org Message-Id: <0e7ec6ad2c9e4786a98e99e486fce498@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-16462 TestRSGroupsBas#testGroupBalance may hang due to uneven region distribution (Guangxu Cheng) Date: Thu, 25 Aug 2016 04:55:43 +0000 (UTC) archived-at: Thu, 25 Aug 2016 04:55:45 -0000 Repository: hbase Updated Branches: refs/heads/master a1f760ff7 -> 44c9021d6 HBASE-16462 TestRSGroupsBas#testGroupBalance may hang due to uneven region distribution (Guangxu Cheng) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/44c9021d Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/44c9021d Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/44c9021d Branch: refs/heads/master Commit: 44c9021d67b0e922e1d2f5f53908742aceab6c80 Parents: a1f760f Author: tedyu Authored: Wed Aug 24 21:55:37 2016 -0700 Committer: tedyu Committed: Wed Aug 24 21:55:37 2016 -0700 ---------------------------------------------------------------------- .../test/java/org/apache/hadoop/hbase/rsgroup/TestRSGroups.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/44c9021d/hbase-rsgroup/src/test/java/org/apache/hadoop/hbase/rsgroup/TestRSGroups.java ---------------------------------------------------------------------- diff --git a/hbase-rsgroup/src/test/java/org/apache/hadoop/hbase/rsgroup/TestRSGroups.java b/hbase-rsgroup/src/test/java/org/apache/hadoop/hbase/rsgroup/TestRSGroups.java index 25c54b2..73e021e 100644 --- a/hbase-rsgroup/src/test/java/org/apache/hadoop/hbase/rsgroup/TestRSGroups.java +++ b/hbase-rsgroup/src/test/java/org/apache/hadoop/hbase/rsgroup/TestRSGroups.java @@ -68,6 +68,8 @@ public class TestRSGroups extends TestRSGroupsBase { @BeforeClass public static void setUp() throws Exception { TEST_UTIL = new HBaseTestingUtility(); + TEST_UTIL.getConfiguration().setFloat( + "hbase.master.balancer.stochastic.tableSkewCost", 6000); TEST_UTIL.getConfiguration().set( HConstants.HBASE_MASTER_LOADBALANCER_CLASS, RSGroupBasedLoadBalancer.class.getName());