MapReduce运行实例

1.功能

MapReduce可以将复杂的运行于大规模集群上的 并行计算过程高度抽象到了两个函数:MapReduce,并极大的方便了分布式编程工作。

2.实例(词频统计)

1.创建文件

在本地创建文件wordfile1.txt和wordfile2.txt

bash 复制代码
touch wordfile1.txt
echo "I love Spark" >> wordfile1.txt
echo "I love Hadoop" >> wordfile1.txt
//创建文件
bash 复制代码
touch wordfile2.txt
echo "Hadoop is good" >> wordfile2.txt
echo "Spark is fast" >> wordfile2.txt
//创建文件

打开Hadoop服务

bash 复制代码
start-dfs.sh
//开启Hadoop服务

查看是否有/user/hadoop/input目录

bash 复制代码
hdfs dfs -ls /user/hadoop
//查看目录

创建/user/hadoop/input目录

bash 复制代码
hdfs dfs -mkdir -p /user/hadoop/input
//创建input目录

创建文件

bash 复制代码
hdfs dfs -echo "I love Hadoop" > /user/hadoop/input/wordfile1.txt
//创建文件并写入内容

上传文件到HDFS

bash 复制代码
hdfs dfs -put wordfile1.txt wordfile2.txt /user/hadoop/input
//上传HDFSDFS

2.在Eclipse中创建项目

3.为项目创建所需要的JAR包

4.编写Java应用程序

java 复制代码
import java.io.IOException;
import java.util.StringTokenizer;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
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 org.apache.hadoop.util.GenericOptionsParser;

public class WordCount {
    public static void main(String[] args) throws Exception {
        Configuration conf = new Configuration();
        String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
        if (otherArgs.length < 2) {
            System.err.println("Usage: wordcount <in> [<in>...] <out>");
            System.exit(2);
        }
        Job job = Job.getInstance(conf, "word count");
        job.setJarByClass(WordCount.class);
        job.setMapperClass(TokenizerMapper.class);
        job.setCombinerClass(IntSumReducer.class);
        job.setReducerClass(IntSumReducer.class);
        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(IntWritable.class);
        for (int i = 0; i < otherArgs.length - 1; ++i) {
            FileInputFormat.addInputPath(job, new Path(otherArgs[i]));
        }
        FileOutputFormat.setOutputPath(job, new Path(otherArgs[otherArgs.length - 1]));
        System.exit(job.waitForCompletion(true) ? 0 : 1);
    }

    public static class TokenizerMapper extends Mapper<Object, Text, Text, IntWritable> {
        private static final IntWritable one = new IntWritable(1);
        private Text word = new Text();

        public void map(Object key, Text value, Context context) throws IOException, InterruptedException {
            StringTokenizer itr = new StringTokenizer(value.toString());
            while (itr.hasMoreTokens()) {
                word.set(itr.nextToken());
                context.write(word, one);
            }
        }
    }

    public static class IntSumReducer extends Reducer<Text, IntWritable, Text, IntWritable> {
        private IntWritable result = new IntWritable();

        public void reduce(Text key, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException {
            int sum = 0;
            for (IntWritable val : values) {  // 优化:使用增强for循环,避免迭代器泛型问题
                sum += val.get();
            }
            result.set(sum);
            context.write(key, result);
        }
    }
}

5.编译打包程序

结果:

6.运行程序

先打开Hadoop服务start-dfs.sh start-yarn.sh

删除HDFS中的input和output目录

bash 复制代码
hdfs dfs -rm -r input
hdfs dfs -rm -r output
//删除文件

创建input目录

bash 复制代码
hdfs dfs -mkdir input
//创建input目录

上传文件

bash 复制代码
hdfs dfs -put ./wordfile1.txt input
hdfs dfs -put ./wordfile2.txt input
//上传文件

运行JAR文件

bash 复制代码
hadoop jar /opt/hadoop-3.1.3/myapp/WordCount.jar input output
//运行JAR包

查看结果

bash 复制代码
hdfs dfs -cat output/*
//查看文件

如果要再次运行程序要删除output目录

相关推荐
深圳市恒星物联科技有限公司1 小时前
水质流量监测仪:复合指标监测的管网智能感知设备
大数据·网络·人工智能
是做服装的同学1 小时前
如何选择适合的服装企业ERP系统才能提升业务效率?
大数据·经验分享·其他
藦卡机器人3 小时前
国产机械臂做的比较好的品牌有哪些?
大数据·数据库·人工智能
代码改善世界3 小时前
CANN深度解构:中国AI系统软件的原创性突破与架构创新
大数据·人工智能·架构
java-yi3 小时前
Elasticsearch(ES)核心用法与实战技巧分享
大数据·elasticsearch·搜索引擎
星辰_mya4 小时前
Es之脑裂
大数据·elasticsearch·搜索引擎
搞科研的小刘选手4 小时前
【EI稳定检索会议】第七届计算机信息和大数据应用国际学术会议(CIBDA 2026)
大数据·acm·学术会议·计算机工程·计算机信息·大数据应用·信息与技术
成长之路5144 小时前
【数据集】地级市公共安全基建省内横向压力(2015-2025)
大数据
YangYang9YangYan5 小时前
2026中专大数据专业学习指南
大数据