Giraph: Class Not Found Exception in Custom Assignment

I am developing an algorithm using Giraph. I am working with version 1.0.0 on Hadoop 1.2.1 .

I'm new to Giraph development, so please be gentle;)

My own assignment is broken down into three packages:

  • io: contains the input and output classes
  • layout: contains a Vertex class, an aggregator class and a MasterCompute class.
  • run: contains the class that implements the tool.

I program it in Eclipse with the built-in jar-garraph-core as a reference and then export it in another jar called customJob.jar.

This is how I run it in Hadoop:

 hadoop jar /opt/hadoop/lib/customJob.jar layout.customrVertex -vif 
 io.JSONLongDoubleFloatDoubleToMapVertexInputFormat -vip /users/hadoop/input/tiny_graph.txt
 -of io.VertexIdAndPositionOutputFormat -op /users/hadoop/output/customJob -w 1 

      

The job starts, it goes into the MapReduce phase and then fails:

14/12/16 17:39:35 INFO job.GiraphJob: run: Since checkpointing is disabled (default), do not allow any task retries (setting mapred.map.max.attempts = 0, old value = 4)
14/12/16 17:39:37 INFO mapred.JobClient: Running job: job_201412161121_0025
14/12/16 17:39:38 INFO mapred.JobClient:  map 0% reduce 0%
14/12/16 17:39:49 INFO mapred.JobClient: Job complete: job_201412161121_0025
14/12/16 17:39:49 INFO mapred.JobClient: Counters: 4
14/12/16 17:39:49 INFO mapred.JobClient:   Job Counters 
14/12/16 17:39:49 INFO mapred.JobClient:     SLOTS_MILLIS_MAPS=9487
14/12/16 17:39:49 INFO mapred.JobClient:     Total time spent by all reduces waiting after reserving slots (ms)=0
14/12/16 17:39:49 INFO mapred.JobClient:     Total time spent by all maps waiting after reserving slots (ms)=0
14/12/16 17:39:49 INFO mapred.JobClient:     SLOTS_MILLIS_REDUCES=0

      

Further investigation of JobTracker showed that JobSetup failed with ClassNotFoundException:

java.lang.RuntimeException: java.lang.RuntimeException: java.lang.ClassNotFoundException: layout.customVertex
at org.apache.hadoop.conf.Configuration.getClass(Configuration.java:889)
at org.apache.giraph.conf.ClassConfOption.get(ClassConfOption.java:94)
at org.apache.giraph.conf.GiraphClasses.readFromConf(GiraphClasses.java:152)
at org.apache.giraph.conf.GiraphClasses.<init>(GiraphClasses.java:142)
at org.apache.giraph.conf.ImmutableClassesGiraphConfiguration.<init>(ImmutableClassesGiraphConfiguration.java:93)
at org.apache.giraph.bsp.BspOutputFormat.getOutputCommitter(BspOutputFormat.java:56)
at org.apache.hadoop.mapred.Task.initialize(Task.java:515)
at org.apache.hadoop.mapred.MapTask.run(MapTask.java:347)
at org.apache.hadoop.mapred.Child$4.run(Child.java:255)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAs(Subject.java:415)
at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1190)
at org.apache.hadoop.mapred.Child.main(Child.java:249)
Caused by: java.lang.RuntimeException: java.lang.ClassNotFoundException: layout.customVertex
at org.apache.hadoop.conf.Configuration.getClass(Configuration.java:857)
at org.apache.hadoop.conf.Configuration.getClass(Configuration.java:881)
... 12 more
Caused by: java.lang.ClassNotFoundException: layout.customVertex
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 sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:274)
at org.apache.hadoop.conf.Configuration.getClassByName(Configuration.java:810)
at org.apache.hadoop.conf.Configuration.getClass(Configuration.java:855)
... 13 more

      

The Hadoop configuration is the one suggested on the Giraph quick start page.

I will be grateful for any help / suggestion you could give :)

Thanks in advance!

+3


source to share


1 answer


first change hasoop-env.sh and add jar file (s) to hasoop_classpath. then add link to your jar file with -libjars (path-to-your-jar / jar_file.jar)



0


source







All Articles