I'm trying to use the simple consumer shell to read a particular message, but I get no results for any parition+offset in my topic... I run something like this: ``` [kafka_2.10-0.8.2.1] # bin/kafka-simple-consumer-shell.sh --broker-list broker-01:9092,broker-02:9092,broker-03:9092 --offset 1 --partition 1 --no-wait-at-logend --topic the-topic Terminating. Reached the end of partition (the-topic, 1) at offset 1 ``` >From Burrow, I know that partition 1's last offset is 129. So what could I be doing wrong?