繁体   English   中英

Map Reduce Hadoop中的倒排列表

[英]Inverted list in Map Reduce Hadoop

我正在尝试修改此代码以生成完整的反向列表。 我的意思是,获取文件位置中每个单词的索引。 也就是说,如果我们有两个文件包含

  abc.txt =    I am coming to the park to play, yes i am.

  def.txt = Please come on over, i will be waiting for you

我应该有这样的东西:

i /home/abc.txt: 1 10 /home/def.txt: 5

这意味着字母i是abc.txt文件中的第1个和第10个单词,而def.txt文件中的第5个单词

我修改了代码以提供“单词位置和单词频率”,如下所示:

import java.io.IOException;
import java.util.*;

import org.apache.hadoop.conf.*;
import org.apache.hadoop.fs.*;
import org.apache.hadoop.io.*;
import org.apache.hadoop.mapreduce.*;
import org.apache.hadoop.mapreduce.lib.input.*;
import org.apache.hadoop.mapreduce.lib.output.*;
import org.apache.hadoop.util.*;

public class WordCountByFile extends Configured implements Tool {

    public static void main(String args[]) throws Exception {
        String[] argsLocal = {
            "input#2", "output#2"
        };
        int res = ToolRunner.run(new WordCountByFile(), argsLocal);
        System.exit(res);
    }

    public int run(String[] args) throws Exception {
        Path inputPath = new Path(args[0]);
        Path outputPath = new Path(args[1]);

        Configuration conf = getConf();
        Job job = new Job(conf, this.getClass().toString());

        FileInputFormat.setInputPaths(job, inputPath);
        FileOutputFormat.setOutputPath(job, outputPath);

        job.setJobName("WordCountByFile");
        job.setJarByClass(WordCountByFile.class);
        job.setInputFormatClass(TextInputFormat.class);
        job.setOutputFormatClass(TextOutputFormat.class);
        job.setMapOutputKeyClass(Text.class);
        job.setMapOutputValueClass(IntWritable.class);
        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(IntWritable.class);

        job.setMapperClass(Map.class);
        job.setCombinerClass(Reduce.class);
        job.setReducerClass(Reduce.class);

        return job.waitForCompletion(true) ? 0 : 1;
    }

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

        public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException {
            String line = value.toString();
            StringTokenizer tokenizer = new StringTokenizer(line);
            while (tokenizer.hasMoreTokens()) {

                String filePathString = ((FileSplit) context.getInputSplit()).getPath().toString();

                word.set(tokenizer.nextToken() + " " + filePathString + " : ");
                context.write(word, one);
            }
        }
    }

    public static class Reduce extends Reducer < Text, IntWritable, Text, IntWritable > {

        @Override
        public void reduce(Text key, Iterable < IntWritable > values, Context context) 
            throws IOException, InterruptedException {
            int sum = 0;
            for (IntWritable value: values) {
                sum += value.get();
            }
            context.write(key, new IntWritable(sum));
        }
    }
}

我知道它必须与Java中的某些索引一起使用,但是我试图弄清楚如何在Hadoop Map Reduce中做到这一点。 有帮助吗?

关于您的问题的几点思考。

输入格式:

TextInputFormat使用输入文件的每一行作为输入记录。 因此,您应该使用输入格式,该格式提供对整个文件的访问,作为一个输入记录。 例如,您可以使用此WholeFileRecordReader

制图员:

映射器应返回有关输入记录中每个单词的信息。 返回键是单词,返回值是包含输入文件和当前单词在文件中位置的任何结构。 您可以编写自己的Writable类或将此信息合并到字符串中,然后像现在一样返回Text类。

减速器:

Reducer应该合并每个单词的信息。 只需用一个键循环遍历传递给reducer的所有值,然后以您描述的格式生成结果字符串。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM