WordCountApp(MapReduce分布式计算框架代码)

package com.dsj.hadoop.hdfs;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

import java.io.IOException;
public class WordCountApp {
/**
* 自定义Mapper处理类
*/
public static class MyMapper extends Mapper<LongWritable, Text, Text, LongWritable> {

    LongWritable one = new LongWritable(1);

    @Override
    protected void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException {

        String line = value.toString(); // 接收到的每一行数据
        String[] words = line.split("\t"); //按照指定的分隔符进行拆分

        for (String word : words) {
            context.write(new Text(word), one); //通过上下文把map的处理结果输出
        }

    }
}

/**
 * 自定义Reducer处理类
 */
public static class MyReducer extends Reducer<Text, LongWritable, Text, LongWritable> {

    @Override
    protected void reduce(Text key, Iterable<LongWritable> values, Context context) throws IOException, InterruptedException {
        long sum = 0;

        for (LongWritable value : values) {
            sum += value.get();  //求出现的总数
        }

        context.write(key, new LongWritable(sum)); //最终统计结果的输出
    }
}

/**
 * 自定义Driver,封装MapReduce作业的所有信息
 */
public static void main(String[] args) throws Exception {

    //创建Configuration
    Configuration configuration = new Configuration();

    //创建Job
    Job job = Job.getInstance(configuration, "wordcount");

    //设置job的处理类
    job.setJarByClass(WordCountApp.class);

    //设置作业处理的输入路径
    FileInputFormat.setInputPaths(job, new Path(args[0]));

    //设置map相关的
    job.setMapperClass(MyMapper.class);
    job.setMapOutputKeyClass(Text.class);
    job.setMapOutputValueClass(LongWritable.class);

    //设置reduce相关的
    job.setReducerClass(MyReducer.class);
    job.setOutputKeyClass(Text.class);
    job.setOutputValueClass(LongWritable.class);

    //设置作业处理的输出路径
    FileOutputFormat.setOutputPath(job, new Path(args[1]));

    boolean result = job.waitForCompletion(true);

    System.exit(result ? 0 : 1);
}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值