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

网格计算

开发平台:

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.metrics;
  19. import org.apache.commons.logging.Log;
  20. import org.apache.commons.logging.LogFactory;
  21. import org.apache.hadoop.conf.Configuration;
  22. import org.apache.hadoop.hdfs.server.namenode.NameNode;
  23. import org.apache.hadoop.metrics.*;
  24. import org.apache.hadoop.metrics.jvm.JvmMetrics;
  25. import org.apache.hadoop.metrics.util.MetricsBase;
  26. import org.apache.hadoop.metrics.util.MetricsIntValue;
  27. import org.apache.hadoop.metrics.util.MetricsRegistry;
  28. import org.apache.hadoop.metrics.util.MetricsTimeVaryingInt;
  29. import org.apache.hadoop.metrics.util.MetricsTimeVaryingRate;
  30. /**
  31.  * 
  32.  * This class is for maintaining  the various NameNode activity statistics
  33.  * and publishing them through the metrics interfaces.
  34.  * This also registers the JMX MBean for RPC.
  35.  * <p>
  36.  * This class has a number of metrics variables that are publicly accessible;
  37.  * these variables (objects) have methods to update their values;
  38.  *  for example:
  39.  *  <p> {@link #syncs}.inc()
  40.  *
  41.  */
  42. public class NameNodeMetrics implements Updater {
  43.     private static Log log = LogFactory.getLog(NameNodeMetrics.class);
  44.     private final MetricsRecord metricsRecord;
  45.     public MetricsRegistry registry = new MetricsRegistry();
  46.     
  47.     private NameNodeActivtyMBean namenodeActivityMBean;
  48.     
  49.     public MetricsTimeVaryingInt numFilesCreated =
  50.                           new MetricsTimeVaryingInt("FilesCreated", registry);
  51.     public MetricsTimeVaryingInt numFilesAppended =
  52.                           new MetricsTimeVaryingInt("FilesAppended", registry);
  53.     public MetricsTimeVaryingInt numGetBlockLocations = 
  54.                     new MetricsTimeVaryingInt("GetBlockLocations", registry);
  55.     public MetricsTimeVaryingInt numFilesRenamed =
  56.                     new MetricsTimeVaryingInt("FilesRenamed", registry);
  57.     public MetricsTimeVaryingInt numGetListingOps = 
  58.                     new MetricsTimeVaryingInt("GetListingOps", registry);
  59.     public MetricsTimeVaryingInt numCreateFileOps = 
  60.                     new MetricsTimeVaryingInt("CreateFileOps", registry);
  61.     public MetricsTimeVaryingInt numDeleteFileOps = 
  62.                           new MetricsTimeVaryingInt("DeleteFileOps", registry);
  63.     public MetricsTimeVaryingInt numAddBlockOps = 
  64.                           new MetricsTimeVaryingInt("AddBlockOps", registry);
  65.     public MetricsTimeVaryingRate transactions =
  66.                     new MetricsTimeVaryingRate("Transactions", registry, "Journal Transaction");
  67.     public MetricsTimeVaryingRate syncs =
  68.                     new MetricsTimeVaryingRate("Syncs", registry, "Journal Sync");
  69.     public MetricsTimeVaryingInt transactionsBatchedInSync = 
  70.                     new MetricsTimeVaryingInt("JournalTransactionsBatchedInSync", registry, "Journal Transactions Batched In Sync");
  71.     public MetricsTimeVaryingRate blockReport =
  72.                     new MetricsTimeVaryingRate("blockReport", registry, "Block Report");
  73.     public MetricsIntValue safeModeTime =
  74.                     new MetricsIntValue("SafemodeTime", registry, "Duration in SafeMode at Startup");
  75.     public MetricsIntValue fsImageLoadTime = 
  76.                     new MetricsIntValue("fsImageLoadTime", registry, "Time loading FS Image at Startup");
  77.     public MetricsIntValue numBlocksCorrupted =
  78.                     new MetricsIntValue("BlocksCorrupted", registry);
  79.       
  80.     public NameNodeMetrics(Configuration conf, NameNode nameNode) {
  81.       String sessionId = conf.get("session.id");
  82.       // Initiate Java VM metrics
  83.       JvmMetrics.init("NameNode", sessionId);
  84.       
  85.       // Now the Mbean for the name node - this alos registers the MBean
  86.       namenodeActivityMBean = new NameNodeActivtyMBean(registry);
  87.       
  88.       // Create a record for NameNode metrics
  89.       MetricsContext metricsContext = MetricsUtil.getContext("dfs");
  90.       metricsRecord = MetricsUtil.createRecord(metricsContext, "namenode");
  91.       metricsRecord.setTag("sessionId", sessionId);
  92.       metricsContext.registerUpdater(this);
  93.       log.info("Initializing NameNodeMeterics using context object:" +
  94.                 metricsContext.getClass().getName());
  95.     }
  96.     
  97.     
  98.     public void shutdown() {
  99.       if (namenodeActivityMBean != null) 
  100.         namenodeActivityMBean.shutdown();
  101.     }
  102.       
  103.     /**
  104.      * Since this object is a registered updater, this method will be called
  105.      * periodically, e.g. every 5 seconds.
  106.      */
  107.     public void doUpdates(MetricsContext unused) {
  108.       synchronized (this) {
  109.         for (MetricsBase m : registry.getMetricsList()) {
  110.           m.pushMetric(metricsRecord);
  111.         }
  112.       }
  113.       metricsRecord.update();
  114.     }
  115.     public void resetAllMinMax() {
  116.       transactions.resetMinMax();
  117.       syncs.resetMinMax();
  118.       blockReport.resetMinMax();
  119.     }
  120. }