Spring Cloud Stream Kafka将无法连接

问题描述 投票:0回答:1

我正在使用此docker compose:

version: '2'
services:

  zookeeper:
    image: confluentinc/cp-zookeeper:4.1.1
    hostname: zookeeper
    ports:
    - "32181:32181"
    environment:
      ZOOKEEPER_CLIENT_PORT: 32181
      ZOOKEEPER_TICK_TIME: 2000
      ZOOKEEPER_SYNC_LIMIT: 2

  kafka:
    image: confluentinc/cp-kafka:4.1.1
    hostname: kafka
    ports:
    - "29092:29092"
    depends_on:
    - zookeeper
    environment:
      KAFKA_BROKER_ID: 1
      KAFKA_ZOOKEEPER_CONNECT: zookeeper:32181
      KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092
      KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1

我的属性是:

spring.cloud.stream.bindings.event.binder=event-binder
spring.cloud.stream.bindings.event.destination=event    

spring.cloud.stream.binders.event-binder.type=kafka

spring.cloud.stream.kafka.binder.brokers=localhost:29092
spring.cloud.stream.kafka.binder.zkNodes=localhost:32181

但是我收到此错误:

9:54:14.534 [main] INFO  o.a.kafka.common.utils.AppInfoParser - Kafka version : 2.0.1
19:54:14.534 [main] INFO  o.a.kafka.common.utils.AppInfoParser - Kafka commitId : fa14705e51bd2ce5
19:54:14.576 [kafka-admin-client-thread | adminclient-1] WARN  o.apache.kafka.clients.NetworkClient - [AdminClient clientId=adminclient-1] Connection to node -1 could not be established. Broker may not be available.
19:54:14.679 [kafka-admin-client-thread | adminclient-1] WARN  o.apache.kafka.clients.NetworkClient - [AdminClient clientId=adminclient-1] Connection to node -1 could not be established. Broker may not be available.
19:

我的春季启动版本是2.1.4.RELEASE,而我的春季云版本是Greenwich.SR1。

提前感谢!

docker apache-kafka spring-cloud-stream spring-cloud-stream-binder-kafka
1个回答
0
投票

使用该配置,我认为您需要KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:29092

© www.soinside.com 2019 - 2024. All rights reserved.