I have a job developed in Flink 0.9 that is using the graph module (Gelly). The job is running successfully within the IDE (Eclipse) but after exporting it to a JAR using maven (mvn clean install) it fails to execute on the local flink instance with the following error
"The program's entry point class 'myclass' could not be loaded due to a linkage failure"
java.lang.NoClassDefFoundError: org/apache/flink/graph/GraphAlgorithm
Any idea why is this happening and how to solve it?
It looks like the code of
flink-gelly
did not end up in your jar file. The most obvious reason for this issue is the missing maven dependency in your project's pom file. But I assume the dependency is present, otherwise developing the job in the IDE would be impossible.Most likely, the jar file has been created by the
maven-jar-plugin
, which is not including dependencies. Try adding the following fragment to yourpom.xml
:Now, you can build the jar using
mvn clean package -Pbuild-jar
. The jar file will now be located in thetarget/
directory.You can manually check whether the jar (zip) file contains class files in
/org/apache/flink/graph/