kafka-dev / kafka

A distributed publish/subscribe messaging service
http://sna-projects.com/kafka
Apache License 2.0
549 stars 300 forks source link

Confluent Kafka C# 1.3.0 - Local: Maximum application poll interval (max.poll.interval.ms) exceeded #67

Closed tech7857 closed 3 years ago

tech7857 commented 4 years ago

Hi

We are regularly receiving the below error in our Kafka consumer. We are unable to fix this.

Local: Maximum application poll interval (max.poll.interval.ms) exceeded

Can you please help us in resolving this. Consumer config

BootstrapServers = xxxx, GroupId = xxxxx, EnableAutoCommit = false, StatisticsIntervalMs = 5000, SessionTimeoutMs = 6000, MaxPollIntervalMs = 30000, AutoOffsetReset = AutoOffsetReset.Earliest, EnablePartitionEof = true

Code Snippet

using (var consumer = new ConsumerBuilder<Ignore, string>(KafkaConfig).SetErrorHandler(ErrorHandler) .Build()) { consumer.Subscribe(KafkaTopic);

tech7857 commented 3 years ago

Closing