0
votes

Does flink provide a way to poll from an api periodically and create a datastream object out of it for further processing?

We currently push the messages to kafka and read through kafka. Is there any way to poll the api directly through flink?

1

1 Answers

0
votes

I'm not aware of such a source connector for Flink, but it would be relatively straightforward to implement one. There are examples out there that do just this but with a database query; one of those might serve as a template for getting started.