vasia / gelly-streaming

An experimental Graph Streaming API for Apache Flink
Apache License 2.0
140 stars 44 forks source link

Create a GraphStream class #1

Closed balidani closed 9 years ago

balidani commented 9 years ago

This class should support multiple ways to stream graph data:

vasia commented 9 years ago

One thing we'll have decide here is whether GraphStream will internally be represented as a DataStream of Edges and a DataStream of Vertices or something else. I would say let's go for this solution initially and try to figure out how to create these streams in the cases mentioned above, i.e. random edge streams, incidence streams and mutation events.

balidani commented 9 years ago

I think we've settled for random edge streams with duplicates for now.