Modifying a benchmark to use real input

2013-05-23 Thread Matt Molek
Hi, I'm just getting started with Giraph, and struggling a bit to understand what exactly is needed to run a minimal Giraph computation on real data, rather than the PseudoRandomVertexInputFormat. Apologies if this is covered somewhere in the docs or mailing list archives. I looked but couldn't f

Re: How to use a custom vertex in 1.1.0 SNAPSHOT

2013-05-23 Thread Maja Kabiljo
Having instance variables inside of Vertex wasn't the right thing to do in 1.0 (from old Vertex javadoc "Giraph will store Vertex value and edges, hence all user data should be stored as part of the vertex value."). So if this data is a part of vertex state, you should put it in vertex value. F

How to use a custom vertex in 1.1.0 SNAPSHOT

2013-05-23 Thread Han JU
Hi, I changed to version 1.1.0 for the input filtering thing and I noticed the API changes due to GIRAPH-687. Actually this broke my code because, for some reason, I have some instance variables in the vertex class (some flags, lists) apart from the vertex value. When I adapt the code to use the c