Skip to content

Tag: apache-flink

Non-parallel data source to ParallelDataSource in flink

I want to transform a non-parallel data source to a parallel data source in Apache Flink. In pseudocode, it would be something like this: I got it done by implementing a noop map function but I suppose there are more elegant ways. Thanks Answer You can use ParallelSourceFunction instead of SourceFunction as i…