您现在的位置是: 首页 > 后端开发 RocketMQ 出现 sendDefaultImpl call timeout 问题
RocketMQ 出现 sendDefaultImpl call timeout 问题
2020-05-30 【后端开发】 8755人已围观 37355次浏览
简介RocketMQ 出现 sendDefaultImpl call timeout,No route info of this topic: 问题
RocketMQ 出现 sendDefaultImpl call timeout 问题
出现此类问题,一般都是因为网络连接异常导致,比如 RocketMQ 和应用程序不在同一台服务器上,出现端口不通的情况,还有就是 RocketMQ 公网部署,连接超时出现
解决方案就是检查服务器端口连通情况(开放防火墙端口或临时关闭防火墙)
出现的另一个问题
No route info of this topic: testTopic
See http://rocketmq.apache.org/docs/faq/ for further details.
出现该问题一般是以下两种情况
- broker 无法连接到 nameserver
- broker 禁止自动创建 Topic,并且也没有手动创建 Topic 的情况
出现第一种情况,一般是在 docker 中部署会出现的情况,因为没有指定 IP,导致启动起来的 broker 是 docker 内网 IP
解决方案就是在 broker 的配置文件中,新增下面的参数
brokerIP1=你的内网IP
listenPort=10911
之后重新启动 broker 即可
第二种情况分两种解决方案,最简单的方式就是在 broker 的配置文件中,新增自动创建 topic 的配置
# 是否允许 Broker 自动创建Topic,建议线下开启,线上关闭
autoCreateTopicEnable=true
# 是否允许 Broker 自动创建订阅组,建议线下开启,线上关闭
autoCreateSubscriptionGroup=true
但是这种方案在生产环境不是很建议,如果只是测试调试,这种方案是最简单的。
另一种就是启动 broker 之后,手动创建 topic ,同样也可以解决
很赞哦! (0)
相关文章
- 获取阿里云CDN真实IP
- mac idea spring boot 启动慢
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- 删除Git仓库所有历史提交记录,成为一个干净的仓库
- SqlServer字符串处理
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Nestedset 出现 Node must exists. 错误解决方案
- SpringBoot 定时任务 多线程
- SqlServer 查询包含指定字段的存储过程
- SpringBoot @NotBlank 不生效问题
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Windows CMD 常用命令
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- SqlServer 优化技巧
- sentinel directive while not in sentinel mode 问题解决
- Laravel Dingo/api 出现 The version given was unknown or has no registered routes.报错
- 优化 Mac 上 office 软件更新慢的问题
- Linux no space left on device 出现设备上没有空间问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- Linux 修改默认的 ssh 22 端口
- CentOS 安装 Docker