- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Read messages from kafka topic
- Labels:
-
Apache Kafka
Created ‎01-06-2017 01:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there CLI support to read last N messages from Kafka topic or to read message at a particular offset ?
The log file generated for the topic has unrecognizable characters .When I tried to tail last message from the file , it listed many messages.
Or is it possible to read messages sent to topic in the specified time range ?
The only work around I found is to grep UTF-8 characters into a file :
cat 00000000000000000000.log | strings -n 8 > kafka_topic.txt
Created ‎01-06-2017 08:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can read messages to the console from a particular offset using the Simple Consumer CLI:
https://cwiki.apache.org/confluence/display/KAFKA/System+Tools
Search for Simple Consumer.
Created ‎01-06-2017 08:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can read messages to the console from a particular offset using the Simple Consumer CLI:
https://cwiki.apache.org/confluence/display/KAFKA/System+Tools
Search for Simple Consumer.
