Is it possible to consume messages from Kafka based on a time period in which the messages were ingested?
Example: I want all messages ingested to a topic between 0900-1000 today (and now it's 1200).
If there is only a way to specify a start time, that's fine - my consumer can stop processing messages once it reaches the end time.
I can see methods for requesting messages from a given offset, and for getting the first available offset, and for the earliest available offset, but not all messages after a given time.