Re: Building Giraph Jar for CDH 4.5

2014-04-20 Thread Agrta Rawat
Thanks Eli. I have done it. Regards, Agrta Rawat On Sat, Apr 19, 2014 at 11:51 PM, Eli Reisman wrote: > You'll have to use the right maven profile when compiling Giraph, see the > POM file for profile options you can choose. > > > On Mon, Mar 31, 2014 at 5:34 AM, Agrta Rawat wrote: > >> Hi Pasc

Re: finding vertex at certain distance

2014-04-20 Thread nishant gandhi
https://github.com/nishantgandhi99/giraph/blob/master/Giraph/src/Success/VL.java use this code. Nishant Gandhi M.Tech. CSE IIT Patna On Mon, Apr 21, 2014 at 12:48 AM, Schweiger, Tom wrote: > That sounds like a breadth-first search. > > Start with all vertexes with a distance of MAX_INTEGER >

RE: finding vertex at certain distance

2014-04-20 Thread Schweiger, Tom
That sounds like a breadth-first search. Start with all vertexes with a distance of MAX_INTEGER >From the starting vertex, set its distance to zero and send one to all >neighbors. As vertexes get messages, if the message distance is less than the >current distance, set the current distance to t

finding vertex at certain distance

2014-04-20 Thread yeshwanth kumar
hi i am trying to find out vertices which are at equal distance from a vertex. using giraph, can someone suggest a good way to do it. Thanks.