Hello, When upgrading from 1.14 to 1.15 we bumped into a type issue when attempting to sink to Cassandra (scala 2.12.13). This was working nicely in 1.14. Any tip is highly appreciated.
Using a MapFunction() to generate the stream of tuples: CassandraSink .addSink( mystream.map(new ToTupleMapper) )... Exception: No support for the type of the given DataStream: GenericType<scala.Tuple2> Or with a lambda function: CassandraSink .addSink( mystream.map((v: MyCaseClass => (v.key v.someLongValue)) )... Caused by: org.apache.flink.api.common.functions.InvalidTypesException: The generic type parameters of 'Tuple2' are missing. In many cases lambda methods don't provide enough information for automatic type extraction when Java generics are involved. An easy workaround is to use an (anonymous) class instead that implements the 'org.apache.flink.api.common.functions.MapFunction' interface. Otherwise the type has to be specified explicitly using type information.