I am using zookeeper to get data from kafka. And here I always get data from last offset point. Is there any way to specify the time of offset to get old data?
There is one option autooffset.reset. It accepts smallest or largest. Can someone please explain what is smallest and largest. Can autooffset.reset helps in getting data from old offset point instead of latest offset point?
Using the KafkaConsumer you can use Seek, SeekToBeginning and SeekToEnd to move around in the stream.
https://kafka.apache.org/0100/javadoc/org/apache/kafka/clients/consumer/KafkaConsumer.html#seekToBeginning(java.util.Collection)
Also, If no partition is provided, it will seek to the first offset for all of the currently assigned partitions.
Kafka Protocol Doc is a great source to play with request/response/Offsets/Messages: https://cwiki.apache.org/confluence/display/KAFKA/A+Guide+To+The+Kafka+Protocol you use Simple Consumer example as where following code demonstrate the state:
set readOffset to start initial offset from. but you need to check the max offset as well as above will provide limited offsets count as per FetchSize in last param of addFetch method.
The consumers belong always to a group and, for each partition, the Zookeeper keeps track of the progress of that consumer group in the partition.
To fetch from the beginning, you can delete all the data associated with progress as Hussain refered
You can also specify the offset of partition you want, as specified in core/src/main/scala/kafka/tools/UpdateOffsetsInZK.scala
However the offset is not time indexed, but you know for each partition is a sequence.
If your message contains a timestamp (and beware that this timestamp has nothing to do with the moment Kafka received your message), you can try to do an indexer that attempts to retrieve one entry in steps by incrementing the offset by N, and store the tuple (topic X, part 2, offset 100, timestamp) somewhere.
When you want to retrieve entries from a specified moment in time, you can apply a binary search to your rough index until you find the entry you want and fetch from there.
have you tried this?
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning
It would print out all the messages for the given topic, "test" in this example.
More details from this link https://kafka.apache.org/quickstart
From the Kafka documentation they say "kafka.api.OffsetRequest.EarliestTime() finds the beginning of the data in the logs and starts streaming from there, kafka.api.OffsetRequest.LatestTime() will only stream new messages. Don’t assume that offset 0 is the beginning offset, since messages age out of the log over time. "
Use the SimpleConsumerExample here: https://cwiki.apache.org/confluence/display/KAFKA/0.8.0+SimpleConsumer+Example
Similar question: Kafka High Level Consumer Fetch All Messages From Topic Using Java API (Equivalent to --from-beginning)
This might help
For Now
Kafka FAQ give an answer to this problem.
Future Plan
Kafka will add timestamp to message format. Refer to
https://cwiki.apache.org/confluence/display/KAFKA/Kafka+Enriched+Message+Metadata