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 AFF20200CA4 for ; Wed, 7 Jun 2017 11:45:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AE82A160BD0; Wed, 7 Jun 2017 09:45:22 +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 00898160BB6 for ; Wed, 7 Jun 2017 11:45:21 +0200 (CEST) Received: (qmail 73635 invoked by uid 500); 7 Jun 2017 09:45:21 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 73622 invoked by uid 99); 7 Jun 2017 09:45:21 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Jun 2017 09:45:21 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id BEFBF1A79E9 for ; Wed, 7 Jun 2017 09:45:20 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 54gw7oBYEaHX for ; Wed, 7 Jun 2017 09:45:19 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 3CE975FBC6 for ; Wed, 7 Jun 2017 09:45:19 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 8A142E0352 for ; Wed, 7 Jun 2017 09:45:18 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 45CBA21B51 for ; Wed, 7 Jun 2017 09:45:18 +0000 (UTC) Date: Wed, 7 Jun 2017 09:45:18 +0000 (UTC) From: "Ted Yu (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HBASE-18182) Setting HBASE_REGIONSERVER_OPTS with UseG1GC will cause regionserver start error MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 07 Jun 2017 09:45:22 -0000 [ https://issues.apache.org/jira/browse/HBASE-18182?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated HBASE-18182: --------------------------- Summary: Setting HBASE_REGIONSERVER_OPTS with UseG1GC will cause regionserver start error (was: set HBASE_REGIONSERVER_OPTS use UseG1GC will cause regionserver start error) > Setting HBASE_REGIONSERVER_OPTS with UseG1GC will cause regionserver start error > -------------------------------------------------------------------------------- > > Key: HBASE-18182 > URL: https://issues.apache.org/jira/browse/HBASE-18182 > Project: HBase > Issue Type: Bug > Components: regionserver > Affects Versions: 2.0.0, 1.1.6, 1.3.1, 1.2.6 > Reporter: Fangyuan Deng > Fix For: 2.1.0, 1.3.2, 1.2.7 > > Attachments: HBASE-18182.0.patch > > > when we set in hbase-env.sh to use G1GC HBASE_REGIONSERVER_OPTS="$HBASE_REGIONSERVER_OPTS -XX:+UseG1GC -Xms96g -Xmx96g -XX:MaxGCPauseMillis=100" > then run ./hbase-daemon.sh start regionserver > Conflicting collector combinations in option list; please refer to the release notes for the combinations allowed > Error: Could not create the Java Virtual Machine. > Error: A fatal exception has occurred. Program will exit. > because the HBASE_OPTS default use CMS and is conflicted with HBASE_REGIONSERVER_OPTS > so I add a patch to modify bin/hbase like this > elif [ "$COMMAND" = "regionserver" ] ; then > CLASS='org.apache.hadoop.hbase.regionserver.HRegionServer' > if [ "$1" != "stop" ] ; then > HBASE_OPTS="$HBASE_OPTS $HBASE_REGIONSERVER_OPTS" > if [[ $HBASE_REGIONSERVER_OPTS == *UseG1GC* ]] ; then > HBASE_OPTS=${HBASE_OPTS/'-XX:+UseConcMarkSweepGC'/''} > fi > fi -- This message was sent by Atlassian JIRA (v6.3.15#6346)