I am using Giraph 1.0.0 and hadoop-2.0.3-alpha now. Compilation works but when i run the SimpleShortestPathsVertex example, I am getting the error:
ERROR yarn.GiraphYarnClient: Giraph: org.apache.giraph.examples.SimpleShortestPathsVertex reports FAILED state, diagnostics show: Application application_1386306822242_0007 failed 1 times due to AM Container for appattempt_1386306822242_0007_000001 exited with exitCode: 1 due to: .Failing this attempt.. Failing the application. Any idea what is causing this? On Thu, Dec 5, 2013 at 5:58 PM, Rohit Bhat <[email protected]> wrote: > Can someone please confirm if giraph 1.0.0 works with hadoop-2.2.0? > > > On Thu, Dec 5, 2013 at 5:58 PM, Rohit Bhat <[email protected]>wrote: > >> I am using giraph 1.0.0 but with yarn (hadoop 2.2.0) >> >> >> On Thu, Dec 5, 2013 at 5:49 PM, Yong Guo <[email protected]> wrote: >> >>> Hi, >>> >>> I think it might be the Giraph version problem. When I tried to build >>> giraph*1.0.0* on hadoop2.0.3-alpha, I can compile successfully by "*mvn >>> -Phadoop_yarn -Dhadoop.version=2.0.3-alpha clean package -DskipTests*". >>> >>> The command failed when I used giraph*1.1.0*. >>> >>> Thanks, >>> Yong >>> >>> >>> >>> 2013/12/6 Yong Guo <[email protected]> >>> >>>> Hi, >>>> >>>> I also got this error when tried to build Giraph on top of hadoop-2.2.0 >>>> using similar commands. Can anyone help? >>>> >>>> Thanks, >>>> Yong >>>> >>>> >>>> 2013/12/6 Rohit Bhat <[email protected]> >>>> >>>>> I already have yarn (hadoop_2.2.0) on my machine. I tried the >>>>> following 2 commands and got similar errors in both the cases: >>>>> >>>>> 1. "mvn -Phadoop_yarn -Dhadoop.version=2.2.0 -X clean package - >>>>> DskipTests" >>>>> >>>>> 2. "mvn -P2.2.0 -DskipTests -Dmaven.javadoc.skip=true clean install >>>>> package" >>>>> >>>>> >>>>> [INFO] Checking dependency versions >>>>> >>>>> [ERROR] Found a problem with the direct dependency >>>>> commons-httpclient:commons-httpclient of the current project >>>>> >>>>> Expected version is 3.0.1 >>>>> >>>>> Resolved version is 3.0.1 >>>>> >>>>> Version 3.1 was expected by artifact: org.apache. >>>>> hadoop:hadoop-common >>>>> >>>>> [ERROR] Found a problem with the dependency commons-lang:commons-lang >>>>> >>>>> Resolved version is 2.4 >>>>> >>>>> Version 2.4 was expected by artifact: >>>>> commons-configuration:commons-configuration >>>>> >>>>> Version 2.5 was expected by artifact: org.apache. >>>>> hadoop:hadoop-common >>>>> >>>>> [ERROR] Found a problem with the dependency >>>>> commons-logging:commons-logging >>>>> >>>>> Resolved version is 1.0.4 >>>>> >>>>> Version 1.1.1 was expected by artifact: org.apache. >>>>> hadoop:hadoop-common >>>>> >>>>> [ERROR] Found a problem with the dependency io.netty:netty >>>>> >>>>> Resolved version is 3.5.3.Final >>>>> >>>>> Version 3.6.2.Final was expected by artifacts: org.apache. >>>>> hadoop:hadoop-mapreduce-client-common, org.apache. >>>>> hadoop:hadoop-mapreduce-client-core >>>>> >>>>> [ERROR] Found a problem with the dependency org.apache. >>>>> zookeeper:zookeeper >>>>> >>>>> Resolved version is 3.3.3 >>>>> >>>>> Version 3.4.5 was expected by artifacts: org.apache. >>>>> hadoop:hadoop-common, org.apache.hadoop:hadoop-mapreduce-client-common >>>>> >>>>> >>>>> >>>>> Am i missing something? >>>>> >>>>> >>>>> On Mon, Dec 2, 2013 at 7:21 PM, Ameya Vilankar < >>>>> [email protected]> wrote: >>>>> >>>>>> Yes. Use this: >>>>>> >>>>>> mvn -Phadoop_cdh4.4.0 -DskipTests -Dmaven.javadoc.skip=true package >>>>>> >>>>>> >>>>>> On Mon, Dec 2, 2013 at 5:18 PM, Manuel Lagang <[email protected] >>>>>> > wrote: >>>>>> >>>>>>> I get the same error when I compile Giraph against the default >>>>>>> hadoop version (0.20.203.0), but my project that uses Giraph uses a >>>>>>> more recent hadoop version. Did you set the hadoop version via a maven >>>>>>> profile when compiling Giraph (e.g. mvn -Phadoop_1.0 compile for >>>>>>> hadoop 1.0)? >>>>>>> >>>>>>> Presumably, there's a way to compile Giraph for Yarn. There's even a >>>>>>> Yarn profile in the pom.xml. I personally haven't had success building >>>>>>> it >>>>>>> though. >>>>>>> >>>>>>> >>>>>>> On Mon, Dec 2, 2013 at 4:30 PM, Rohit Bhat <[email protected] >>>>>>> > wrote: >>>>>>> >>>>>>>> Hi, >>>>>>>> >>>>>>>> I am new to Giraph. I have installed Yarn (hadoop 2.2.0) and have >>>>>>>> installed Giraph on top of it. I have been trying to >>>>>>>> execute SimpleShortestPathsComputation example but i am getting the >>>>>>>> error: >>>>>>>> >>>>>>>> "java.lang.IllegalArgumentException: >>>>>>>> checkLocalJobRunnerConfiguration: When using LocalJobRunner, you >>>>>>>> cannot run >>>>>>>> in split master / worker mode since there is only 1 task at a time!" >>>>>>>> >>>>>>>> I fixed this by adding an entry in mapred-site.xml for >>>>>>>> mapreduce.jobtracker.address but now i am getting a different error: >>>>>>>> >>>>>>>> *Exception in thread "main" java.lang.IncompatibleClassChangeError: >>>>>>>> Found interface org.apache.hadoop.mapreduce.JobContext, but class was >>>>>>>> expected* >>>>>>>> at >>>>>>>> org.apache.giraph.bsp.BspOutputFormat.checkOutputSpecs(BspOutputFormat.java:43) >>>>>>>> at >>>>>>>> org.apache.hadoop.mapreduce.JobSubmitter.checkSpecs(JobSubmitter.java:456) >>>>>>>> at >>>>>>>> org.apache.hadoop.mapreduce.JobSubmitter.submitJobInternal(JobSubmitter.java:342) >>>>>>>> at org.apache.hadoop.mapreduce.Job$10.run(Job.java:1268) >>>>>>>> at org.apache.hadoop.mapreduce.Job$10.run(Job.java:1265) >>>>>>>> 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:1491) >>>>>>>> at org.apache.hadoop.mapreduce.Job.submit(Job.java:1265) >>>>>>>> at org.apache.giraph.job.GiraphJob.run(GiraphJob.java:250) >>>>>>>> at org.apache.giraph.GiraphRunner.run(GiraphRunner.java:94) >>>>>>>> at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:70) >>>>>>>> at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:84) >>>>>>>> at org.apache.giraph.GiraphRunner.main(GiraphRunner.java:124) >>>>>>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) >>>>>>>> at >>>>>>>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) >>>>>>>> at >>>>>>>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) >>>>>>>> at java.lang.reflect.Method.invoke(Method.java:606) >>>>>>>> at org.apache.hadoop.util.RunJar.main(RunJar.java:212) >>>>>>>> >>>>>>>> *Is Giraph compatible with yarn? If yes, am i missing anything?* >>>>>>>> >>>>>>>> Thanks, >>>>>>>> Rohit >>>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>> >>>> >>> >> >
