I am having problems with the Flink Kinesis adapter. I have some native KCL code that works fine. I want to replace the .addSource with the CSV String data that is coming in from my KCL code. How can I do that?
// Consume the data streams from AWS Kinesis stream DataStream<Event> dataStream = env.addSource(new FlinkKinesisConsumer<>( pt.getRequired("stream"), new EventSchema(), kinesisConsumerConfig)) .name("Kinesis Stream Consumer"); Any help would be appreciated Thanks, Steve