MapReduce编写wordcount程序代码实现-成都快上网建站

MapReduce编写wordcount程序代码实现

MapReduce经典案例代码(wordcount)

以经典的wordcount为例,通过自定义的mapper和reducer来实现单词计数

package com.fwmagic.mapreduce;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
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;

/**
 * MapReduce单词统计
 */
public class WordCountDemo {

    /**
     * 自定义Mapper继承:org.apache.hadoop.mapreduce.Mapper,实现map方法
     */
    public static class WordCountMapper extends Mapper {

        @Override
        protected void map(LongWritable key, Text value,
                           Mapper.Context context)
                throws IOException, InterruptedException {
            String[] words = value.toString().split(" ");
            for (String word : words) {
                context.write(new Text(word), new IntWritable(1));
            }
        }
    }

    /**
     * 自定义Reducer继承:org.apache.hadoop.mapreduce.Reducer,实现reduce方法
     */
    public static class WordCountReducer extends Reducer {
        @Override
        protected void reduce(Text key, Iterable values,
                              Reducer.Context context)
                throws IOException, InterruptedException {
            int count = 0;
            for (IntWritable writable : values) {
                count += writable.get();
            }
            context.write(key, new IntWritable(count));
        }
    }

    /**
     * job启动类,设置参数并集群中提交job
     * @param args
     * @throws Exception
     */
    public static void main(String[] args) throws Exception {
        Configuration conf = new Configuration();
        Job job = Job.getInstance(conf);
        job.setJarByClass(WordCountDemo.class);

        job.setMapperClass(WordCountMapper.class);
        job.setReducerClass(WordCountReducer.class);

        job.setMapOutputKeyClass(Text.class);
        job.setMapOutputValueClass(IntWritable.class);

        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(IntWritable.class);

        FileInputFormat.setInputPaths(job, new Path("/wordcount/input"));
        FileOutputFormat.setOutputPath(job, new Path("/wordcount/output"));

        boolean b = job.waitForCompletion(true);
        System.exit(b ? 0 : 1);
    }
}

集群中/wordcount/input目录下数据内容

MapReduce编写wordcount程序代码实现

创新互联公司服务项目包括黄埔网站建设、黄埔网站制作、黄埔网页制作以及黄埔网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,黄埔网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到黄埔省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!

打包项目,执行job

hadoop jar fwmagic-wordcount.jar 

执行输出结果

MapReduce编写wordcount程序代码实现


当前题目:MapReduce编写wordcount程序代码实现
URL链接:http://kswjz.com/article/jdjgee.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流