简体   繁体   English

Wordcount程序中的NoClassDefFoundError

[英]NoClassDefFoundError in wordcount program

I'm running hadoop wordcount program. 我正在运行hadoop wordcount程序。 But it is giving me error like "NoClassDefFoundError" 但这给了我类似“ NoClassDefFoundError”的错误

command for running : 运行命令:

 hadoop -jar /home/user/Pradeep/sample.jar hdp_java.WordCount /user/hduser/ana.txt /user/hduser/prout
  Exception in thread "main" java.lang.NoClassDefFoundError: WordCount
   Caused by: java.lang.ClassNotFoundException: WordCount
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    Could not find the main class: WordCount. Program will exit.

i've created the program in eclipse and then exported as jar file 我已经在eclipse中创建了程序,然后将其导出为jar文件

Eclipse code : Eclipse代码:

package hdp_java;

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.LongWritable;
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.TextInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.TextOutputFormat;

public class WordCount {

public static class Map extends Mapper<LongWritable, Text, Text, IntWritable> {
   private final static IntWritable one = new IntWritable(1);
  private Text word = new Text();

public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException {
    String line = value.toString();
    StringTokenizer tokenizer = new StringTokenizer(line);
    while (tokenizer.hasMoreTokens()) {
        word.set(tokenizer.nextToken());
        context.write(word, one);
    }
}
 }

  public static class Reduce extends Reducer<Text, IntWritable, Text, IntWritable> {

public void reduce(Text key, Iterable<IntWritable> values, Context context) 
  throws IOException, InterruptedException {
    int sum = 0;
    for (IntWritable val : values) {
        sum += val.get();
    }
    context.write(key, new IntWritable(sum));
}
  }

    public static void main(String[] args) throws Exception {
       Configuration conf = new Configuration();

    Job job = new Job(conf, "wordcount");

job.setOutputKeyClass(Text.class);
job.setOutputValueClass(IntWritable.class);

job.setMapperClass(Map.class);
job.setReducerClass(Reduce.class);

job.setInputFormatClass(TextInputFormat.class);
job.setOutputFormatClass(TextOutputFormat.class);

FileInputFormat.addInputPath(job, new Path(args[0]));
FileOutputFormat.setOutputPath(job, new Path(args[1]));

job.waitForCompletion(true);
}

}

Can anyone tell me where am i wrong? 谁能告诉我我哪里错了?

You need to tell the hadoop job which jar to use like so: 您需要像这样告诉hadoop作业使用哪个jar:

job.setJarByClass(WordCount.class);

Also be sure to add any dependencies to both the HADOOP_CLASSPATH and -libjars upon submitting a job like in the following examples: 还要确保在提交作业时将所有依赖项添加到HADOOP_CLASSPATH-libjars ,如以下示例所示:

Use the following to add all the jar dependencies from (for example) current and lib directories: 使用以下命令从(例如)当前目录和lib目录添加所有jar依赖项:

export HADOOP_CLASSPATH=$HADOOP_CLASSPATH:`echo *.jar`:`echo lib/*.jar | sed 's/ /:/g'`

Bear in mind that when starting a job through hadoop jar you'll need to also pass it the jars of any dependencies through use of -libjars . 请记住,通过hadoop jar开始作业时,还需要通过使用-libjars来传递任何依赖项的-libjars I like to use: 我喜欢使用:

hadoop jar <jar> <class> -libjars `echo ./lib/*.jar | sed 's/ /,/g'` [args...]

NOTE: The sed commands require a different delimiter character; 注意: sed命令需要使用不同的定界符; the HADOOP_CLASSPATH is : separated and the -libjars need to be , separated. HADOOP_CLASSPATH:分离, -libjars,分离。

Add this line in your code : 在您的代码中添加以下行:

job.setJarByClass(WordCount.class);

If it still doesn't work export this job as a jar and add it to itself as an external jar and see if it works. 如果仍然无法正常工作,则将该作业导出为jar,然后将其添加为外部jar,以查看其是否有效。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM