Re: addEdgeRequest() - Already has missing vertex on this worker for X

2013-12-31 Thread Pushparaj Motamari
By the time vertex.compute() on vertex A did adding A- and A-C other worker incharge of vertex B also could have executed vertex.compute on B leading to formation of B-C. Now if you try to add B-C from A, it might be giving error. On Tue, Dec 31, 2013 at 3:37 AM, Larry Compton

Re: Run time error

2013-12-30 Thread Pushparaj Motamari
Check for error in program during runtime..check the logs On Mon, Dec 30, 2013 at 10:46 PM, Jyoti Yadav rao.jyoti26ya...@gmail.comwrote: Hi folks.. I am trying to execute a graph algorithm on relatively large graph.. I installed hadoop on single system and trying to execute algorithm on

Extending AbstractComputation

2013-12-23 Thread Pushparaj Motamari
Hi, The class we write extending AbstractComputation, is instantiated one per worker? Thanks Pushparaj

RandomVertexId

2013-12-16 Thread Pushparaj Motamari
Hi, In a compute method I would like to send message to a random vertex, how could I able to get random vertexid? Thanks Pushparaj

Re: RandomVertexId

2013-12-16 Thread Pushparaj Motamari
. On Mon, Dec 16, 2013 at 7:41 AM, Pushparaj Motamari pushpara...@gmail.com wrote: Hi, In a compute method I would like to send message to a random vertex, how could I able to get random vertexid? Thanks Pushparaj

minLocalEdgesRatio is PseudoRandomLocalEdgesHelper

2013-12-15 Thread Pushparaj Motamari
Hi, Could anyone explain what is the siginificance of minLocalEdgesRatio field in PseudoRandomInputFormat , way of generating the graph Thanks Pushparaj

Re: minLocalEdgesRatio is PseudoRandomLocalEdgesHelper

2013-12-15 Thread Pushparaj Motamari
Thank you On Mon, Dec 16, 2013 at 2:12 AM, Claudio Martella claudio.marte...@gmail.com wrote: it's the ratio of edges that connect two vertices stored in the same worker. On Sun, Dec 15, 2013 at 8:17 PM, Pushparaj Motamari pushpara...@gmail.com wrote: Hi, Could anyone explain what