gpt4 book ai didi

MapReduce中ArrayWritable 使用指南

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章MapReduce中ArrayWritable 使用指南由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

在编写MapReduce程序时,Map和Reduce之间传递的数据需要是ArrayList类型的,在调试运行时遇到了这样的一个错误:

?
1
java.lang.RuntimeException: java.lang.NoSuchMethodException: org.apache.hadoop.io.ArrayWritable.<init>()

经查询官网API文档后发现这样的一段话:

?
1
A Writable for arrays containing instances of a class. The elements of this writable must all be instances of the same class. If this writable will be the input for a Reducer, you will need to create a subclass that sets the value to be of the proper type. For example: public class IntArrayWritable extends ArrayWritable { public IntArrayWritable() { super(IntWritable.class); } }

原来是要自己实现一个ArrayWritable类的派生类,使用时只要实现两个构造函数即可 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public static class TextArrayWritable extends ArrayWritable {
  public TextArrayWritable() {
  super (Text. class );
  }
 
  public TextArrayWritable(String[] strings) {
  super (Text. class );
  Text[] texts = new Text[strings.length];
  for ( int i = 0 ; i < strings.length; i++) {
  texts[i] = new Text(strings[i]);
  }
  set(texts);
  }
}

  。

最后此篇关于MapReduce中ArrayWritable 使用指南的文章就讲到这里了,如果你想了解更多关于MapReduce中ArrayWritable 使用指南的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

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