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 0A05718F7C for ; Thu, 19 Nov 2015 22:47:46 +0000 (UTC) Received: (qmail 67861 invoked by uid 500); 19 Nov 2015 22:47:41 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 67816 invoked by uid 500); 19 Nov 2015 22:47:40 -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 67801 invoked by uid 99); 19 Nov 2015 22:47:40 -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, 19 Nov 2015 22:47:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C65CAE17EC; Thu, 19 Nov 2015 22:47:40 +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: <49ec4970e0f44aa68bdac21d4d78705b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-14819 hbase-it tests failing with OOME: permgen Date: Thu, 19 Nov 2015 22:47:40 +0000 (UTC) Repository: hbase Updated Branches: refs/heads/branch-1.2 fb9be046a -> b7f30c11e HBASE-14819 hbase-it tests failing with OOME: permgen Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b7f30c11 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b7f30c11 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b7f30c11 Branch: refs/heads/branch-1.2 Commit: b7f30c11e5e9a6883f4380d13b034e4bd08138a9 Parents: fb9be04 Author: stack Authored: Thu Nov 19 14:46:53 2015 -0800 Committer: stack Committed: Thu Nov 19 14:47:34 2015 -0800 ---------------------------------------------------------------------- hbase-it/pom.xml | 3 +++ .../apache/hadoop/hbase/IntegrationTestAcidGuarantees.java | 8 +++----- 2 files changed, 6 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/b7f30c11/hbase-it/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-it/pom.xml b/hbase-it/pom.xml index c624906..8a956b2 100644 --- a/hbase-it/pom.xml +++ b/hbase-it/pom.xml @@ -91,6 +91,9 @@ ${unittest.include} **/*$* + + -XX:+CMSClassUnloadingEnabled ${test.output.tofile} http://git-wip-us.apache.org/repos/asf/hbase/blob/b7f30c11/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java ---------------------------------------------------------------------- diff --git a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java index 7250eb3..ca2b2dc 100644 --- a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java +++ b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java @@ -93,17 +93,17 @@ public class IntegrationTestAcidGuarantees extends IntegrationTestBase { @Test public void testGetAtomicity() throws Exception { - tag.runTestAtomicity(20000, 5, 5, 0, 3); + tag.runTestAtomicity(20000, 4, 4, 0, 3); } @Test public void testScanAtomicity() throws Exception { - tag.runTestAtomicity(20000, 5, 0, 5, 3); + tag.runTestAtomicity(20000, 3, 0, 2, 3); } @Test public void testMixedAtomicity() throws Exception { - tag.runTestAtomicity(20000, 5, 2, 2, 3); + tag.runTestAtomicity(20000, 4, 2, 2, 3); } @@ -116,5 +116,3 @@ public class IntegrationTestAcidGuarantees extends IntegrationTestBase { System.exit(ret); } } - -