TaskTrackerMetricsInst.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 org.apache.hadoop.metrics.MetricsContext;
  20. import org.apache.hadoop.metrics.MetricsRecord;
  21. import org.apache.hadoop.metrics.MetricsUtil;
  22. import org.apache.hadoop.metrics.Updater;
  23. import org.apache.hadoop.metrics.jvm.JvmMetrics;
  24.   
  25. class TaskTrackerMetricsInst extends TaskTrackerInstrumentation 
  26.                              implements Updater {
  27.   private final MetricsRecord metricsRecord;
  28.   private int numCompletedTasks = 0;
  29.   private int timedoutTasks = 0;
  30.   private int tasksFailedPing = 0;
  31.     
  32.   public TaskTrackerMetricsInst(TaskTracker t) {
  33.     super(t);
  34.     JobConf conf = tt.getJobConf();
  35.     String sessionId = conf.getSessionId();
  36.     // Initiate Java VM Metrics
  37.     JvmMetrics.init("TaskTracker", sessionId);
  38.     // Create a record for Task Tracker metrics
  39.     MetricsContext context = MetricsUtil.getContext("mapred");
  40.     metricsRecord = MetricsUtil.createRecord(context, "tasktracker"); //guaranteed never null
  41.     metricsRecord.setTag("sessionId", sessionId);
  42.     context.registerUpdater(this);
  43.   }
  44.   @Override
  45.   public synchronized void completeTask(TaskAttemptID t) {
  46.     ++numCompletedTasks;
  47.   }
  48.   @Override
  49.   public synchronized void timedoutTask(TaskAttemptID t) {
  50.     ++timedoutTasks;
  51.   }
  52.   @Override
  53.   public synchronized void taskFailedPing(TaskAttemptID t) {
  54.     ++tasksFailedPing;
  55.   }
  56.   /**
  57.    * Since this object is a registered updater, this method will be called
  58.    * periodically, e.g. every 5 seconds.
  59.    */
  60.   @Override
  61.   public void doUpdates(MetricsContext unused) {
  62.     synchronized (this) {
  63.       metricsRecord.setMetric("maps_running", tt.mapTotal);
  64.       metricsRecord.setMetric("reduces_running", tt.reduceTotal);
  65.       metricsRecord.setMetric("mapTaskSlots", (short)tt.getMaxCurrentMapTasks());
  66.       metricsRecord.setMetric("reduceTaskSlots", 
  67.                                    (short)tt.getMaxCurrentReduceTasks());
  68.       metricsRecord.incrMetric("tasks_completed", numCompletedTasks);
  69.       metricsRecord.incrMetric("tasks_failed_timeout", timedoutTasks);
  70.       metricsRecord.incrMetric("tasks_failed_ping", tasksFailedPing);
  71.       
  72.       numCompletedTasks = 0;
  73.       timedoutTasks = 0;
  74.       tasksFailedPing = 0;
  75.     }
  76.       metricsRecord.update();
  77.   }
  78.   
  79. }