当前位置: 首页>>代码示例>>Java>>正文


Java ShuffleConsumerPlugin类代码示例

本文整理汇总了Java中org.apache.hadoop.mapred.ShuffleConsumerPlugin的典型用法代码示例。如果您正苦于以下问题:Java ShuffleConsumerPlugin类的具体用法?Java ShuffleConsumerPlugin怎么用?Java ShuffleConsumerPlugin使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ShuffleConsumerPlugin类属于org.apache.hadoop.mapred包,在下文中一共展示了ShuffleConsumerPlugin类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: init

import org.apache.hadoop.mapred.ShuffleConsumerPlugin; //导入依赖的package包/类
@Override
public void init(ShuffleConsumerPlugin.Context context) {
  this.context = context;

  this.reduceId = context.getReduceId();
  this.jobConf = context.getJobConf();
  this.umbilical = context.getUmbilical();
  this.reporter = context.getReporter();
  this.metrics = new ShuffleClientMetrics(reduceId, jobConf);
  this.copyPhase = context.getCopyPhase();
  this.taskStatus = context.getStatus();
  this.reduceTask = context.getReduceTask();
  this.localMapFiles = context.getLocalMapFiles();
  
  scheduler = new ShuffleSchedulerImpl<K, V>(jobConf, taskStatus, reduceId,
      this, copyPhase, context.getShuffledMapsCounter(),
      context.getReduceShuffleBytes(), context.getFailedShuffleCounter());
  merger = createMergeManager(context);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:20,代码来源:Shuffle.java

示例2: init

import org.apache.hadoop.mapred.ShuffleConsumerPlugin; //导入依赖的package包/类
@Override
public void init(ShuffleConsumerPlugin.Context<K, V> context) {
    // just verify that Context has kept its public interface
  context.getReduceId();
  context.getJobConf();
  context.getLocalFS();
  context.getUmbilical();
  context.getLocalDirAllocator();
  context.getReporter();
  context.getCodec();
  context.getCombinerClass();
  context.getCombineCollector();
  context.getSpilledRecordsCounter();
  context.getReduceCombineInputCounter();
  context.getShuffledMapsCounter();
  context.getReduceShuffleBytes();
  context.getFailedShuffleCounter();
  context.getMergedMapOutputsCounter();
  context.getStatus();
  context.getCopyPhase();
  context.getMergePhase();
  context.getReduceTask();
  context.getMapOutputFile();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:25,代码来源:TestShufflePlugin.java

示例3: init

import org.apache.hadoop.mapred.ShuffleConsumerPlugin; //导入依赖的package包/类
@Override
public void init(ShuffleConsumerPlugin.Context context) {
  this.context = context;

  this.reduceId = context.getReduceId();
  this.jobConf = context.getJobConf();
  this.umbilical = context.getUmbilical();
  this.reporter = context.getReporter();
  this.metrics = new ShuffleClientMetrics(reduceId, jobConf);
  this.copyPhase = context.getCopyPhase();
  this.taskStatus = context.getStatus();
  this.reduceTask = context.getReduceTask();
  
  scheduler = new ShuffleSchedulerImpl<K, V>(jobConf, taskStatus, reduceId,
      this, copyPhase, context.getShuffledMapsCounter(),
      context.getReduceShuffleBytes(), context.getFailedShuffleCounter());
  merger = createMergeManager(context);
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:19,代码来源:Shuffle.java

示例4: init

import org.apache.hadoop.mapred.ShuffleConsumerPlugin; //导入依赖的package包/类
@Override
public void init(ShuffleConsumerPlugin.Context context) {
    
    this.reduceId = context.getReduceId();
    this.jobConf = context.getJobConf();
    this.umbilical = context.getUmbilical();
    this.reporter = context.getReporter();
    this.copyPhase = context.getCopyPhase();
    this.mergePhase = context.getMergePhase();
    this.taskStatus = context.getStatus();
    this.reduceTask = context.getReduceTask();
    this.codec = context.getCodec();
    this.spilledRecordsCounter = context.getSpilledRecordsCounter();
    this.mergedMapOutputsCounter = context.getMergedMapOutputsCounter();
    
    jobConf.setBoolean(MRConfig.MAPRED_IFILE_READAHEAD, false);
    try {
        lustrefs = (LustreFileSystem)FileSystem.get(LustreFileSystem.NAME, jobConf);
        mapOutputDir = SharedFsPlugins.getTempPath(jobConf,
                                                   JobID.downgrade(reduceId.getJobID()));
        reduceDir = new Path(mapOutputDir,
                             String.format(SharedFsPlugins.MAP_OUTPUT,
                                           reduceId.getTaskID().getId(), 0, 0)).getParent();
        mergeTempDir = new Path(mapOutputDir, "temp");
    } catch (IOException ioe) {
        throw new RuntimeException("Map Output directory not found !!", ioe);
    }
    
    // Scheduler
    scheduler = new ShuffleSchedulerImpl<K, V>(
                                               jobConf, taskStatus, reduceId, this, copyPhase,
                                               context.getShuffledMapsCounter(),
                                               context.getReduceShuffleBytes(),
                                               context.getFailedShuffleCounter());
    
    this.ioSortFactor = jobConf.getInt(MRJobConfig.IO_SORT_FACTOR, 100);
    
    this.merger = new FileMerger();
    this.merger.start();
}
 
开发者ID:intel-hpdd,项目名称:lustre-connector-for-hadoop,代码行数:41,代码来源:LustreFsShuffle.java

示例5: createMergeManager

import org.apache.hadoop.mapred.ShuffleConsumerPlugin; //导入依赖的package包/类
protected MergeManager<K, V> createMergeManager(
    ShuffleConsumerPlugin.Context context) {
  return new MergeManagerImpl<K, V>(reduceId, jobConf, context.getLocalFS(),
      context.getLocalDirAllocator(), reporter, context.getCodec(),
      context.getCombinerClass(), context.getCombineCollector(), 
      context.getSpilledRecordsCounter(),
      context.getReduceCombineInputCounter(),
      context.getMergedMapOutputsCounter(), this, context.getMergePhase(),
      context.getMapOutputFile());
}
 
开发者ID:naver,项目名称:hadoop,代码行数:11,代码来源:Shuffle.java

示例6: testPluginAbility

import org.apache.hadoop.mapred.ShuffleConsumerPlugin; //导入依赖的package包/类
@Test
/**
 * A testing method instructing core hadoop to load an external ShuffleConsumerPlugin
 * as if it came from a 3rd party.
 */
public void testPluginAbility() {

  try{
    // create JobConf with mapreduce.job.shuffle.consumer.plugin=TestShuffleConsumerPlugin
    JobConf jobConf = new JobConf();
    jobConf.setClass(MRConfig.SHUFFLE_CONSUMER_PLUGIN,
                     TestShufflePlugin.TestShuffleConsumerPlugin.class,
                     ShuffleConsumerPlugin.class);

    ShuffleConsumerPlugin shuffleConsumerPlugin = null;
    Class<? extends ShuffleConsumerPlugin> clazz =
      jobConf.getClass(MRConfig.SHUFFLE_CONSUMER_PLUGIN, Shuffle.class, ShuffleConsumerPlugin.class);
    assertNotNull("Unable to get " + MRConfig.SHUFFLE_CONSUMER_PLUGIN, clazz);

    // load 3rd party plugin through core's factory method
    shuffleConsumerPlugin = ReflectionUtils.newInstance(clazz, jobConf);
    assertNotNull("Unable to load " + MRConfig.SHUFFLE_CONSUMER_PLUGIN, shuffleConsumerPlugin);
  }
  catch (Exception e) {
    assertTrue("Threw exception:" + e, false);
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:28,代码来源:TestShufflePlugin.java


注:本文中的org.apache.hadoop.mapred.ShuffleConsumerPlugin类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。