Questions tagged [gelly]

Gelly is the graph processing library for the Apache Flink distributed streaming engine.

Gelly is a Graph API for Flink. It contains a set of methods and utilities which aim to simplify the development of graph analysis applications in Flink. In Gelly, graphs can be transformed and modified using high-level functions similar to the ones provided by the batch processing API. Gelly provides methods to create, transform and modify graphs, as well as a library of graph algorithms.

Learn more about Gelly here.

20 questions
0
votes
1 answer

use collect() and env.execute() in one flink job

I'm trying to write a computation in Flink which requires two phases. In the first phase, I create a Graph and get its vertex ids: List ids = graph.getVertexIds().collect(); In the second phase, I'd like to use these ids to run…
0
votes
1 answer

type mismatch flink graph community

I am trying to execute a very simple code for community detection but it returns an error: import org.apache.flink.graph.library.CommunityDetection import org.apache.flink.graph._ import org.apache.flink.graph.scala.Graph import…
Dzmitry Haikov
  • 199
  • 1
  • 2
  • 6
0
votes
1 answer

Flink Gelly Path/Trail Usecase

our team is new to Gelly api. We are looking to implement a simple use case that will list all paths originating from an initial vertice - for e.g. input edge csv file is 1,2\n2,3\n3,4\n1,5\n5,6 the required output will be (the full path that starts…
-1
votes
1 answer

flink - An error occurred creating the temp table

Team, I am getting the below error in flink. org.apache.flink.client.program.ProgramInvocationException: The program execution failed: Job execution failed. at org.apache.flink.client.program.ClusterClient.run(ClusterClient.java:413) …
Sajeev
  • 17
  • 3
-5
votes
1 answer

Can Gelly Library be used for graph queries in Flink similar to Graph Frame in Spark

Can Flink graph library Gelly do graph partitioning, graph pattern matching, joins, etc ..
Amr Azzam
  • 81
  • 1
  • 1
  • 10
1
2