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

网格计算

开发平台:

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.vaidya.postexdiagnosis.tests;
  19. import org.apache.hadoop.vaidya.statistics.job.JobStatistics;
  20. import org.apache.hadoop.vaidya.statistics.job.JobStatisticsInterface.JobKeys;
  21. import org.apache.hadoop.vaidya.statistics.job.JobStatisticsInterface.KeyDataType;
  22. import org.apache.hadoop.vaidya.statistics.job.JobStatisticsInterface.MapTaskKeys;
  23. import org.apache.hadoop.vaidya.statistics.job.JobStatisticsInterface.ReduceTaskKeys;
  24. import org.apache.hadoop.vaidya.statistics.job.MapTaskStatistics;
  25. import org.apache.hadoop.vaidya.DiagnosticTest;
  26. import org.w3c.dom.Element;
  27. import java.util.Hashtable;
  28. import java.util.List;
  29. /**
  30.  *
  31.  */
  32. public class MapSideDiskSpill extends DiagnosticTest {
  33.   private double _impact;
  34.   private JobStatistics _job;
  35.   private long _numLocalBytesWrittenByMaps;
  36.   
  37.   /**            
  38.    * 
  39.    */
  40.   public MapSideDiskSpill() {
  41.   }
  42.   /* 
  43.    *  
  44.    */
  45.   @Override
  46.   public double evaluate(JobStatistics job) {
  47.   
  48.     /*
  49.      * Set the this._job
  50.      */
  51.     this._job = job;
  52.       
  53.     /*
  54.      * Read the Normalization Factor
  55.      */
  56.     double normF = getInputElementDoubleValue("NormalizationFactor", 3.0);
  57.     
  58.     /*
  59.      * Get the sorted reduce task list by number MapTaskKeys.OUTPUT_BYTES
  60.      */
  61.     List<MapTaskStatistics> srTaskList = job.getMapTaskList(MapTaskKeys.LOCAL_BYTES_WRITTEN, KeyDataType.LONG);
  62.     int size = srTaskList.size();
  63.     long numLocalBytesWrittenByMaps = 0;
  64.     for (int i=0; i<size; i++) {
  65.       numLocalBytesWrittenByMaps += srTaskList.get(i).getLongValue(MapTaskKeys.LOCAL_BYTES_WRITTEN);
  66.     }
  67.     this._numLocalBytesWrittenByMaps = numLocalBytesWrittenByMaps;
  68.     
  69.     /*
  70.      * Map only job vs. map reduce job
  71.      */
  72.     if (job.getLongValue(JobKeys.TOTAL_REDUCES) > 0) {
  73.       this._impact = (this._numLocalBytesWrittenByMaps - job.getLongValue(JobKeys.MAP_OUTPUT_BYTES))/job.getLongValue(JobKeys.MAP_OUTPUT_BYTES);
  74.     } else {
  75.       this._impact = this._numLocalBytesWrittenByMaps/job.getLongValue(JobKeys.MAP_OUTPUT_BYTES);
  76.     }
  77.     
  78.     if (this._impact > normF) {
  79.       this._impact = 1.0;
  80.     } else {
  81.       this._impact = this._impact/normF;
  82.     }
  83.     
  84.     return this._impact;
  85.     
  86.   }
  87.   
  88.   /* (non-Javadoc)
  89.    * @see org.apache.hadoop.contrib.utils.perfadvisor.diagnostic_rules.DiagnosticRule#getAdvice()
  90.    */
  91.   @Override
  92.   public String getPrescription() {
  93.     return 
  94.     "* Use combiner to lower the map output size.n" +
  95.       "* Increase map side sort buffer size (io.sort.mb:"+this._job.getJobConf().getInt("io.sort.mb", 0) + ").n" +
  96.       "* Increase index buffer size (io.sort.record.percent:"+ this._job.getJobConf().getInt("io.sort.record.percent", 0) + ") if number of Map Output Records are large. n" +
  97.       "* Increase (io.sort.spill.percent:"+ this._job.getJobConf().getInt("io.sort.spill.percent", 0) + "), default 0.80 i.e. 80% of sort buffer size & index buffer size. n";
  98.   }
  99.   /* (non-Javadoc)
  100.    * @see org.apache.hadoop.contrib.utils.perfadvisor.diagnostic_rules.DiagnosticRule#getReferenceDetails()
  101.    */
  102.   @Override
  103.   public String getReferenceDetails() {
  104.     String ref = 
  105.     "* TotalMapOutputBytes: "+this._job.getLongValue(JobKeys.MAP_OUTPUT_BYTES)+"n"+
  106.     "* Total Local Bytes Written by Maps: "+this._numLocalBytesWrittenByMaps+"n"+
  107.     "* Impact: "+ truncate(this._impact);
  108.     return ref;
  109.   }
  110. }