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?



Reply via email to