Re: DataSet Conversion

2015-07-13 Thread Aljoscha Krettek
Hi Lydia, it might work using new DataSet(javaSet) where DataSet is org.apache.flink.api.scala.DataSet. I'm not sure, however. What is your use case for this? Cheers, Aljoscha On Mon, 13 Jul 2015 at 15:55 Lydia Ickler wrote: > Hi guys, > > is it possible to convert a Java DataSet to a Scala Data

Re: DataSet Conversion

2015-07-13 Thread Stephan Ewen
Hi! I think you can simply do "new org.apache.flink.api.scala. DataSet[T](javaSet)" Greetings, Stephan On Mon, Jul 13, 2015 at 3:55 PM, Lydia Ickler wrote: > Hi guys, > > is it possible to convert a Java DataSet to a Scala Dataset? > Right now I get the following error: > Error:(102, 29) java:

DataSet Conversion

2015-07-13 Thread Lydia Ickler
Hi guys, is it possible to convert a Java DataSet to a Scala Dataset? Right now I get the following error: Error:(102, 29) java: incompatible types: 'org.apache.flink.api.java.DataSet cannot be converted to org.apache.flink.api.scala.DataSet‘ Thanks in advance, Lydia