Re: Using Giraph

2014-03-03 Thread Arko Provo Mukherjee
Thanks! Let me follow the steps as given in the link. Also, does this mean that Giraph doesn't come in compiled form that can be directly downloaded and must be compiled in the local system before use? Warm regards Arko On Sun, Mar 2, 2014 at 11:08 PM, Agrta Rawat wrote: > Hi Arko, > You first

Re: Different num supersteps

2014-03-03 Thread Martin Neumann
Hi, I managed to fix it even if I'm still not entirely sure what happened. The fix is to make a new Text object every time a Text is required as input (Text does not implement Cloneable). I guess it So instead of: Text candidate = e.getTargetVertexId(); ... vertex.setValue(candidate)) The

Re: Different num supersteps

2014-03-03 Thread Sebastian Schelter
Hi Martin, I'm not sure wether we require InputFormats to be threadsafe. Can someone answer that question? Maybe thats the reason you see this behavior. --sebastian On 03/03/2014 10:05 AM, Martin Neumann wrote: I checked the input just creating the graph and comparing it. While I cant say

Re: Different num supersteps

2014-03-03 Thread Martin Neumann
I checked the input just creating the graph and comparing it. While I cant say the graph is correct (its to big) its at least consistent. So the only things where the different output can come from is the connected component part (see code further down). I'm completely stomped, the code is basical