create a continuous query using kafka and flink

241 views Asked by At

I'm new to the streaming community I'm trying to create a continuous query using kafka topics and flink but I haven't found any examples so I can get an idea of how to get started can you help me with some examples? thank you.

1

There are 1 answers

5
Chandan Kumar On

For your use case, I'm guessing you want to use kafka as source for continuous data. In this case you can use kafka-source-connector(linked below) and if you want to slice it with time you can use flink's Window Processing Function. This will group your kafka messages streamed in a particular timeframe like a list/map.

Flink Kafka source connector

Flink Window Processing Function