我正在运行单节点hadoop,在尝试运行mapreduce应用程序后,我遇到了这个异常:
Exception in thread "main" java.lang.ClassNotFoundException: src.main.java.com.hadoop.bi.MapReduce.MaxTemperature
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:270)
at org.apache.hadoop.util.RunJar.main(RunJar.java:201)
我在终端上跑的是:
[root@dev MapReduce]# hadoop jar target/MapReduce-0.0.1-SNAPSHOT.jar src/main/java/com/hadoop/bi/MapReduce/MaxTemperature sample.txt /out
这是我的MaxTempreture课程内容:
package com.hadoop.bi.MapReduce;
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.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
public class MaxTemperature {
public static void main(String[] args) throws Exception {
if (args.length != 2) {
System.err.println("Usage: MaxTemperature <input path> <output path>");
System.exit(-1);
}
Configuration conf = new Configuration();
Job job = new Job(conf, "MaxTemperature");
job.setJarByClass(MaxTemperature.class);
FileInputFormat.addInputPath(job, new Path(args[0]));
FileOutputFormat.setOutputPath(job, new Path(args[1]));
job.setMapperClass(MaxTemperatureMapper.class);
job.setReducerClass(MaxTemperatureReducer.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(IntWritable.class);
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
}
我已经在互联网上跟踪了大部分类似的问题,但我还没有找到解决方案。任何人都知道问题是什么以及如何解决?
答案 0 :(得分:4)
执行上述类的命令行不正确。您正在提供包含文件夹的路径。相反,你应该给出完全合格的班级名称
[root @ dev MapReduce] #hadoop jar target / MapReduce-0.0.1-SNAPSHOT.jar src / main / java / com / hadoop / bi / MapReduce / MaxTemperature sample.txt / out
应改为
[root @ dev MapReduce] #hadoop jar target / MapReduce-0.0.1-SNAPSHOT.jar com / hadoop / bi / MapReduce / MaxTemperature sample.txt / out
根据你的包装heirarchy。
希望这有帮助。
答案 1 :(得分:0)
尝试删除throws Exception
声明。
您不需要在main函数中声明throw语句,因为它是调用堆栈上的入口点和最后一个方法。它不需要向任何人报告。
我对JVM知之甚少,但我猜它正试图寻找特定的 主 签名,并添加throws Exception
使JVM无法识别主方法。
答案 2 :(得分:0)
我认为语法应该像
hadoop jar target/MapReduce-0.0.1-SNAPSHOT.jar com.hadoop.bi.MapReduce.MaxTemperature sample.txt /out