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 30ACF9F28 for ; Wed, 4 Jul 2012 20:58:59 +0000 (UTC) Received: (qmail 63684 invoked by uid 500); 4 Jul 2012 20:58:58 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 63646 invoked by uid 500); 4 Jul 2012 20:58:58 -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 63639 invoked by uid 99); 4 Jul 2012 20:58:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jul 2012 20:58:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jul 2012 20:58:57 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 9D5632388980 for ; Wed, 4 Jul 2012 20:58:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1357405 - in /hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor: EventHandler.java ExecutorService.java Date: Wed, 04 Jul 2012 20:58:37 -0000 To: commits@hbase.apache.org From: stack@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120704205837.9D5632388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stack Date: Wed Jul 4 20:58:37 2012 New Revision: 1357405 URL: http://svn.apache.org/viewvc?rev=1357405&view=rev Log: HBASE-6296 Refactor EventType to track its own ExecutorService type Modified: hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/EventHandler.java hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java Modified: hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/EventHandler.java URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/EventHandler.java?rev=1357405&r1=1357404&r2=1357405&view=diff ============================================================================== --- hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/EventHandler.java (original) +++ hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/EventHandler.java Wed Jul 4 20:58:37 2012 @@ -26,6 +26,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.hbase.Server; +import org.apache.hadoop.hbase.executor.ExecutorService.ExecutorType; /** @@ -106,47 +107,49 @@ public abstract class EventHandler imple // Messages originating from RS (NOTE: there is NO direct communication from // RS to Master). These are a result of RS updates into ZK. // RS_ZK_REGION_CLOSING (1), // It is replaced by M_ZK_REGION_CLOSING(HBASE-4739) - RS_ZK_REGION_CLOSED (2), // RS has finished closing a region - RS_ZK_REGION_OPENING (3), // RS is in process of opening a region - RS_ZK_REGION_OPENED (4), // RS has finished opening a region - RS_ZK_REGION_SPLITTING (5), // RS has started a region split - RS_ZK_REGION_SPLIT (6), // RS split has completed. - RS_ZK_REGION_FAILED_OPEN (7), // RS failed to open a region + RS_ZK_REGION_CLOSED (2, ExecutorType.MASTER_CLOSE_REGION), // RS has finished closing a region + RS_ZK_REGION_OPENING (3, null), // RS is in process of opening a region + RS_ZK_REGION_OPENED (4, ExecutorType.MASTER_OPEN_REGION), // RS has finished opening a region + RS_ZK_REGION_SPLITTING (5, null), // RS has started a region split + RS_ZK_REGION_SPLIT (6, ExecutorType.MASTER_SERVER_OPERATIONS), // RS split has completed. + RS_ZK_REGION_FAILED_OPEN (7, ExecutorType.MASTER_CLOSE_REGION), // RS failed to open a region // Messages originating from Master to RS - M_RS_OPEN_REGION (20), // Master asking RS to open a region - M_RS_OPEN_ROOT (21), // Master asking RS to open root - M_RS_OPEN_META (22), // Master asking RS to open meta - M_RS_CLOSE_REGION (23), // Master asking RS to close a region - M_RS_CLOSE_ROOT (24), // Master asking RS to close root - M_RS_CLOSE_META (25), // Master asking RS to close meta + M_RS_OPEN_REGION (20, ExecutorType.RS_OPEN_REGION), // Master asking RS to open a region + M_RS_OPEN_ROOT (21, ExecutorType.RS_OPEN_REGION), // Master asking RS to open root + M_RS_OPEN_META (22, ExecutorType.RS_OPEN_META), // Master asking RS to open meta + M_RS_CLOSE_REGION (23, ExecutorType.RS_CLOSE_REGION), // Master asking RS to close a region + M_RS_CLOSE_ROOT (24, ExecutorType.RS_CLOSE_ROOT), // Master asking RS to close root + M_RS_CLOSE_META (25, ExecutorType.RS_CLOSE_META), // Master asking RS to close meta // Messages originating from Client to Master - C_M_DELETE_TABLE (40), // Client asking Master to delete a table - C_M_DISABLE_TABLE (41), // Client asking Master to disable a table - C_M_ENABLE_TABLE (42), // Client asking Master to enable a table - C_M_MODIFY_TABLE (43), // Client asking Master to modify a table - C_M_ADD_FAMILY (44), // Client asking Master to add family to table - C_M_DELETE_FAMILY (45), // Client asking Master to delete family of table - C_M_MODIFY_FAMILY (46), // Client asking Master to modify family of table - C_M_CREATE_TABLE (47), // Client asking Master to create a table + C_M_DELETE_TABLE (40, ExecutorType.MASTER_TABLE_OPERATIONS), // Client asking Master to delete a table + C_M_DISABLE_TABLE (41, ExecutorType.MASTER_TABLE_OPERATIONS), // Client asking Master to disable a table + C_M_ENABLE_TABLE (42, ExecutorType.MASTER_TABLE_OPERATIONS), // Client asking Master to enable a table + C_M_MODIFY_TABLE (43, ExecutorType.MASTER_TABLE_OPERATIONS), // Client asking Master to modify a table + C_M_ADD_FAMILY (44, null), // Client asking Master to add family to table + C_M_DELETE_FAMILY (45, null), // Client asking Master to delete family of table + C_M_MODIFY_FAMILY (46, null), // Client asking Master to modify family of table + C_M_CREATE_TABLE (47, ExecutorType.MASTER_TABLE_OPERATIONS), // Client asking Master to create a table // Updates from master to ZK. This is done by the master and there is // nothing to process by either Master or RS - M_ZK_REGION_OFFLINE (50), // Master adds this region as offline in ZK - M_ZK_REGION_CLOSING (51), // Master adds this region as closing in ZK + M_ZK_REGION_OFFLINE (50, null), // Master adds this region as offline in ZK + M_ZK_REGION_CLOSING (51, null), // Master adds this region as closing in ZK // Master controlled events to be executed on the master - M_SERVER_SHUTDOWN (70), // Master is processing shutdown of a RS - M_META_SERVER_SHUTDOWN (72); // Master is processing shutdown of RS hosting a meta region (-ROOT- or .META.). + M_SERVER_SHUTDOWN (70, ExecutorType.MASTER_SERVER_OPERATIONS), // Master is processing shutdown of a RS + M_META_SERVER_SHUTDOWN (72, ExecutorType.MASTER_META_SERVER_OPERATIONS); // Master is processing shutdown of RS hosting a meta region (-ROOT- or .META.). private final int code; + private final ExecutorService.ExecutorType executor; /** * Constructor */ - EventType(final int code) { + EventType(final int code, final ExecutorType executor) { this.code = code; + this.executor = executor; } public int getCode() { @@ -169,6 +172,10 @@ public abstract class EventHandler imple this.equals(EventType.C_M_MODIFY_TABLE) ); } + + ExecutorType getExecutorServiceType() { + return this.executor; + } } /** Modified: hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java?rev=1357405&r1=1357404&r2=1357405&view=diff ============================================================================== --- hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java (original) +++ hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java Wed Jul 4 20:58:37 2012 @@ -107,61 +107,6 @@ public class ExecutorService { } /** - * Returns the executor service type (the thread pool instance) for the - * passed event handler type. - * @param type EventHandler type. - */ - public ExecutorType getExecutorServiceType(final EventHandler.EventType type) { - switch(type) { - // Master executor services - - case RS_ZK_REGION_CLOSED: - case RS_ZK_REGION_FAILED_OPEN: - return ExecutorType.MASTER_CLOSE_REGION; - - case RS_ZK_REGION_OPENED: - return ExecutorType.MASTER_OPEN_REGION; - - case RS_ZK_REGION_SPLIT: - case M_SERVER_SHUTDOWN: - return ExecutorType.MASTER_SERVER_OPERATIONS; - - case M_META_SERVER_SHUTDOWN: - return ExecutorType.MASTER_META_SERVER_OPERATIONS; - - case C_M_DELETE_TABLE: - case C_M_DISABLE_TABLE: - case C_M_ENABLE_TABLE: - case C_M_MODIFY_TABLE: - case C_M_CREATE_TABLE: - return ExecutorType.MASTER_TABLE_OPERATIONS; - - // RegionServer executor services - - case M_RS_OPEN_REGION: - return ExecutorType.RS_OPEN_REGION; - - case M_RS_OPEN_ROOT: - return ExecutorType.RS_OPEN_ROOT; - - case M_RS_OPEN_META: - return ExecutorType.RS_OPEN_META; - - case M_RS_CLOSE_REGION: - return ExecutorType.RS_CLOSE_REGION; - - case M_RS_CLOSE_ROOT: - return ExecutorType.RS_CLOSE_ROOT; - - case M_RS_CLOSE_META: - return ExecutorType.RS_CLOSE_META; - - default: - throw new RuntimeException("Unhandled event type " + type); - } - } - - /** * Default constructor. * @param servername Name of the hosting server. */ @@ -226,7 +171,7 @@ public class ExecutorService { } public void submit(final EventHandler eh) { - Executor executor = getExecutor(getExecutorServiceType(eh.getEventType())); + Executor executor = getExecutor(eh.getEventType().getExecutorServiceType()); if (executor == null) { // This happens only when events are submitted after shutdown() was // called, so dropping them should be "ok" since it means we're