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

2013-02-01 Thread Eli Reisman
Your best bet is to look over the two code components that users most often have to tweak or implement to write application code. That is, the Vertex implementations in examples/ and benchmark/ and the IO formats and related goodies like RecordReaders etc. that are mostly in the io/ dir. You might

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

2013-02-01 Thread Gustavo Enrique Salazar Torres
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 to work with graphs. Take a look at https://cwiki.apache.org/confluence

Where can I find a simple "Hello World" example for Giraph

2013-02-01 Thread Ryan Compton
I am having trouble understand what all the classes do and the documentation looks like it might be out of date. I searched around and found this: https://github.com/edaboussi/Giraph but it won't compile with 0.2, any suggestions?