Re: Compiling Giraph 1.1

2014-12-08 Thread Ryan
Any thoughts? Still not able to install unfortunately. Ryan On Sun, Nov 30, 2014 at 9:00 PM, Ryan freelanceflashga...@gmail.com wrote: I believe I was. I was building directly from a new clone of the github repository. It turns out I should be installing YARN instead of the Hadoop_2 profile

Re: Compiling Giraph 1.1

2014-11-30 Thread Ryan
. Are you sure you're building latest trunk? On Fri, Nov 7, 2014 at 3:21 PM, Ryan freelanceflashga...@gmail.com wrote: Any updated thoughts on this? On Tue, Nov 4, 2014 at 5:59 PM, Ryan freelanceflashga...@gmail.com wrote: It's 'mvn -Phadoop_2 -fae -DskipTests clean install' Thanks, Ryan

Compiling Giraph 1.1

2014-11-04 Thread Ryan
I'm attempting to build, compile and install Giraph 1.1 on a server running CDH5.1.2. A few weeks ago I successfully compiled it by changing the hadoop_2 profile version to be 2.3.0-cdh5.1.2. I recently did a fresh install and was unable to build, compile and install (perhaps due to the latest

Re: Compiling Giraph 1.1

2014-11-04 Thread Ryan
It's 'mvn -Phadoop_2 -fae -DskipTests clean install' Thanks, Ryan On Tue, Nov 4, 2014 at 2:02 PM, Roman Shaposhnik ro...@shaposhnik.org wrote: What's the exact compilation incantation you use? Thanks, Roman. On Tue, Nov 4, 2014 at 9:56 AM, Ryan freelanceflashga...@gmail.com wrote: I'm

Re: Spark 1.0: slf4j version conflicts with pig

2014-05-27 Thread Ryan Compton
Sorry everyone, I emailed the wrong list. On Tue, May 27, 2014 at 2:38 PM, Ryan Compton compton.r...@gmail.com wrote: I use both Pig and Spark. All my code is built with Maven into a giant *-jar-with-dependencies.jar. I recently upgraded to Spark 1.0 and now all my pig scripts fail

Re: Where can I find a simple Hello World example for Giraph

2013-02-21 Thread Ryan Compton
); return job.run(true) ? 0 : -1; } public static void main(String[] args) throws Exception { System.exit(ToolRunner.run(new HelloGiraph0p2(), args)); } } On Thu, Feb 21, 2013 at 2:58 PM, Maja Kabiljo majakabi...@fb.com wrote: Hi Ryan, Before running the job, you need to set Vertex and input

Re: Where can I find a simple Hello World example for Giraph

2013-02-21 Thread Ryan Compton
(ToolRunner.run(new HelloGiraph0p2(), args)); } } On Thu, Feb 21, 2013 at 4:10 PM, Ryan Compton compton.r...@gmail.com wrote: Ok, I've been looking at the PageRankBenchmark. There's a lot going on in there... It looks like the minimum amount of stuff I need to run a do-nothing job is what I've

Re: Where can I find a simple Hello World example for Giraph

2013-02-04 Thread Ryan Compton
PM, Gustavo Enrique Salazar Torres gsala...@ime.usp.br wrote: Hi Ryan: It's the simplest thing: 1. Define your type of parameters for a type of Vertex (for example EdgeListVertex) 2. Implement compute method. From what I saw out there in the M/R world, Giraph provides the simplest way