gradoop icon indicating copy to clipboard operation
gradoop copied to clipboard

Replace GradoopId with Either<GradoopId, NullValue> in VertexGroupItem

Open s1ck opened this issue 9 years ago • 2 comments

Summarization creates a VertexGroupItem in the first step which is further used in the algorithm implementations. This tuple type contains the vertex representative id, which is a GradoopId. When initializing the tuple, the representative id is not needed and can thus be empty. Currently, a new GradoopId is set, which needs 128 Bit per tuple and leads to more communication overhead. This can be replaced using the Either type.

s1ck avatar Dec 18 '15 07:12 s1ck

I'll have a look at this (I'm assuming you're currently not working on it)

p-f avatar Oct 17 '18 13:10 p-f

I tried it. Either is not serializable.

timo95 avatar Dec 12 '18 10:12 timo95