Re: Simple GraphX example.

2016-04-27 Thread Trevor Grant
Ahh pro-tip. Thanks Aljoscha! Final solution in case any should stumble across this in the future: You have to load the flink-gelly-scala jar AND the flink-gelly jar (to get access to the Edge/Vertex). import org.apache.flink.api.scala._ import org.apache.flink.graph.scala._ import org.apache.

Re: Simple GraphX example.

2016-04-27 Thread Aljoscha Krettek
Hi, I think you need to import the stuff from org.apache.flink.graph.scala.* instead of org.apache.flink.graph.*. Cheers, Aljoscha On Wed, 27 Apr 2016 at 16:07 Trevor Grant wrote: > Hi, I'm running Flink 1.0.2 from the Zeppelin/shell- trying to experiment > with some graph stuff. > > Zeppelin h

Simple GraphX example.

2016-04-27 Thread Trevor Grant
Hi, I'm running Flink 1.0.2 from the Zeppelin/shell- trying to experiment with some graph stuff. Zeppelin has been known to add degrees of crazy to trouble shooting- but I intuitively feel like this is something I'm doing wrong on the Flink Side. The simplest example is not working for me. impor