本文介绍了Spring-Boot和Kafka:如何处理不可用的经纪人?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

虽然spring-boot应用程序正在运行,并且如果我完全关闭了代理(kafka和zookeeper),我会在控制台中看到此警告时间很长.

While the spring-boot app is running and if I shutdown the broker completely ( both kafka and zookeeper ) I am seeing this warn in console for infinite amount of time.

Spring Boot中是否有一种方法可以优雅地处理此问题,而不是在控制台上无限处理日志?

Is there a way in Spring Boot to handle this gracefully instead of infinite logs on console ?

推荐答案

增加 reconnect.backoff.ms 属性(请参见卡夫卡文档).

默认仅为50毫秒.

这篇关于Spring-Boot和Kafka:如何处理不可用的经纪人?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 01:46