복붙노트

[HADOOP] "찾거나 메인 클래스를로드 할 수 없습니다"때문에 jar 파일을 실행할 수 없습니다

HADOOP

"찾거나 메인 클래스를로드 할 수 없습니다"때문에 jar 파일을 실행할 수 없습니다

나는 3 개 폴더를 포함하는 테스트 디렉토리를 가지고 :

--META-INF:
  one file MANIFEST.MF in the dir:
  MANIFEST.MF:
      anifest-Version: 1.0
      Created-By: 1.7.0_04-ea (Oracle Corporation)
      Class-Path: lib/*; .
      Main-Class: Setup.WordCount
-- lib:
   all the external jars I need for the project
-- Setup:
   3 files in the dir:
   WordCount$IntSumReducer.clas
   WordCount$TokenizerMapper.class
   WordCount.class

나는 명령을 사용하여 jar 파일을 생성

jar cmf test.jar test/META-INF/MANIFEST.MF test/Setup test/lib

나는 test.jar를 실행하려고 할 때, 오류가보고 :

Error: Could not find or load main class Setup.WordCount

나는 하루 종일 프로브를 디버깅하기 위해 노력했습니다, 여전히 아이디어!

WordCount.java:

package Setup;

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.output.FileOutputFormat;
import org.apache.hadoop.util.GenericOptionsParser;

public class WordCount {

  public static class TokenizerMapper
       extends Mapper<Object, Text, Text, IntWritable>{

    private final static IntWritable one = new IntWritable(1);
    private Text word = new Text();

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

  public static class IntSumReducer
       extends Reducer<Text,IntWritable,Text,IntWritable> {
    private IntWritable result = new IntWritable();

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

  public static void main(String[] args) throws Exception {
    Configuration conf = new Configuration();
    String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
    if (otherArgs.length != 2) {
      System.err.println("Usage: wordcount <in> <out>");
      System.exit(2);
    }
    Job job = new Job(conf, "word count");
    job.setJarByClass(WordCount.class);
    job.setMapperClass(TokenizerMapper.class);
    job.setCombinerClass(IntSumReducer.class);
    job.setReducerClass(IntSumReducer.class);
    job.setOutputKeyClass(Text.class);
    job.setOutputValueClass(IntWritable.class);
    FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
    FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
    System.exit(job.waitForCompletion(true) ? 0 : 1);
  }
}

코드는 정확히 하둡은 / 예 / 단어 수, 나는 내 로컬 dev에 환경에 하둡 예를 구현하기 위해 노력하고있어 동일합니다.

해결법

  1. ==============================

    1.귀하의 항아리 문이 약간 꺼져 있습니다. 이 시도:

    귀하의 항아리 문이 약간 꺼져 있습니다. 이 시도:

    jar -cfm test.jar test/META-INF/MANIFEST.MF -C test Setup -C test lib
    

    귀하의 명령은 테스트 / 설정을두고 / 왜 자바를 찾을 수없는 설정 / WordCount.class 인 항아리에 WordCount.class,

    당신은 또한 당신이 게시 코드의 패키지 문을 누락 :

    package Setup;
    
  2. ==============================

    2.코드 패키지를 지정 - 그리고보다가 시작 명령에서 사용 / 예컨대 :

    코드 패키지를 지정 - 그리고보다가 시작 명령에서 사용 / 예컨대 :

    hadoop jar mywordcount.jar hadoop.mytest.WordCount input22/input /home/training/output
    

    어디 hadoop.mytest.WordCount - 패키지가

  3. from https://stackoverflow.com/questions/18971916/cannot-run-jar-file-because-of-could-not-find-or-load-main-class by cc-by-sa and MIT license