gpt4 book ai didi

null - Hadoop 0.20.205.0 WritableComparator 不遵守可配置键

转载 作者:可可西里 更新时间:2023-11-01 16:20:28 25 4
gpt4 key购买 nike

我一直在尝试运行 hadoop 0.20.205.0 MapReduce 作业(单线程,本地),它表现出各种奇怪和意外的行为。我终于明白为什么了。在我看来,这就像是 hadoop 中的一个错误,但也许有一些我不明白的地方。有人可以给我一些建议吗?我的 setMapOutputKeyClass 类实现了 Configurable。除非先调用 setConf,否则无法正确读取 readFields 方法(我相信这就是 Configurable 接口(interface)的重点)但是查看 WritableComparator 的代码,我发现当框架对它们进行排序时,它会实例化其内部关键对象:

70      key1 = newKey();
71 key2 = newKey();

并且 newKey() 使用空 Configuration 来构造键:

83  public WritableComparable newKey() {
84 return ReflectionUtils.newInstance(keyClass, null);
85 }

确实,当我在调试器中运行时,我发现在

91      key1.readFields(buffer);

key1里面的conf为null,所以没有调用setConf

这是 hadoop 中的错误,还是我应该使用 Configurable 之外的其他东西来配置 key ?如果这是一个错误,有人知道任何解决方法吗?

编辑:这是一个简短的(有点人为的)工作示例,由于这个原因而失败:

// example/WrapperKey.java

package example;

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

import org.apache.hadoop.conf.Configurable;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.ByteWritable;
import org.apache.hadoop.io.SequenceFile;
import org.apache.hadoop.io.WritableComparable;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.input.SequenceFileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat;
import org.apache.hadoop.util.ReflectionUtils;

/**
* This class wraps a WritableComparable class to add one extra possible value
* (namely null) to the range of values available for that class.
*/
public class WrapperKey<T extends WritableComparable> implements
WritableComparable<WrapperKey<T>>, Configurable {
private T myInstance;
private boolean isNull;
private Configuration conf;

@Override
public void setConf(Configuration conf) {
this.conf = conf;
Class<T> heldClass = (Class<T>) conf.getClass("example.held.class",
null, WritableComparable.class);
myInstance = ReflectionUtils.newInstance(heldClass, conf);
}

@Override
public Configuration getConf() {
return conf;
}

@Override
public void write(DataOutput out) throws IOException {
out.writeBoolean(isNull);
if (!isNull)
myInstance.write(out);
}

@Override
public void readFields(DataInput in) throws IOException {
isNull = in.readBoolean();
if (!isNull)
myInstance.readFields(in);
}

@Override
public int compareTo(WrapperKey<T> o) {
if (isNull) {
if (o.isNull)
return 0;
else
return -1;
} else if (o.isNull)
return 1;
else
return myInstance.compareTo(o.myInstance);
}

public void clear() {
isNull = true;
}

public T get() {
return myInstance;
}

/**
* Should sort the KV pairs (5,0), (3,0), and (null,0) to [(null,0), (3,0), (5,0)], but instead fails
* with a NullPointerException because WritableComparator's internal keys
* are not properly configured
*/
public static void main(String[] args) throws IOException,
InterruptedException, ClassNotFoundException {
Configuration conf = new Configuration();
conf.setClass("example.held.class", ByteWritable.class,
WritableComparable.class);
Path p = new Path("input");
Path startFile = new Path(p, "inputFile");
SequenceFile.Writer writer = new SequenceFile.Writer(
p.getFileSystem(conf), conf, startFile, WrapperKey.class,
ByteWritable.class);
WrapperKey<ByteWritable> key = new WrapperKey<ByteWritable>();
key.setConf(conf);
ByteWritable value = new ByteWritable((byte) 0);
key.get().set((byte) 5);
writer.append(key, value);
key.get().set((byte) 3);
writer.append(key, value);
key.clear();
writer.append(key, value);
writer.close();

Job j = new Job(conf, "Example job");
j.setInputFormatClass(SequenceFileInputFormat.class);
j.setOutputKeyClass(WrapperKey.class);
j.setOutputValueClass(ByteWritable.class);
j.setOutputFormatClass(SequenceFileOutputFormat.class);
FileInputFormat.setInputPaths(j, p);
FileOutputFormat.setOutputPath(j, new Path("output"));
boolean completed = j.waitForCompletion(true);
if (completed) {
System.out
.println("Successfully sorted byte-pairs by key (putting all null pairs first)");
} else {
throw new RuntimeException("Failed to sort");
}
}
}

最佳答案

WrapperKey 正在实现 Configurable 并实现 setConf。仅仅实现一个接口(interface)并不意味着其他一些类将调用它。 Hadoop 框架可能不会在键上调用 setConf 方法。

我不认为这是一个错误。我见过的所有类型都只实现了 WritableComparable 而不是 Configurable。不确定是否有解决方法,您可能必须在 key 中定义具体类型。

关于null - Hadoop 0.20.205.0 WritableComparator 不遵守可配置键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8584052/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com