DecommissionManager.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.hdfs.server.namenode;
  19. import java.util.Map;
  20. import org.apache.commons.logging.Log;
  21. import org.apache.commons.logging.LogFactory;
  22. import org.apache.hadoop.util.CyclicIteration;
  23. /**
  24.  * Manage node decommissioning.
  25.  */
  26. class DecommissionManager {
  27.   static final Log LOG = LogFactory.getLog(DecommissionManager.class);
  28.   private final FSNamesystem fsnamesystem;
  29.   DecommissionManager(FSNamesystem namesystem) {
  30.     this.fsnamesystem = namesystem;
  31.   }
  32.   /** Periodically check decommission status. */
  33.   class Monitor implements Runnable {
  34.     /** recheckInterval is how often namenode checks
  35.      *  if a node has finished decommission
  36.      */
  37.     private final long recheckInterval;
  38.     /** The number of decommission nodes to check for each interval */
  39.     private final int numNodesPerCheck;
  40.     /** firstkey can be initialized to anything. */
  41.     private String firstkey = "";
  42.     Monitor(int recheckIntervalInSecond, int numNodesPerCheck) {
  43.       this.recheckInterval = recheckIntervalInSecond * 1000L;
  44.       this.numNodesPerCheck = numNodesPerCheck;
  45.     }
  46.     /**
  47.      * Check decommission status of numNodesPerCheck nodes
  48.      * for every recheckInterval milliseconds.
  49.      */
  50.     public void run() {
  51.       for(; fsnamesystem.isRunning(); ) {
  52.         synchronized(fsnamesystem) {
  53.           check();
  54.         }
  55.   
  56.         try {
  57.           Thread.sleep(recheckInterval);
  58.         } catch (InterruptedException ie) {
  59.           LOG.info("Interrupted " + this.getClass().getSimpleName(), ie);
  60.         }
  61.       }
  62.     }
  63.     
  64.     private void check() {
  65.       int count = 0;
  66.       for(Map.Entry<String, DatanodeDescriptor> entry
  67.           : new CyclicIteration<String, DatanodeDescriptor>(
  68.               fsnamesystem.datanodeMap, firstkey)) {
  69.         final DatanodeDescriptor d = entry.getValue();
  70.         firstkey = entry.getKey();
  71.         if (d.isDecommissionInProgress()) {
  72.           try {
  73.             fsnamesystem.checkDecommissionStateInternal(d);
  74.           } catch(Exception e) {
  75.             LOG.warn("entry=" + entry, e);
  76.           }
  77.           if (++count == numNodesPerCheck) {
  78.             return;
  79.           }
  80.         }
  81.       }
  82.     }
  83.   }
  84. }