gpt4 book ai didi

java - MRUnit reducer 测试 : Mismatch in value class

转载 作者:可可西里 更新时间:2023-11-01 14:49:56 26 4
gpt4 key购买 nike

我的 reducer 单元测试在迁移到 MapReduce 2 后抛出一个“值类不匹配”异常:

值类不匹配:预期:类 org.apache.hadoop.io.IntWritable 实际:类 com.company.MyWritable

错误信息本身对我来说很清楚,但我不明白为什么 MRUnit 得到的是临时可写类而不是 IntWritable。

reducer 实现:

public static class TestCountReduce extends
Reducer<Text, MyWritable, Text, IntWritable> {

public void reduce(Text key, Iterator<MyWritable> values,
Context context) throws IOException, InterruptedException {

...
context.write(key, new IntWritable(s.size()));
}
}

测试设置:

public void setUp() throws IOException {
Mapper<Object, Text, Text, MyWritable> mapper = new MyMapper();
Reducer<Text, MyWritable, Text, IntWritable> reducer = new MyReducer();

mapDriver = new MapDriver<Object, Text, Text, MyWritable>();
mapDriver.setMapper(mapper);

reduceDriver = new ReduceDriver<Text, MyWritable, Text, IntWritable>();
reduceDriver.setReducer(reducer);
}

最后是测试用例:

@Test
public void testReducer() throws IOException {
List<MyWritable> values = new ArrayList<MyWritable>();
values.add(new MyWritable("1"));
values.add(new MyWritable("1"));
reduceDriver.withInput(new Text("testkey"), values);
reduceDriver.withOutput(new Text("testkey"), new IntWritable(1));
reduceDriver.runTest();
}

最佳答案

请检查你的 reducer 实现中的 reduce 方法签名

应该是

public void reduce(Text key, Iterable<MyWritable> values, Context context) throws IOException, InterruptedException {

代替

public void reduce(Text key, Iterator<MyWritable> values, Context context) throws IOException, InterruptedException {

关于java - MRUnit reducer 测试 : Mismatch in value class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24293018/

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