This tutorial here shows the command to consume kafka topic in a terminal.
bin/kafka-console-consumer.sh --topic topic_name --from-beginning --bootstrap-server IP:port
What would be the syntax if I want to start streaming from a specific timestamp, and not --from-beginning
. And what format should the timestamp be in (i.e. long epoch or GMT yyyymmdd hhmmss, etc)