There are many old topics about rate limiting / throttling Kafka consumer
But none of them can be used in case 1.15:
KafkaFetcher
does not exposeemitRecord
- Now it resides inside the
KafkaRecordEmitter
- Now it resides inside the
FlinkKafkaConsumer
is deprecatedKafkaSource
is the preferred approach
KafkaSource
explicitly creates aKafkaRecordEmitter
inside it'screateReader
So, my question is that is there anyway to combine ThrottledIterator
with KafkaSource
?