web-dev-qa-db-fra.com

Pourquoi kafka ne crée pas de sujet? Bootstrap-server n'est pas une option reconnue

Je suis nouveau sur Kafka et j'essaye de créer un nouveau sujet sur ma machine locale.

Je suis ce lien .

Voici les étapes que j'ai suivies:

  1. Démarrer zookeeper

    bin/zookeeper-server-start.sh config/zookeeper.properties
    
  2. Démarrer kafka-server

    bin/kafka-server-start.sh config/server.properties
    
  3. Créer un sujet

    bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test
    

mais lors de la création du sujet, j'obtiens l'erreur suivante:

Exception in thread "main" joptsimple.UnrecognizedOptionException: bootstrap-server is not a recognized option
    at joptsimple.OptionException.unrecognizedOption(OptionException.Java:108)
    at joptsimple.OptionParser.handleLongOptionToken(OptionParser.Java:510)
    at joptsimple.OptionParserState$2.handleArgument(OptionParserState.Java:56)
    at joptsimple.OptionParser.parse(OptionParser.Java:396)
    at kafka.admin.TopicCommand$TopicCommandOptions.<init>(TopicCommand.scala:358)
    at kafka.admin.TopicCommand$.main(TopicCommand.scala:44)
    at kafka.admin.TopicCommand.main(TopicCommand.scala)

Y a-t-il une autre configuration requise pour créer un sujet? Quel mal je fais

16
KayV

Si vous utilisez une version antérieure à 2.2, vous devez utiliser --zookeeper option et passer la chaîne de connexion à zookeeper

La commande serait quelque chose comme ça:

bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test

27