可能是什么原因,卡夫卡消费者承认,抛出InterruptedException?

时间:2018-03-20 13:53:44

标签: apache-kafka kafka-consumer-api spring-kafka

这是来自KafkaMessageListenerContainer的代码,在什么情况下它们是InterruptedException的可能性,可以被这个代码抛出,突然在我的应用程序日志中,这消耗了来自主题和进程的消息,然后确认消息,看到下面的错误消息

Interrupted while queuing ack for


@Override
            public void acknowledge() {
                try {
                    if (ListenerConsumer.this.autoCommit) {
                        throw new IllegalStateException("Manual acks are not allowed when auto commit is used");
                    }
                    ListenerConsumer.this.acks.put(this.record);
                }
                catch (InterruptedException e) {
                    Thread.currentThread().interrupt();
                    **throw new KafkaException("Interrupted while queuing ack for " + this.record, e);**
                }
                if (this.immediate) {
                    ListenerConsumer.this.consumer.wakeup();
                }
            }

1 个答案:

答案 0 :(得分:0)

你在看什么版本;该代码不再存在(因为1.3 - 当前版本是2.1.4)。

在任何情况下,线程的任何中断(例如,关闭任务执行程序)都会导致该问题。