- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
这是连接两个关系的作业,
import org.apache.hadoop.mapred.*;
import org.apache.hadoop.conf.*;
import org.apache.hadoop.util.*;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.*;
import org.apache.hadoop.contrib.utils.join.*;
import java.io.*;
public class TwoByTwo extends Configured implements Tool
{
public static class MapClass extends DataJoinMapperBase
{
protected Text generateInputTag( String inputFile)
{
String datasource = inputFile.split( "\\.")[ 0];
return new Text( datasource);
}//end generateInputTag
protected Text generateGroupKey( TaggedMapOutput aRecord)
{
String line = ( ( Text) aRecord.getData()).toString();
//between two relations there may be more than one common attributes
//so group key has to include all these common attributes. Common
//attributes begin with an '_'( underscore).
String[] tokens = line.split(",");
String groupKey = "";
for( String s : tokens)
{
if( s.charAt( 0) == '_')
{
groupKey = groupKey + s;
}
}
return new Text( groupKey);
}//end generateGroupKey
protected TaggedMapOutput generateTaggedMapOutput( Object value)
{
TaggedWritable retv = new TaggedWritable( ( Text) value);
retv.setTag( this.inputTag);
return retv;
}//end TaggedMapOutput
}//end MapClass
public static class Reduce extends DataJoinReducerBase
{
protected TaggedMapOutput combine( Object[] tags, Object[] values)
{
if( tags.length < 2)
{
return null;
}
String joinedStr = "";
for( int i = 0; i < values.length; i++)
{
if( i > 0)
{
joinedStr += ",";
}
TaggedWritable tw = ( TaggedWritable) values[ i];
String line = ( ( Text) tw.getData()).toString();
String[] tokens = line.split( ",", 2);
joinedStr += tokens[ 1];
}
TaggedWritable retv = new TaggedWritable( new Text( joinedStr));
retv.setTag( ( Text) tags[ 0]);
return retv;
}//end TaggedMapOutput
}//end Reduce
public static class TaggedWritable extends TaggedMapOutput
{
private Writable data;
public TaggedWritable( Writable data)
{
this.tag = new Text( "");
this.data = data;
}//end TaggedWritable
public Writable getData()
{
return data;
}//end getData
public void write( DataOutput out) throws IOException
{
this.tag.write( out);
this.data.write( out);
}//end write
public void readFields( DataInput in) throws IOException
{
this.tag.readFields( in);
this.data.readFields( in);
}//end readFields
}//end TaggedWritable
public int run( String[] args) throws Exception
{
Configuration conf = getConf();
JobConf job = new JobConf( conf, TwoByTwo.class);
Path in = new Path( "relations/");
Path out = new Path( "relout/");
FileInputFormat.setInputPaths( job, in);
FileOutputFormat.setOutputPath( job, out);
job.setJobName( "TwoByTwo");
job.setMapperClass( MapClass.class);
job.setReducerClass( Reduce.class);
job.setInputFormat( TextInputFormat.class);
job.setOutputFormat( TextOutputFormat.class);
job.setOutputKeyClass( Text.class);
job.setOutputValueClass( TaggedWritable.class);
job.set("mapred.textoutputformat.separator", ",");
JobClient.runJob( job);
return 0;
}//end run
public static void main( String[] args) throws Exception
{
int res = ToolRunner.run( new Configuration(), new TwoByTwo(), args);
System.exit( res);
}//end main
}
当我运行这个作业时,
bin/hadoop jar /home/hduser/TwoByTwo.jar TwoByTwo -libjars /usr/local/hadoop/contrib/datajoin/hadoop-datajoin-1.0.3.jar
MapClass 正常运行。当 Reduce 在运行一段时间后运行时,我得到这个 NoSuchMethodException
12/10/18 16:38:17 INFO mapred.JobClient: map 100% reduce 27%
12/10/18 16:38:19 INFO mapred.JobClient: Task Id : attempt_201210181416_0013_r_000000_0, Status : FAILED
java.lang.RuntimeException: java.lang.NoSuchMethodException: TwoByTwo$TaggedWritable.<init>()
at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:115)
at org.apache.hadoop.io.serializer.WritableSerialization$WritableDeserializer.deserialize(WritableSerialization.java:62)
at org.apache.hadoop.io.serializer.WritableSerialization$WritableDeserializer.deserialize(WritableSerialization.java:40)
at org.apache.hadoop.mapred.Task$ValuesIterator.readNextValue(Task.java:1271)
at org.apache.hadoop.mapred.Task$ValuesIterator.next(Task.java:1211)
at org.apache.hadoop.mapred.ReduceTask$ReduceValuesIterator.moveToNext(ReduceTask.java:249)
at org.apache.hadoop.mapred.ReduceTask$ReduceValuesIterator.next(ReduceTask.java:245)
at org.apache.hadoop.contrib.utils.join.DataJoinReducerBase.regroup(DataJoinReducerBase.java:106)
at org.apache.hadoop.contrib.utils.join.DataJoinReducerBase.reduce(DataJoinReducerBase.java:129)
at org.apache.hadoop.mapred.ReduceTask.runOldReducer(ReduceTask.java:519)
at org.apache.hadoop.mapred.ReduceTask.run(ReduceTask.java:420)
at org.apache.hadoop.mapred.Child$4.run(Child.java:255)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAs(Subject.java:415)
at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1121)
at org.apache.hadoop.mapred.Child.main(Child.java:249)
Caused by: java.lang.NoSuchMethodException: TwoByTwo$TaggedWritable.<init>()
at java.lang.Class.getConstructor0(Class.java:2721)
at java.lang.Class.getDeclaredConstructor(Class.java:2002)
at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:109)
... 15 more
我对嵌套类 TaggedWritable 有疑问。为什么我在 reduce 端而不是 map 端遇到此类问题?我该如何解决这个错误?两个关系的约束对错误有什么影响?感谢您的帮助。
最佳答案
类 TaggedWritable
没有空构造函数,因此在应该读取序列化数据的 reduce 阶段应用程序失败,因为无法创建 TaggedWritable
类型的键通过反射。您应该添加一个空的构造函数。
您的映射阶段成功完成,因为在映射阶段您的映射器创建了 TaggedWritable
类型的键本身。
关于Hadoop : NoSuchMethodException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12956488/
对于我的程序,目标是使用一堆接口(interface)并创建一个程序来进行测试并允许用户进行测试。我遇到的具体问题是 IQuestionFactory 接口(interface),它有助于在 Test
我刚刚读到有关反射的内容并决定尝试一下,但我似乎遇到了一个错误,我找不到原因。 我在一个类中得到了以下代码: String hashType = "md5"; Method method = Dige
我正在尝试使用反射来加载一个类的实例。当我尝试这样做时,我没有得到这样的方法异常。我已经检查并检查并重新检查。该构造函数显然确实存在。有人有什么想法吗?我之前在另一个代码基本相同的项目中成功使用过它,
这是连接两个关系的作业, import org.apache.hadoop.mapred.*; import org.apache.hadoop.conf.*; import org.apache.h
我正在尝试反序列化包含方法的 XML 文件。 片段看起来像: XMLDecoder decoder = new XMLDecoder(os); deSerializedObject = de
在我的 POM 中,我添加了依赖项 String 4.2.9.RELEASE、Spring boot 1.5.1.RELEASE 和 FasterXML/jackson 2.8.6,并出现以下错误:
在我的代码中有一个方法应该调用对象的方法doSomething。首先,不知道对象的类是否具有公共(public)方法。到目前为止,我使用了以下代码: try { Method method = c
我有以下具有静态方法的类,该方法采用 Class 类型的参数并生成一个 FunctionDescriptor。 public class NoInputFunctionDescriptorFactor
我正在使用 glassfish 3.1.2.2 服务器和 idea Ultimate Edition 11(在 Ubuntu 12.04 上)。当我部署我的耳朵项目时,有一个异常(exception)
所以我有一个定义了 2 个公共(public)方法的类。当我调用 getDeclaredMethods 时,然后循环结果,打印名称,两者都正确显示。所以不仅该方法存在,而且反射调用也找到了它。 但是当
每当使用 URLClassLoader 动态加载类时,当尝试执行使用自定义数据类型作为参数的方法时,我都会收到 NoSuchMethodException 异常。它查找具有标准类型(如 String
我正在尝试根据类和参数创建类的实例。用于创建此类的方法如下所示: @SuppressWarnings("unchecked") public Plugin instantiatePlugin(
我正在构建一个 JavaFx 应用程序,我想创建一个接收 GridPane 和 Node[] 以及添加到 Pane 中的项目数量的方法。但是,当我调用该方法时,我收到 NoSuchMethodExce
我有一个类如下: public class StreamEventSuccess { private final T event; public StreamEventSuccess(
我们正在开发一个动态类加载器项目,并尝试通过 URLClassLoader 调用动态加载类中的方法。它在 Eclipse 中运行时工作得很好,因此调用和动态加载的类被捆绑到两个不同的 jar 中,然后
我正在使用 Taylor 近似在 Java 中编写正弦函数的递归定义,但在运行代码时得到了 noSuchMethodException。这是我到目前为止所拥有的: public static void
我有一个 Android 应用程序。我正在使用反射来调用 CookieManager 的方法。 我在做什么: if (Build.VERSION.SDK_INT >= 21) { Method
我正在尝试编写一个表单,有一次有 2 个单选按钮询问此人的性别。我想要求至少按下一个按钮,否则他们就会 toast 。它们出现在 activity_main 中:
给出的类奖: public class Award { /* * */ // fields of the class Award() {
我在执行时得到一个NoSuchMethodException: operacionDTO.getClass().getMethod("setPrioridad").invoke(operacionDT
我是一名优秀的程序员,十分优秀!