登录 注册
当前位置:主页 > 资源下载 > 35 > rk3288技术参考手册中的注意事项

rk3288技术参考手册中的注意事项

  • 更新:2024-08-21 18:04:56
  • 大小:1.57MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:kafka - 大数据
  • 格式:PDF

资源介绍

七、注意事项 7.1 producer 无法发送消息的问题 最开始在本机搭建了kafka伪集群,本地 producer 客户端成功发布消息至 broker。随后在服务器上搭建了 kafka 集群,在本机连接该集 群,producer 却无法发布消息到 broker(奇怪也没有抛错)。最开始怀疑是 iptables 没开放,于是开放端口,结果还不行(又开始是 代码问题、版本问题等等,倒腾了很久)。最后没办法,一项一项查看 server.properties 配置,发现以下两个配置: # The address the socket server listens on. It will get the value returned from  # java.net.InetAddress.getCanonicalHostName() if not configured. #   FORMAT: #     listeners = security_protocol://host_name:port #   EXAMPLE: #     listeners = PLAINTEXT://your.host.name:9092 listeners=PLAINTEXT://:9092   # Hostname and port the broker will advertise to producers and consumers. If not set,    # it uses the value for "listeners" if configured. Otherwise, it will use the value   # returned from java.net.InetAddress.getCanonicalHostName().   #advertised.listeners=PLAINTEXT://your.host.name:9092