Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A141517610 for ; Wed, 1 Apr 2015 05:18:54 +0000 (UTC) Received: (qmail 91963 invoked by uid 500); 1 Apr 2015 05:18:54 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 91915 invoked by uid 500); 1 Apr 2015 05:18:54 -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 91903 invoked by uid 99); 1 Apr 2015 05:18:54 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Apr 2015 05:18:54 +0000 Date: Wed, 1 Apr 2015 05:18:54 +0000 (UTC) From: "Hudson (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-13348) Separate the thread number configs for meta server and server operations MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-13348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14390003#comment-14390003 ] Hudson commented on HBASE-13348: -------------------------------- FAILURE: Integrated in HBase-TRUNK #6327 (See [https://builds.apache.org/job/HBase-TRUNK/6327/]) HBASE-13348 Separate the thread number configs for meta server and server operations (Shaohui Liu) (liushaohui: rev 9b2b0abccda2e8fedf17a4bdd3456e95f9c379ec) * hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java > Separate the thread number configs for meta server and server operations > ------------------------------------------------------------------------ > > Key: HBASE-13348 > URL: https://issues.apache.org/jira/browse/HBASE-13348 > Project: HBase > Issue Type: Improvement > Components: master > Reporter: Liu Shaohui > Assignee: Liu Shaohui > Priority: Minor > Fix For: 2.0.0 > > Attachments: HBASE-13348-v1.diff, HBASE-13348-v2.diff > > > Currently, the config keys for thread number of meta server and server operations in HMaster are same: > See: HMaster.java #993 > {code} > this.service.startExecutorService(ExecutorType.MASTER_SERVER_OPERATIONS, > conf.getInt("hbase.master.executor.serverops.threads", 5)); > this.service.startExecutorService(ExecutorType.MASTER_META_SERVER_OPERATIONS, > conf.getInt("hbase.master.executor.serverops.threads", 5)); > {code} > In large cluster, we usually enlarge the thread number for server operation separately to make the master handle regionserver shutdown events quickly in some extremely cases. > So I think we need separate the thread number config for the two operations. > Suggestions are welcomed. Thanks~ -- This message was sent by Atlassian JIRA (v6.3.4#6332)