DecommissionManager.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
- /**
- * 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.hdfs.server.namenode;
- import java.util.Map;
- import org.apache.commons.logging.Log;
- import org.apache.commons.logging.LogFactory;
- import org.apache.hadoop.util.CyclicIteration;
- /**
- * Manage node decommissioning.
- */
- class DecommissionManager {
- static final Log LOG = LogFactory.getLog(DecommissionManager.class);
- private final FSNamesystem fsnamesystem;
- DecommissionManager(FSNamesystem namesystem) {
- this.fsnamesystem = namesystem;
- }
- /** Periodically check decommission status. */
- class Monitor implements Runnable {
- /** recheckInterval is how often namenode checks
- * if a node has finished decommission
- */
- private final long recheckInterval;
- /** The number of decommission nodes to check for each interval */
- private final int numNodesPerCheck;
- /** firstkey can be initialized to anything. */
- private String firstkey = "";
- Monitor(int recheckIntervalInSecond, int numNodesPerCheck) {
- this.recheckInterval = recheckIntervalInSecond * 1000L;
- this.numNodesPerCheck = numNodesPerCheck;
- }
- /**
- * Check decommission status of numNodesPerCheck nodes
- * for every recheckInterval milliseconds.
- */
- public void run() {
- for(; fsnamesystem.isRunning(); ) {
- synchronized(fsnamesystem) {
- check();
- }
-
- try {
- Thread.sleep(recheckInterval);
- } catch (InterruptedException ie) {
- LOG.info("Interrupted " + this.getClass().getSimpleName(), ie);
- }
- }
- }
-
- private void check() {
- int count = 0;
- for(Map.Entry<String, DatanodeDescriptor> entry
- : new CyclicIteration<String, DatanodeDescriptor>(
- fsnamesystem.datanodeMap, firstkey)) {
- final DatanodeDescriptor d = entry.getValue();
- firstkey = entry.getKey();
- if (d.isDecommissionInProgress()) {
- try {
- fsnamesystem.checkDecommissionStateInternal(d);
- } catch(Exception e) {
- LOG.warn("entry=" + entry, e);
- }
- if (++count == numNodesPerCheck) {
- return;
- }
- }
- }
- }
- }
- }