- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章kafka 启动报错 missingTopicsFatal is true的解决由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
报错信息 。
org.springframework.context.ApplicationContextException: Failed to start bean 'org.springframework.kafka.config.internalKafkaListenerEndpointRegistry'; nested exception is java.lang.IllegalStateException: Topic(s) [async] is/are not present and missingTopicsFatal is true at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:185) ~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE] at org.springframework.context.support.DefaultLifecycleProcessor.access$200(DefaultLifecycleProcessor.java:53) ~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE] at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:360) ~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE] at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:158) ~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE] at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:122) ~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE] at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:894) ~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.finishRefresh(ServletWebServerApplicationContext.java:162) ~[spring-boot-2.2.0.RELEASE.jar!/:2.2.0.RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:553) ~[spring-context-5.2.0.RELEASE.jar!/:5.2.0.RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141) ~[spring-boot-2.2.0.RELEASE.jar!/:2.2.0.RELEASE] 。
报错原因:消费监听接口监听的主题不存在时,默认会报错 。
配置文件中将listener的属性missingTopicsFatal设置为false 。
1.自行修改server.properties中broker id后造成与meta.properties中数据不匹配 。
kafka.common.InconsistentBrokerIdException: Configured broker.id 2 doesn't match stored broker.id 1 in meta.properties. If you moved your data, make sure your configured broker.id matches. If you intend to create a new broker, you should remove all data in your data directories (log.dirs). 。
2.__consumer_offsets这个topic是由kafka自动创建的,默认49个,这个topic是不能被删除的! 。
Error while executing topic command : Topic __consumer_offsets is a kafka internal topic and is not allowed to be marked for deletion. 。
为什么这里会是这样存储__consumer_offsets的呢:
3.删除topic时 。
Topic frist is already marked for deletion. 。
彻底删除topic:
命令:./bin/zkCli.sh 。
找到topic所在的目录:ls /brokers/topics 。
执行命令:rmr /brokers/topics/{topic name}即可,此时topic被彻底删除.
另外被标记为marked for deletion的topic你可以在zookeeper客户端中通过命令获得:ls /admin/delete_topics/{topic name},如果你删除了此处的topic,那么marked for deletion 标记消失 。
当然,这里是你delete.topic.enable设置为false时Zookeeper下才会有这个节点.
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们.
原文链接:https://blog.csdn.net/weixin_43931625/article/details/102739002 。
最后此篇关于kafka 启动报错 missingTopicsFatal is true的解决的文章就讲到这里了,如果你想了解更多关于kafka 启动报错 missingTopicsFatal is true的解决的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
kafka 启动报错:missingTopicsFatal is true 报错信息 org.springframework.context.ApplicationContextExcep
我有一个Spring Boot应用程序,尝试从本地Kafka主题读取。 该应用程序开始旋转,暂停2分钟,并引发以下错误: 19-11-10 14:49:24.700 INFO 20476 --- [
我是一名新手,试图使用 Confluence Cloud Apache Kafka 在两个 Spring Boot 微服务之间进行通信。 在 Confluence Cloud 上使用 Kafka 时,
我是一名优秀的程序员,十分优秀!