Re: Heterogeneous Vertex Types

2012-07-25 Thread Jonathan Bishop
Nick, You may want to reconsider your approach as I don't think Giraph will be happy with this. How about using a new vertex value class with BasicVertex which can do both behaviours for you? Same for edge and message classes. This should be enough do what you want. Jon On Wed, Jul 25, 2012 at

Heterogeneous Vertex Types

2012-07-25 Thread Nick West
Hi, I'm working on implementing a belief propagation algorithm over Giraph. (Do you know if anyone has done this before?) This requires having (at least) two different types of vertices implemented (values and factors) and different types of messages sent between different vertices. I've bee