You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flink 1.11 introduced new Source and Sink instead of the SourceFunction and SinkFunction interfaces. Currently Nussknacker easily supports only old interfaces via BasicFlinkSource and BasicFlinkSink. New Flink Source and Sink can be used only while preparing custom DataStream along with low-level stuff like watermarks, operator ids, etc. using Nussknacker FlinkSource and FlinkSink. In addition, some connectors have been already switched to new the API.
Flink 1.11 introduced new Source and Sink instead of the SourceFunction and SinkFunction interfaces. Currently Nussknacker easily supports only old interfaces via
BasicFlinkSource
andBasicFlinkSink
. New FlinkSource
andSink
can be used only while preparing customDataStream
along with low-level stuff like watermarks, operator ids, etc. using NussknackerFlinkSource
andFlinkSink
. In addition, some connectors have been already switched to new the API.More details how to implement a source using the new interface: https://nightlies.apache.org/flink/flink-docs-stable/docs/dev/datastream/sources/#data-source-concepts
The text was updated successfully, but these errors were encountered: