Top "Kafka-consumer-api" questions

Use for questions related to the Apache Kafka consumer API

Kafka Consumer - Poll behaviour

I'm facing some serious problems trying to implement a solution for my needs, regarding KafkaConsumer (>=0.9). Let's imagine I have …

apache-kafka kafka-consumer-api
Kafka consumer offsets out of range with no configured reset policy for partitions

I'm receiving exception when start Kafka consumer. org.apache.kafka.clients.consumer.OffsetOutOfRangeException: Offsets out of range with no configured …

java apache-kafka kafka-consumer-api
Kafka Consumer Marking the coordinator 2147483647 dead

I am using Kafka Server 0.9 with consumer kafka-client version 0.9 and kafka-producer 0.8.2. Every thing is working great except i am getting …

apache-kafka kafka-consumer-api
Kafka Consumer get key value pair

I'm currently working with Kafka and Flink, I have kafka running in my local PC and I created a topic …

apache-kafka kafka-consumer-api
Delete message after consuming it in KAFKA

I am using apache kafka to produce and consume a file 5GB in size. I want to know if there …

apache-kafka kafka-consumer-api
How to get latest offset for a partition for a kafka topic?

I am using the Python high level consumer for Kafka and want to know the latest offsets for each partition …

python apache-kafka kafka-consumer-api kafka-python
Not clear about the meaning of auto.offset.reset and enable.auto.commit in Kafka

I am new to Kafka,and I don't really understand the meaning of Kafka configuration, can anyone explain more understandable …

apache-kafka kafka-consumer-api
Error creating Kafka topic :- replication factor larger than available brokers

I am trying to create a kafka topic via AdminCommand using below code Source ZkClient zkClient = new ZkClient(kafkaHost, 10000, 10000, ZKStringSerializer$.…

java scala apache-kafka kafka-consumer-api
What is the difference between kafka earliest and latest offset values

producer sends messages 1, 2, 3, 4 consumer receives messages 1, 2, 3, 4 consumer crashes/disconnects producer sends messages 5, 6, 7 consumer comes back up and should receive messages …

apache-kafka kafka-consumer-api
Kafka Consumer default Group Id

I'm working with Apache Kafka and its Java client and I see that messages are load balanced across different Kafka …

apache-kafka kafka-consumer-api