MapReduceHadoop中的java倒排列表

x33g5p2x  于 2021-06-02  发布在  Hadoop
关注(0)|答案(1)|浏览(354)

我试图修改这段代码以生成一个完整的倒排列表。我的意思是,获取文件位置中每个单词的索引。如果我们有两个包含单词的文件

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是.txt文件中的第一个和第十个单词,是def.txt文件中的第五个单词
我修改了代码以提供“单词位置和单词频率”,如下所示:

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中如何做到这一点。有人帮忙吗?

fkvaft9z

fkvaft9z1#

只是想一想你的问题。
输入格式:
textinputformat使用每一行输入文件作为输入记录。因此,应该使用输入格式,将整个文件作为一个输入记录进行访问。例如,您可以使用这个wholefilerecordreader。
Map器:
Map器应该返回有关输入记录中每个单词的信息。返回键是单词,返回值是包含输入文件和当前单词在文件中的位置的任何结构。您可以编写自己的可写类,或将此信息合并到字符串中,然后像现在一样返回文本类。
减速器:
reducer应该合并每个单词的信息。只需使用一个键循环传递给reducer的所有值,并以您描述的格式生成结果字符串。

相关问题