You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@giraph.apache.org by Ahmet Emre Aladağ <em...@agmlab.com> on 2013/07/22 14:38:14 UTC

Multiple records for edges.

Hi,

While the reader reads from Hbase, it encounters vertices with the same id.

v1 - edges: v3,v5,v6
v2 - edges: ...
v1 - edges: v4, v7, v9
...

I want to get finally:
v1 - edges: v3,v4,v5,v6,v7,v9

but I get
v1 - edges: v3,v5,v6

since vertex.initialize(id, value, edges) will not update the existing 
vertex. How can I achieve this?