私はKafkaに不慣れで、ローカルマシンに新しいトピックを作成しようとしています。
私は このリンク をフォローしています。
ここに私が従ったステップがあります:
飼育係を開始
bin/zookeeper-server-start.sh config/zookeeper.properties
Kafka-serverを起動します
bin/kafka-server-start.sh config/server.properties
トピックを作成する
bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test
しかし、トピックを作成すると、次のエラーが発生します。
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)
トピックを作成するために必要な他の構成はありますか?何が悪いの
2.2より古いバージョンを使用している場合は、--zookeeper
オプションを使用して、接続文字列をzookeeperに渡す必要があります
コマンドは次のようになります。
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test