zoukankan      html  css  js  c++  java
  • mapreduce新旧api对比

    对比:hadoop版本1.x 新版,hadoop版本0.x 旧版

    1.新api引用包一般是mapreduce ,旧版api引用的包一般是mapred

    2.新api使用Job,旧版api使用JobConf

    3.新api类的包名使用mapreduce,旧版api使用mapred

    4.新api使用job.waitForCompletion(true)提交作业,旧版api使用JobClient.runJob(job);

    5.新api:extends Mapper,旧版api:extends MapRedcueBase implements Mapper

    6.新api:使用上下文Context ctx ctx.write(),旧版api:使用OutputCollector<>collector Reporter  collector.collect();

    -------------------------

    新版:

    public class kpi extends Configured implements Tool

    {

    static class MyMapper extends Mapper<LongWritable, Text, Text, kpiwritable>

    {

    protected void map(LongWritable k1, Text v1, Context context)

    context.write(k2, v2);

    }

    static class MyReducer extends Reducer<Text, kpiwritable, Text, kpiwritable>

    {

    protected void reduce(Text k2, java.lang.Iterable<kpiwritable> v2s, Context ctx)

    context.write(k2, v2);

    }

    public int run(String[] arg0)

    {Job job=new Job(conf,"kpi");

    job.waitForCompletion(true);
    return 0;

    }

    public static void main(String[] args) throws Exception

    {
    ToolRunner.run(new kpi(), args);
    }

    }

    ---------------------------------------------------------

    旧版:

    public class old_api

    {

    static class MyMapper extends MapReduceBase implements Mapper<LongWritable, Text, Text, LongWritable>{

    public void map(LongWritable k1, Text v1,
    OutputCollector<Text, LongWritable> collector, Reporter reporter){

    collector.collect(new Text(word), new LongWritable(1));

    }

    }

    static class MyReducer extends MapReduceBase implements Reducer<Text, LongWritable, Text, LongWritable>{

    public void reduce(Text k2, Iterator<LongWritable> v2s,
    OutputCollector<Text, LongWritable> collector, Reporter reporter){

    collector.collect(k2, new LongWritable(times));

    }

    }

    public static void main(String[] args) {

    final JobConf job = new JobConf(conf , old_api.class);

    JobClient.runJob(job);

    }

    }

  • 相关阅读:
    多叉树
    PowerDesigner设置集锦(2)
    Delphi应用程序在命令行下带参数执行返回命令行提示的问题
    不允许在 '*******' 上使用扩展属性,或对象不存在
    仓库管理系统开发完成
    动态创建Frame窗体(根据类名,除T以外的字母)
    Access中的常用TSQL
    批量删除同类文件(带通配符)
    判断Access数据库中的表或查询是否存在的SQL
    序列化FastReport,重要提示少走弯路
  • 原文地址:https://www.cnblogs.com/mlj5288/p/4479265.html
Copyright © 2011-2022 走看看