All of the documentation for Giraph on both the Githiub wiki and the the Apache site is out of date as it related to the 0.2 version. Currently I have tested the following benchmark examples from the core library:

PageRankBenchmark
ShortestPathsBenchmark
AggregatorsBenchmark
RandomMessageBenchmark
Help for these examples is provided via the -h option as shown below:

hadoop jar giraph-jar-with-dependencies.jar org.apache.giraph.benchmark.PageRankBenchmark -h usage: org.apache.giraph.benchmark.PageRankBenchmark [-e <arg>] [-h] [-s <arg>] [-v] [-V <arg>] [-w <arg>]
 -e,--edgesPerVertex <arg>      Edges per vertex
 -h,--help                      Help
 -s,--supersteps <arg>          Supersteps to execute before finishing
 -v,--verbose                   Verbose
 -V,--aggregateVertices <arg>   Aggregate vertices
 -w,--workers <arg>             Number of workers
Just substitute the class name of the example you want help for in the command above.

It is critical that the number of workers be NO MORE than one less than the available number of map slots on your cluster.

The following was used to execute the PageRankBenchmark example on my cluster:

hadoop jar giraph-jar-with-dependencies.jar org.apache.giraph.benchmark.PageRankBenchmark -Dmapred.child.java-opts="-Xmx64g -Xms64g XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit" -Dgiraph.zkList=10.1.94.104:2181 -e 1 -s 3 -v -V 50000 -w 83



 On 4/4/2013 12:23 PM, Jonathan Ellithorpe wrote:
Hi,

I am using version 0.2 of giraph and version 0.20.203 of hadoop. I would like to run the SimpleShortestPathsVertex example, and so I tried the command in the documentation (https://cwiki.apache.org/confluence/display/GIRAPH/Shortest+Paths+Example):

hadoop jar ~/giraph/giraph-examples/target/giraph-examples-0.2-SNAPSHOT-for-hadoop-0.20.203.0-jar-with-dependencies.jar org.apache.giraph.examples.SimpleShortestPathsVertex graph output 0 3

but I get:

Exception in thread "main" java.lang.NoSuchMethodException: org.apache.giraph.examples.SimpleShortestPathsVertex.main([Ljava.lang.String;)

Indicating that the class has no main method. The documentation (https://cwiki.apache.org/confluence/display/GIRAPH/Shortest+Paths+Example) in fact states that this is the expected behavior in giraph 0.2 because it must be run with ToolRunner, but I don't see any instructions for executing SimpleShortestPathsVertex using ToolRunner.

This is the first time that I am running hadoop and giraph, so I am probably missing something here, and any help would be greatly appreciated.

Best,
Jonathan

Reply via email to