Tagged Questions
0
votes
1answer
1k views
HADOOP :: java.lang.ClassNotFoundException: WordCount
I am using eclipse to export the jar file of a map-reduce program. When i am run the jar using command
hadoop jar hadoop-prog.jar WordCount /home/temp/input /home/temp/output
it always shows the ...
1
vote
1answer
334 views
Dynamically compiling and Running a Hadoop job from another Java File
I am trying to write a Java file that receives the source code of a MapReduce job, compiles it dynamically and runs the job on a Hadoop cluster. To reach this, I have written 3 methods called ...
0
votes
2answers
288 views
hadoop ClassNotFoundException when running start-all.sh
I tried to run ./hadoop start-all.sh
Unfortunately this error is thrown
Exception in thread "main" java.lang.NoClassDefFoundError: start/all/sh
Caused by: java.lang.ClassNotFoundException: ...
0
votes
1answer
978 views
How do I make sure RegexSerDe is available to my Hadoop nodes?
I'm trying to attack the problem of analyzing web logs with Hive, and I've seen plenty of examples out there, but I can't seem to find anyone with this specific issue.
Here's where I'm at: I've set ...
3
votes
1answer
489 views
Giraph Shortest Paths Example ClassNotFoundException
I am trying to run the shortest paths example from the giraph incubator (https://cwiki.apache.org/confluence/display/GIRAPH/Shortest+Paths+Example). However instead of executing the example from the ...
1
vote
0answers
157 views
ClassNotFoundException thrown by RecommenderJob (Apache Mahout on Hadoop)
I am using the org.apache.mahout.cf.taste.hadoop.pseudo.RecommenderJob.java file to run a pseudo distributed recommender. I am using it to run the GenericItemsRecommender class.
The command I am ...
3
votes
0answers
300 views
When package dependant libraries in the “lib” folder of the hadoop job jar, ClassNotFoundException encountered
I used to package the dependant libraries in the "lib" folder of the hadoop map-reduce job jar. That works fine. But this time it went wrong. Can some one give me some idea to fix the problem? The ...
2
votes
3answers
5k views
hadoop not running in the multinode cluster
I have a jar file "Tsp.jar" that I made myself. This same jar files executes well in single node cluster setup of hadoop. However when I run it on a cluster comprising 2 machines, a laptop and ...
4
votes
2answers
2k views
Jar works with standalone Hadoop, but not on the actual cluster (java.lang.ClassNotFoundException: org.jfree.data.xy.XYDataset)
I am trying to build my project using Eclipse on Windows and execute on a Linux cluster. The project depends on some external jars, which I enclosed using eclipse's "Export->Runnable JAR -> Package ...