Reputation: 397
Java not able to find the class file when executed with -cp option as below
javac -cp ~/softwares/pig-0.12.0/pig-0.12.0.jar PR.java
Compilation is successful. However when I run the above generated class I am getting error
java -cp ~/softwares/pig-0.12.0/pig-0.12.0.jar PR
Error: Could not find or load main class PR
If I remove the -cp I am getting below error which is expected
java PR
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/pig/PigServer
at PR.runPigScript(PR.java:9)
at PR.main(PR.java:21)
Caused by: java.lang.ClassNotFoundException: org.apache.pig.PigServer
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:423)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
... 2 more
Could you please let me what might be reasons for failure is Step-2(Could not find or load main class) . Below is the code of PR.java
import org.apache.pig.ExecType;
import org.apache.pig.PigServer;
import org.apache.pig.backend.executionengine.ExecException;
public class PR {
public void runPigScript(){
try {
PigServer pigServer = new PigServer(ExecType.LOCAL);
pigServer.registerScript("RP.pig");
} catch (Exception ex) {
// TODO Auto-generated catch block
ex.printStackTrace();
}
}
public static void main(String[] args){
PR pr = new PR();
pr.runPigScript();
}
}
From https://wiki.apache.org/pig/EmbeddedPig
To run your program, you need to first compile it by using the following command:
javac -cp <path>pig.jar WordCount.java
If the compilation is successful, you can then run your program:
java -cp <path>pig.jar WordCount
Upvotes: 1
Views: 365
Reputation: 9474
Try to use:
java -cp ~/softwares/pig-0.12.0/pig-0.12.0.jar;. PR
The problem is that you need to load your compiled PR class as well. So your classpath needs to have both dependencies and your compiled output. Add current directory to the classpath.
Upvotes: 2