java.lang.NoSuchMethodError:org.apache.hadoop.conf.Configuration.addDeprecation(Ljava / lang / String; [Ljava / lang / String;)

时间:2014-03-30 03:43:47

标签: java eclipse hadoop mapreduce

我正在使用Java / Eclipse / Hadoop 2.2.0(包含所有必需的jar)在Ubuntu上使用以下代码运行示例Map Reduce任务(本地单节点),但遇到异常(下面的堆栈跟踪)。

我可以从ubuntu控制台运行Hadoop中的示例字数示例。

代码:

import java.io.IOException;
import java.util.StringTokenizer;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.input.KeyValueTextInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

public class testhdfs
{
    public static class WordMapper extends Mapper<Text, Text, Text, Text>
    {
        private Text word = new Text();
        public void map(Text key, Text value, Context context) throws IOException, InterruptedException
        {
            StringTokenizer itr = new StringTokenizer(value.toString(),",");
            while (itr.hasMoreTokens())
            {
                word.set(itr.nextToken());
                context.write(key, word);
            }
        }
    }
    public static class AllTranslationsReducer
    extends Reducer<Text,Text,Text,Text>
    {
        private Text result = new Text();
        public void reduce(Text key, Iterable<Text> values,
        Context context
        ) throws IOException, InterruptedException
        {
            String translations = "";
            for (Text val : values)
            {
                translations += "|"+val.toString();
            }
            result.set(translations);
            context.write(key, result);
        }
    }
    public static void main(String[] args) throws Exception
    {
        Configuration conf = new Configuration();
        Job job = new Job(conf, "dictionary");
        job.setJarByClass(testhdfs.class);
        job.setMapperClass(WordMapper.class);
        job.setReducerClass(AllTranslationsReducer.class);
        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(Text.class);
        job.setInputFormatClass(KeyValueTextInputFormat.class);
        FileInputFormat.addInputPath(job, new Path("/testext"));
        FileOutputFormat.setOutputPath(job, new Path("resulthdfs"));
        System.exit(job.waitForCompletion(true) ? 0 : 1);
    }
}

堆栈跟踪:

Exception in thread "main" java.lang.NoSuchMethodError: org.apache.hadoop.conf.Configuration.addDeprecation(Ljava/lang/String;[Ljava/lang/String;)V
    at org.apache.hadoop.mapreduce.util.ConfigUtil.addDeprecatedKeys(ConfigUtil.java:53)
    at org.apache.hadoop.mapreduce.util.ConfigUtil.loadResources(ConfigUtil.java:41)
    at org.apache.hadoop.mapreduce.Job.<clinit>(Job.java:108)
    at testhdfs.main(testhdfs.java:49)

1 个答案:

答案 0 :(得分:-1)

NoSuchMethodError异常几乎总是意味着您遇到了一些奇怪的dependency问题,并且错误地jar了某些内容或错过了jar