MapReduce当中Combiner的用法

马克-to-win @ 马克java社区:防盗版实名手机尾号:73203。在上一章的helloworld例子中,每一个map都可能会产生大量的本地输出,这些输出会通过网络到达reducer端,这样会非常浪费带宽。解决这个问题可以通过Combiner。Combiner的作用就是对map端的输出先做一次合并,是MapReduce的一种优化手段之一。

package com;
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.Partitioner;
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 WordCountMark_to_win {

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

        public void map(Object key, Text value, Context context) throws IOException, InterruptedException {
            System.out.println("key is 马克-to-win @ 马克java社区:防盗版实名手机尾号:73203"+key.toString()+" value is "+value.toString());
            StringTokenizer itr = new StringTokenizer(value.toString());
            while (itr.hasMoreTokens()) {
                word.set(itr.nextToken());
                context.write(word, one);
            }
        }
    }

    public static class PartitionClass extends Partitioner<Text, IntWritable> 
    {
/*
int com.WordCount.PartitionClass.getPartition(Text key, IntWritable value, int numPartitions)
Get the partition number for a given key (hence record) given the total number of partitions i.e. number of reduce-tasks for the job. 
Parameters:key the key to be partioned.value the entry value.numPartitions the total number of partitions.
Returns:the partition number for the key.
*/        
      
 

更多请见下节:https://blog.csdn.net/qq_44594249/article/details/96327542

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
MapReduce编程,倒排索引是一种常见的应用案例。倒排索引(Inverted index)是一种索引方法,用于存储某个单词在一个文档或一组文档的位置映射。它是文档检索系统最常用的数据结构。 在实现倒排索引的MapReduce程序,首先需要设置MapReduce工作任务的相关参数,比如输入路径和输出路径。然后,需要编写自定义的Mapper类,将文本的单词按照空格进行切割,并将“单词:文档名称”作为key,单词次数作为value输出。接着,在Map阶段的输出结果形式基础上,可以编写自定义的Combiner类,对每个文档的单词进行词频统计。 具体实现过程,可以使用Eclipse等开发工具打开项目,并按照指定的路径和格式进行输入和输出。在Mapper类,可以使用split函数对文本进行切割,并使用context.write函数将结果输出。在Combiner类,可以对每个文档的单词进行统计,并输出结果。最后,通过在MapReduce程序指定输入路径和输出路径,运行程序即可得到倒排索引的结果。 总结起来,实现倒排索引的MapReduce程序包括设置任务参数、编写Mapper类、编写Combiner类,并按照指定的输入和输出路径运行程序。通过这样的实现,可以将文档的单词按照索引形式进行存储,方便后续的全文搜索等操作。<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

mark_to_win

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值