LoadManager.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.mapred;
  19. import java.io.IOException;
  20. import org.apache.hadoop.conf.Configurable;
  21. import org.apache.hadoop.conf.Configuration;
  22. /**
  23.  * A pluggable object that manages the load on each {@link TaskTracker}, telling
  24.  * the {@link TaskScheduler} when it can launch new tasks. 
  25.  */
  26. public abstract class LoadManager implements Configurable {
  27.   protected Configuration conf;
  28.   protected TaskTrackerManager taskTrackerManager;
  29.   
  30.   public Configuration getConf() {
  31.     return conf;
  32.   }
  33.   public void setConf(Configuration conf) {
  34.     this.conf = conf;
  35.   }
  36.   public synchronized void setTaskTrackerManager(
  37.       TaskTrackerManager taskTrackerManager) {
  38.     this.taskTrackerManager = taskTrackerManager;
  39.   }
  40.   
  41.   /**
  42.    * Lifecycle method to allow the LoadManager to start any work in separate
  43.    * threads.
  44.    */
  45.   public void start() throws IOException {
  46.     // do nothing
  47.   }
  48.   
  49.   /**
  50.    * Lifecycle method to allow the LoadManager to stop any work it is doing.
  51.    */
  52.   public void terminate() throws IOException {
  53.     // do nothing
  54.   }
  55.   
  56.   /**
  57.    * Can a given {@link TaskTracker} run another map task?
  58.    * @param tracker The machine we wish to run a new map on
  59.    * @param totalRunnableMaps Set of running jobs in the cluster
  60.    * @param totalMapSlots The total number of map slots in the cluster
  61.    * @return true if another map can be launched on <code>tracker</code>
  62.    */
  63.   public abstract boolean canAssignMap(TaskTrackerStatus tracker,
  64.       int totalRunnableMaps, int totalMapSlots);
  65.   /**
  66.    * Can a given {@link TaskTracker} run another reduce task?
  67.    * @param tracker The machine we wish to run a new map on
  68.    * @param totalRunnableReduces Set of running jobs in the cluster
  69.    * @param totalReduceSlots The total number of reduce slots in the cluster
  70.    * @return true if another reduce can be launched on <code>tracker</code>
  71.    */
  72.   public abstract boolean canAssignReduce(TaskTrackerStatus tracker,
  73.       int totalRunnableReduces, int totalReduceSlots);
  74. }