当前位置: 首页 > 知识库问答 >
问题:

Hadoop Reduce输入记录=0

易宣
2023-03-14

我是Hadoop的新手,我的map-reduce代码可以工作,但它不产生任何输出。这里是Map-Reduce的信息:

16/09/20 13:11:40 INFO mapred.JobClient: Job complete: job_201609081210_0078
16/09/20 13:11:40 INFO mapred.JobClient: Counters: 28
16/09/20 13:11:40 INFO mapred.JobClient:   Map-Reduce Framework
16/09/20 13:11:40 INFO mapred.JobClient:     Spilled Records=0
16/09/20 13:11:40 INFO mapred.JobClient:     Map output materialized bytes=1362
16/09/20 13:11:40 INFO mapred.JobClient:     Reduce input records=0
16/09/20 13:11:40 INFO mapred.JobClient:     Virtual memory (bytes)   snapshot=466248720384
16/09/20 13:11:40 INFO mapred.JobClient:     Map input records=852032443
16/09/20 13:11:40 INFO mapred.JobClient:     SPLIT_RAW_BYTES=29964
16/09/20 13:11:40 INFO mapred.JobClient:     Map output bytes=0
16/09/20 13:11:40 INFO mapred.JobClient:     Reduce shuffle bytes=1362
16/09/20 13:11:40 INFO mapred.JobClient:     Physical memory (bytes) snapshot=57472311296
16/09/20 13:11:40 INFO mapred.JobClient:     Reduce input groups=0
16/09/20 13:11:40 INFO mapred.JobClient:     Combine output records=0
16/09/20 13:11:40 INFO mapred.JobClient:     Reduce output records=0
16/09/20 13:11:40 INFO mapred.JobClient:     Map output records=0
16/09/20 13:11:40 INFO mapred.JobClient:     Combine input records=0
16/09/20 13:11:40 INFO mapred.JobClient:     CPU time spent (ms)=2375210
16/09/20 13:11:40 INFO mapred.JobClient:     Total committed heap usage (bytes)=47554494464
16/09/20 13:11:40 INFO mapred.JobClient:   File Input Format Counters
16/09/20 13:11:40 INFO mapred.JobClient:     Bytes Read=15163097088
16/09/20 13:11:40 INFO mapred.JobClient:   FileSystemCounters
16/09/20 13:11:40 INFO mapred.JobClient:     HDFS_BYTES_READ=15163127052
16/09/20 13:11:40 INFO mapred.JobClient:     FILE_BYTES_WRITTEN=13170190
16/09/20 13:11:40 INFO mapred.JobClient:     FILE_BYTES_READ=6
16/09/20 13:11:40 INFO mapred.JobClient:   Job Counters
16/09/20 13:11:40 INFO mapred.JobClient:     Launched map tasks=227
16/09/20 13:11:40 INFO mapred.JobClient:     Launched reduce tasks=1
16/09/20 13:11:40 INFO mapred.JobClient:     SLOTS_MILLIS_REDUCES=759045
16/09/20 13:11:40 INFO mapred.JobClient:     Total time spent by all reduces waiting after reserving slots (ms)=0
16/09/20 13:11:40 INFO mapred.JobClient:     SLOTS_MILLIS_MAPS=1613259
16/09/20 13:11:40 INFO mapred.JobClient:     Total time spent by all maps waiting after reserving slots (ms)=0
16/09/20 13:11:40 INFO mapred.JobClient:     Data-local map tasks=227
16/09/20 13:11:40 INFO mapred.JobClient:   File Output Format Counters
16/09/20 13:11:40 INFO mapred.JobClient:     Bytes Written=0

下面是启动mapreduce作业的代码:

import java.io.File;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.NullWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

public class mp{

public static void main(String[] args) throws Exception {

    Job job1 = new Job();
    job1.setJarByClass(mp.class);
    FileInputFormat.addInputPath(job1, new Path(args[0]));                  
    String oFolder = args[0] + "/output";
    FileOutputFormat.setOutputPath(job1, new Path(oFolder));
    job1.setMapperClass(TransMapper1.class);
    job1.setReducerClass(TransReducer1.class);
    job1.setMapOutputKeyClass(LongWritable.class);
    job1.setMapOutputValueClass(DnaWritable.class);
    job1.setOutputKeyClass(LongWritable.class);
    job1.setOutputValueClass(Text.class);
}
}
import java.io.IOException;
import java.util.StringTokenizer;
import org.apache.hadoop.io.DoubleWritable;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;

public class TransMapper1 extends  Mapper<LongWritable, Text, LongWritable, DnaWritable> {

    @Override
    public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException {

        String line = value.toString();
        StringTokenizer tokenizer = new StringTokenizer(line);
        LongWritable bamWindow = new LongWritable(Long.parseLong(tokenizer.nextToken()));
        LongWritable read = new LongWritable(Long.parseLong(tokenizer.nextToken()));
        LongWritable refWindow = new LongWritable(Long.parseLong(tokenizer.nextToken()));
        IntWritable chr = new IntWritable(Integer.parseInt(tokenizer.nextToken()));
        DoubleWritable dist = new DoubleWritable(Double.parseDouble(tokenizer.nextToken()));
        DnaWritable dnaW = new DnaWritable(bamWindow,read,refWindow,chr,dist);
        context.write(bamWindow,dnaW);
    }
}
import java.io.IOException;
import java.util.ArrayList;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;

public class TransReducer1 extends Reducer<LongWritable, DnaWritable, LongWritable, Text> {

@Override
 public void reduce(LongWritable key, Iterable<DnaWritable> values, Context context) throws IOException, InterruptedException {

ArrayList<DnaWritable> list = new ArrayList<DnaWritable>();
double minDist = Double.MAX_VALUE;
    for (DnaWritable value : values) {
            long bamWindow = value.getBamWindow().get();
            long read = value.getRead().get();
            long refWindow = value.getRefWindow().get();
            int chr = value.getChr().get();
            double dist = value.getDist().get();
            if (dist > minDist)
                continue;
            else
            if (dist < minDist)
                 list.clear();
            list.add(new DnaWritable(bamWindow,read,refWindow,chr,dist));
            minDist = Math.min(minDist, value.getDist().get());
        }
        for(int i = 0; i < list.size(); i++){
            context.write(new LongWritable(list.get(i).getRead().get()),new Text(new DnaWritable(list.get(i).getBamWindow(),list.get(i).getRead(),list.get(i).getRefWindow(),list.get(i).getChr(),list.get(i).getDist()).toString()));
        }
    }
}
public class DnaWritable implements Writable {
    LongWritable bamWindow;
    LongWritable read;
    LongWritable refWindow;
    IntWritable chr;
    DoubleWritable dist;

    public DnaWritable(LongWritable bamWindow, LongWritable read, LongWritable refWindow, IntWritable chr, DoubleWritable dist){

    this.bamWindow = bamWindow;
    this.read = read;
    this.refWindow = refWindow;
    this.chr = chr;
    this.dist = dist;
}

public DnaWritable(long bamWindow, long read, long refWindow, int chr, double dist){
    this.bamWindow = new LongWritable(bamWindow);
    this.read = new LongWritable(read);
    this.refWindow = new LongWritable(refWindow);
    this.chr = new IntWritable(chr);
    this.dist = new DoubleWritable(dist);
}

@Override
public void write(DataOutput dataOutput) throws IOException {
    bamWindow.write(dataOutput);
    read.write(dataOutput);
    refWindow.write(dataOutput);
    chr.write(dataOutput);
    dist.write(dataOutput);
}

@Override
public void readFields(DataInput dataInput) throws IOException {
        bamWindow.readFields(dataInput);
        read.readFields(dataInput);
        refWindow.readFields(dataInput);
        chr.readFields(dataInput);
        dist.readFields(dataInput);
    }
}

如果有任何帮助,我们将不胜感激。谢谢你

共有1个答案

燕文昌
2023-03-14

可以将DnaWritable类更改为并测试相同的类吗?(处理NPE)

package com.hadoop.intellipaat;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;

import org.apache.hadoop.io.Writable;

public class DnaWritable implements Writable {

    private Long bamWindow;
    private Long read;
    private Long refWindow;
    private Integer chr;
    private Double dist;

    public DnaWritable(Long bamWindow, Long read, Long refWindow, Integer chr, Double dist) {
        super();
        this.bamWindow = bamWindow;
        this.read = read;
        this.refWindow = refWindow;
        this.chr = chr;
        this.dist = dist;
    }

    @Override
    public void write(DataOutput out) throws IOException {
        out.writeLong(bamWindow);
        out.writeLong(read);
        out.writeLong(refWindow);
        out.writeInt(chr);
        out.writeDouble(dist);
    }

    @Override
    public void readFields(DataInput in) throws IOException {
        this.bamWindow = in.readLong();
        this.read = in.readLong();
        this.refWindow = in.readLong();
        this.chr = in.readInt();
        this.dist = in.readDouble();
    }

}
 类似资料:
  • 在apache文档中阅读以下内容: InputSplit表示单个映射器要处理的数据。 通常,它在输入上显示一个面向字节的视图,作业的RecordReader负责处理该输入并显示一个面向记录的视图。 链接-https://hadoop.apache.org/docs/r2.6.1/api/org/apache/hadoop/mapred/inputsplit.html 有人能解释一下面向字节的视图和

  • 问题内容: 我通过Stata学习了数据操纵和分析,并使用log命令记录了所有写入的命令和生成的输出。这样做可以重现我的发现,检查以前的结果并与其他人共享pdf或txt。在Python中使用什么?如果我使用Python Jupyter Notebook或Spyder有区别吗? 问题答案: 执行所需操作的方法是使用命令,如下所述: 记录IPython输出?

  • 本文向大家介绍如何禁止input输入的历史记录?相关面试题,主要包含被问及如何禁止input输入的历史记录?时的应答技巧和注意事项,需要的朋友参考一下 有时 autocomplete 属性不生效时,可以使用一些 hack 的方法,比如先把 input 设置成 readonly 或者 disabled,再动态移除 readonly 和 disabled 属性

  • 问题内容: 我刚刚实现了Winston Logging,它可以按预期工作,但是遇到了一些我找不到答案的问题。 据我所知,winston的工作方式是设置的日志级别,以及使用优先级以下的任何东西,例如出错时,它还将包括信息日志等。是否有一种创建特定日志级别的方法可以称之为HTTP还是db,我只将http或db事件记录到日志中,而它们并没有出现在合并的文件或控制台中? 问题答案: 更好的解决方案是使用具

  • 事实上,直到现在我还没有成功。您能帮助我,请提供我的详细代码示例,以实现使用Kafka流DSL?