RE: Can a vertex belong to more than one partition

2014-04-16 Thread Pavan Kumar A
hanks > Date: Wed, 16 Apr 2014 09:55:18 +0530 > Subject: Re: Can a vertex belong to more than one partition > From: trivedi.aksh...@gmail.com > To: user@giraph.apache.org > > Hi, > I am solving graph isomorhism between a large graph and query graph. > The large graph is

Re: Can a vertex belong to more than one partition

2014-04-15 Thread Akshay Trivedi
> >> Date: Mon, 7 Apr 2014 11:23:58 +0200 >> From: lukas.naleze...@firma.seznam.cz >> To: user@giraph.apache.org >> Subject: Re: Can a vertex belong to more than one partition > >> >> Hi, >> >> No, Vertex can belong only to one partition.

RE: Can a vertex belong to more than one partition

2014-04-07 Thread Pavan Kumar A
ukas.naleze...@firma.seznam.cz > To: user@giraph.apache.org > Subject: Re: Can a vertex belong to more than one partition > > Hi, > > No, Vertex can belong only to one partition. > Can you describe algorithm you are solving ? How many those vertexes > belonging to all partitions you

Re: Can a vertex belong to more than one partition

2014-04-07 Thread Lukas Nalezenec
Hi, No, Vertex can belong only to one partition. Can you describe algorithm you are solving ? How many those vertexes belonging to all partitions you have ? Why do you need so strict partitioning ? Regards Lukas On 6.4.2014 12:38, Akshay Trivedi wrote: In order to custom partition the graph

Can a vertex belong to more than one partition

2014-04-06 Thread Akshay Trivedi
In order to custom partition the graph, WorkerGraphPartitioner has to be implemented. It has a method getPartitionOwner(I vertexId) which returns PartitionOwner of the vertex. I want that some vertices belong to all paritions i.e all PartitionOwners. Can anyone help me with it? Thankyou