Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is kafka not creating a topic? bootstrap-server is not a recognized option

I am new to Kafka and trying to create a new topic on my local machine.

I am following this link.

Here are the steps which i followed:

  1. Start zookeeper

    bin/zookeeper-server-start.sh config/zookeeper.properties
    
  2. Start kafka-server

    bin/kafka-server-start.sh config/server.properties
    
  3. Create a topic

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

but when creating the topic, i am getting the following error:

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)

Is there any other configuration required to create a topic? What wrong am i doing

like image 376
KayV Avatar asked Apr 03 '19 12:04

KayV


People also ask

Is Kafka connect a bootstrap server?

bootstrap. servers is a comma-separated list of host and port pairs that are the addresses of the Kafka brokers in a "bootstrap" Kafka cluster that a Kafka client connects to initially to bootstrap itself. A Kafka cluster is made up of multiple Kafka Brokers. Each Kafka Broker has a unique ID (number).

How do I create a Kafka server topic?

Here are the simple 3 steps used to Create an Apache Kafka Topic: Step 1: Setting up the Apache Kafka Environment. Step 2: Creating and Configuring Apache Kafka Topics. Step 3: Send and Receive Messages using Apache Kafka Topics.

What is bootstrap server in Kafka?

servers is a mandatory field in Kafka Producer API. It contains a list of host/port pairs for establishing the initial connection to the Kafka cluster. The client will make use of all servers irrespective of which servers are specified here for bootstrapping.


1 Answers

If you use version older than 2.2 you should use --zookeeper option and pass connection string to zookeeper

Command would be something like that:

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

like image 185
Bartosz Wardziński Avatar answered Oct 11 '22 03:10

Bartosz Wardziński