You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just reads from the end (which contains nothing). For comparison, the official client
kafka-console-consumer.sh --bootstrap-server localhost:9092 --from-beginning --topic test --group jav-$RANDOM
does enumerate through all the messages in the topic. I originally discovered this when trying to consume using librdkafka and wondered for an example on how to set the offset in the KafkaClient mode. But it turns out, KafkaCat does not apply any offsets in this mode and for some reason (even despite auto.offset.reset=earliest) it seems to default to latest.
The text was updated successfully, but these errors were encountered:
Reading from an existing and populated topic in
-G
(KafkaClient
) mode does not allow setting the offset:Just reads from the end (which contains nothing). For comparison, the official client
does enumerate through all the messages in the topic. I originally discovered this when trying to consume using
librdkafka
and wondered for an example on how to set the offset in theKafkaClient
mode. But it turns out, KafkaCat does not apply any offsets in this mode and for some reason (even despiteauto.offset.reset=earliest
) it seems to default tolatest
.The text was updated successfully, but these errors were encountered: