NoBrokersAvailable: NoBrokersAvailable-Kafka Error

前端 未结 6 1207
南旧
南旧 2021-01-12 12:13

i have already started to learn Kafka. Trying basic operations on it. I have stucked on a point which about the \'Brokers\'.

My kafka is running but when i want to

6条回答
  •  渐次进展
    2021-01-12 12:49

    You cannot create partitions within a consumer. Partitions are created when you create a topic. For example, using command line tool:

    bin/kafka-topics.sh \
      --zookeeper localhost:2181 \
      --create --topic myNewTopic \
      --partitions 10 \
      --replication-factor 3
    

    This creates a new topic "myNewTopic" with 10 partitions (numbered from 0 to 9) and replication factor 3. (see http://docs.confluent.io/3.0.0/kafka/post-deployment.html#admin-operations and https://kafka.apache.org/documentation.html#quickstart_createtopic)

    Within your consumer, if you call assign(), it means you want to consume the corresponding partition and this partition must exist already.

提交回复
热议问题