You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2010/10/23 01:46:48 UTC

svn commit: r1026531 - in /hbase/trunk: bin/ src/main/java/org/apache/hadoop/hbase/executor/ src/main/java/org/apache/hadoop/hbase/master/ src/main/java/org/apache/hadoop/hbase/regionserver/ src/test/java/org/apache/hadoop/hbase/executor/

Author: stack
Date: Fri Oct 22 23:46:48 2010
New Revision: 1026531

URL: http://svn.apache.org/viewvc?rev=1026531&view=rev
Log:
HBASE-2998 rolling-restart.sh shouldn't rely on zoo.cfg; some improvements to the rr script -- reverse mistaken commit

Modified:
    hbase/trunk/bin/rolling-restart.sh
    hbase/trunk/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java
    hbase/trunk/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
    hbase/trunk/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
    hbase/trunk/src/test/java/org/apache/hadoop/hbase/executor/TestExecutorService.java

Modified: hbase/trunk/bin/rolling-restart.sh
URL: http://svn.apache.org/viewvc/hbase/trunk/bin/rolling-restart.sh?rev=1026531&r1=1026530&r2=1026531&view=diff
==============================================================================
--- hbase/trunk/bin/rolling-restart.sh (original)
+++ hbase/trunk/bin/rolling-restart.sh Fri Oct 22 23:46:48 2010
@@ -64,7 +64,7 @@ else 
   zmaster=`$bin/hbase org.apache.hadoop.hbase.util.HBaseConfTool zookeeper.znode.master`
   if [ "$zmaster" == "null" ]; then zmaster="master"; fi
   zmaster=$zparent/$zmaster
-  echo -n "Waiting for Master ZNode ${zmaster} to expire"
+  echo -n "Waiting for Master ZNode to expire"
   while bin/hbase zkcli stat $zmaster >/dev/null 2>&1; do
     echo -n "."
     sleep 1
@@ -76,27 +76,6 @@ else 
   "$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" \
     --hosts "${HBASE_BACKUP_MASTERS}" start master-backup
 
-  echo "Wait a minute for master to come up join cluster"
-  sleep 60
-
-  # Master joing cluster will start in cleaning out regions in transition.
-  # Wait until the master has cleaned out regions in transition before
-  # giving it a bunch of work to do; master is vulnerable during startup
-  zunassigned=`$bin/hbase org.apache.hadoop.hbase.util.HBaseConfTool zookeeper.znode.unassigned`
-  if [ "$zunassigned" == "null" ]; then zunassigned="unassigned"; fi
-  zunassigned="$zparent/$zunassigned"
-  echo -n "Waiting for ${zunassigned} to empty"
-  while true ; do
-    unassigned=`$bin/hbase zkcli stat ${zunassigned} 2>&1 |grep -e 'numChildren = '|sed -e 's,numChildren = ,,'`
-    if test 0 -eq ${unassigned}
-    then
-      break
-    else
-      echo -n " ${unassigned}"
-    fi
-    sleep 1
-  done
-
   # unlike the masters, roll all regionservers one-at-a-time
   export HBASE_SLAVE_PARALLEL=false
   "$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" \

Modified: hbase/trunk/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java?rev=1026531&r1=1026530&r2=1026531&view=diff
==============================================================================
--- hbase/trunk/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java (original)
+++ hbase/trunk/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java Fri Oct 22 23:46:48 2010
@@ -22,10 +22,11 @@ package org.apache.hadoop.hbase.executor
 import java.util.List;
 import java.util.Map;
 import java.util.Map.Entry;
+import java.util.concurrent.BlockingQueue;
 import java.util.concurrent.ConcurrentHashMap;
-import java.util.concurrent.Executors;
 import java.util.concurrent.PriorityBlockingQueue;
 import java.util.concurrent.ThreadPoolExecutor;
+import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicInteger;
 
 import org.apache.commons.logging.Log;
@@ -40,7 +41,7 @@ import com.google.common.util.concurrent
  * threadpool, a queue to which {@link EventHandler.EventType}s can be submitted,
  * and a <code>Runnable</code> that handles the object that is added to the queue.
  *
- * <p>In order to create a new service, create an instance of this class and
+ * <p>In order to create a new service, create an instance of this class and 
  * then do: <code>instance.startExecutorService("myService");</code>.  When done
  * call {@link #shutdown()}.
  *
@@ -169,7 +170,9 @@ public class ExecutorService {
       throw new RuntimeException("An executor service with the name " + name +
       " is already running (2)!");
     }
-    LOG.debug("Starting executor service name=" + name);
+    LOG.debug("Starting executor service name=" + name +
+      ", corePoolSize=" + hbes.threadPoolExecutor.getCorePoolSize() +
+      ", maxPoolSize=" + hbes.threadPoolExecutor.getMaximumPoolSize());
   }
 
   boolean isExecutorServiceRunning(String name) {
@@ -179,7 +182,7 @@ public class ExecutorService {
   public void shutdown() {
     for(Entry<String, Executor> entry: this.executorMap.entrySet()) {
       List<Runnable> wasRunning =
-        entry.getValue().poolExecutor.shutdownNow();
+        entry.getValue().threadPoolExecutor.shutdownNow();
       if (!wasRunning.isEmpty()) {
         LOG.info(entry.getKey() + " had " + wasRunning + " on shutdown");
       }
@@ -240,14 +243,15 @@ public class ExecutorService {
   /**
    * Executor instance.
    */
-  static class Executor {
+  private static class Executor {
+    // default number of threads in the pool
+    private int corePoolSize = 1;
     // how long to retain excess threads
-    final long keepAliveTimeInMillis = 1000;
+    private long keepAliveTimeInMillis = 1000;
     // the thread pool executor that services the requests
-    final java.util.concurrent.ExecutorService poolExecutor;
+    private final ThreadPoolExecutor threadPoolExecutor;
     // work queue to use - unbounded queue
-    final PriorityBlockingQueue<Runnable> workQueue =
-      new PriorityBlockingQueue<Runnable>();
+    BlockingQueue<Runnable> workQueue = new PriorityBlockingQueue<Runnable>();
     private final AtomicInteger threadid = new AtomicInteger(0);
     private final String name;
     private final Map<EventHandler.EventType, EventHandlerListener> eventHandlerListeners;
@@ -257,10 +261,12 @@ public class ExecutorService {
       this.name = name;
       this.eventHandlerListeners = eventHandlerListeners;
       // create the thread pool executor
+      this.threadPoolExecutor = new ThreadPoolExecutor(corePoolSize, maxThreads,
+          keepAliveTimeInMillis, TimeUnit.MILLISECONDS, workQueue);
       // name the threads for this threadpool
       ThreadFactoryBuilder tfb = new ThreadFactoryBuilder();
       tfb.setNameFormat(this.name + "-" + this.threadid.incrementAndGet());
-      this.poolExecutor = Executors.newFixedThreadPool(maxThreads, tfb.build());
+      this.threadPoolExecutor.setThreadFactory(tfb.build());
     }
 
     /**
@@ -275,7 +281,7 @@ public class ExecutorService {
       if (listener != null) {
         event.setListener(listener);
       }
-      this.poolExecutor.execute(event);
+      this.threadPoolExecutor.execute(event);
     }
   }
 }
\ No newline at end of file

Modified: hbase/trunk/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/java/org/apache/hadoop/hbase/master/HMaster.java?rev=1026531&r1=1026530&r2=1026531&view=diff
==============================================================================
--- hbase/trunk/src/main/java/org/apache/hadoop/hbase/master/HMaster.java (original)
+++ hbase/trunk/src/main/java/org/apache/hadoop/hbase/master/HMaster.java Fri Oct 22 23:46:48 2010
@@ -497,13 +497,13 @@ implements HMasterInterface, HMasterRegi
     try {
       // Start the executor service pools
       this.executorService.startExecutorService(ExecutorType.MASTER_OPEN_REGION,
-        conf.getInt("hbase.master.executor.openregion.threads", 5));
+        conf.getInt("hbase.master.executor.openregion.threads", 10));
       this.executorService.startExecutorService(ExecutorType.MASTER_CLOSE_REGION,
-        conf.getInt("hbase.master.executor.closeregion.threads", 5));
+        conf.getInt("hbase.master.executor.closeregion.threads", 10));
       this.executorService.startExecutorService(ExecutorType.MASTER_SERVER_OPERATIONS,
-        conf.getInt("hbase.master.executor.serverops.threads", 3));
+        conf.getInt("hbase.master.executor.serverops.threads", 5));
       this.executorService.startExecutorService(ExecutorType.MASTER_TABLE_OPERATIONS,
-        conf.getInt("hbase.master.executor.tableops.threads", 3));
+        conf.getInt("hbase.master.executor.tableops.threads", 5));
 
       // Put up info server.
       int port = this.conf.getInt("hbase.master.info.port", 60010);

Modified: hbase/trunk/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java?rev=1026531&r1=1026530&r2=1026531&view=diff
==============================================================================
--- hbase/trunk/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java (original)
+++ hbase/trunk/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java Fri Oct 22 23:46:48 2010
@@ -1131,13 +1131,13 @@ public class HRegionServer implements HR
     // Start executor services
     this.service = new ExecutorService(getServerName());
     this.service.startExecutorService(ExecutorType.RS_OPEN_REGION,
-      conf.getInt("hbase.regionserver.executor.openregion.threads", 3));
+      conf.getInt("hbase.regionserver.executor.openregion.threads", 5));
     this.service.startExecutorService(ExecutorType.RS_OPEN_ROOT,
       conf.getInt("hbase.regionserver.executor.openroot.threads", 1));
     this.service.startExecutorService(ExecutorType.RS_OPEN_META,
       conf.getInt("hbase.regionserver.executor.openmeta.threads", 1));
     this.service.startExecutorService(ExecutorType.RS_CLOSE_REGION,
-      conf.getInt("hbase.regionserver.executor.closeregion.threads", 3));
+      conf.getInt("hbase.regionserver.executor.closeregion.threads", 5));
     this.service.startExecutorService(ExecutorType.RS_CLOSE_ROOT,
       conf.getInt("hbase.regionserver.executor.closeroot.threads", 1));
     this.service.startExecutorService(ExecutorType.RS_CLOSE_META,

Modified: hbase/trunk/src/test/java/org/apache/hadoop/hbase/executor/TestExecutorService.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/test/java/org/apache/hadoop/hbase/executor/TestExecutorService.java?rev=1026531&r1=1026530&r2=1026531&view=diff
==============================================================================
--- hbase/trunk/src/test/java/org/apache/hadoop/hbase/executor/TestExecutorService.java (original)
+++ hbase/trunk/src/test/java/org/apache/hadoop/hbase/executor/TestExecutorService.java Fri Oct 22 23:46:48 2010
@@ -1,115 +0,0 @@
-/**
- * Copyright 2010 The Apache Software Foundation
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.hadoop.hbase.executor;
-
-import static org.junit.Assert.assertEquals;
-
-import java.io.IOException;
-import java.util.concurrent.atomic.AtomicBoolean;
-import java.util.concurrent.atomic.AtomicInteger;
-
-import org.apache.hadoop.hbase.executor.EventHandler.EventType;
-import org.apache.hadoop.hbase.executor.ExecutorService.Executor;
-import org.apache.hadoop.hbase.executor.ExecutorService.ExecutorType;
-import org.junit.Test;
-
-public class TestExecutorService {
-  @Test
-  public void testExecutorService() throws Exception {
-    int maxThreads = 5;
-    int maxTries = 10;
-    int sleepInterval = 10;
-
-    // Start an executor service pool with max 5 threads
-    ExecutorService executorService = new ExecutorService("unit_test");
-    executorService.startExecutorService(
-        ExecutorType.MASTER_SERVER_OPERATIONS, maxThreads);
-
-    Executor executor =
-      executorService.getExecutor(ExecutorType.MASTER_SERVER_OPERATIONS);
-
-    AtomicBoolean lock = new AtomicBoolean(true);
-    AtomicInteger counter = new AtomicInteger(0);
-
-    for (int i = 0; i < maxThreads; i++) {
-      executorService.submit(
-        new TestEventHandler(EventType.M_SERVER_SHUTDOWN, lock, counter));
-    }
-
-    int tries = 0;
-    while (counter.get() < maxThreads && tries < maxTries) {
-      System.out.println("Waiting for all event handlers to start...");
-      Thread.sleep(sleepInterval);
-      tries++;
-    }
-
-    assertEquals(maxThreads, counter.get());
-
-    synchronized (lock) {
-      lock.set(false);
-      lock.notifyAll();
-    }
-
-    while (counter.get() < (maxThreads * 2) && tries < maxTries) {
-      System.out.println("Waiting for all event handlers to finish...");
-      Thread.sleep(sleepInterval);
-      tries++;
-    }
-
-    assertEquals(maxThreads*2, counter.get());
-
-    // Add too many. Make sure they are queued.  Make sure we don't get
-    // RejectedExecutionException.
-    for (int i = 0; i < maxThreads; i++) {
-      executorService.submit(
-        new TestEventHandler(EventType.M_SERVER_SHUTDOWN, lock, counter));
-    }
-
-    Thread.sleep(executor.keepAliveTimeInMillis * 2);
-  }
-
-  public static class TestEventHandler extends EventHandler {
-    private AtomicBoolean lock;
-    private AtomicInteger counter;
-
-    public TestEventHandler(EventType eventType, AtomicBoolean lock,
-        AtomicInteger counter) {
-      super(null, eventType);
-      this.lock = lock;
-      this.counter = counter;
-    }
-
-    @Override
-    public void process() throws IOException {
-      int num = counter.incrementAndGet();
-      System.out.println("Running process #" + num + ", thread=" + Thread.currentThread());
-      synchronized (lock) {
-        while (lock.get()) {
-          try {
-            lock.wait();
-          } catch (InterruptedException e) {
-            // do nothing
-          }
-        }
-      }
-      counter.incrementAndGet();
-    }
-  }
-}
\ No newline at end of file