I am trying to understand kafka stream processor
a bit more. I want to know what is the frequency of polling
by a kafka stream processor for fetching the data from kafka.
As I understand kafka stream processor internally creates a kafka Consumer client which fetches the data from kafka (and it invokes poll()
).
So when first time poll()
is called, what is the next time it would be called again to fetch data from kafka? Does it happen many times per second ? How can I know how many times poll() has been called (for fetching data from kafka).
Any help in understanding this would be of great help.