Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error while creating topic in kafka

Tags:

apache-kafka

I am using kafka on window by Cygwin and trying to create a topic and getting the below error

log4j:ERROR Could not read configuration file from URL [file:/cygdrive/d/kafka/bin/../config/tools-log4j.properties].
java.io.FileNotFoundException: \cygdrive\d\kafka\bin\..\config\tools-log4j.properties (The system cannot find the path specified)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(Unknown Source)
    at java.io.FileInputStream.<init>(Unknown Source)
    at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
    at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:524)
    at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:483)
    at org.apache.log4j.LogManager.<clinit>(LogManager.java:127)
    at org.apache.log4j.Logger.getLogger(Logger.java:117)
    at org.I0Itec.zkclient.ZkClient.<clinit>(ZkClient.java:57)
    at kafka.admin.TopicCommand$.main(TopicCommand.scala:51)
    at kafka.admin.TopicCommand.main(TopicCommand.scala)
log4j:ERROR Ignoring configuration file [file:/cygdrive/d/kafka/bin/../config/tools-log4j.properties].
log4j:WARN No appenders could be found for logger (org.I0Itec.zkclient.ZkEventThread).
log4j:WARN No appenders could be found for logger (org.I0Itec.zkclient.ZkConnection).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

But the topic is getting created. Can you help me on this

like image 363
1209 Avatar asked Apr 08 '15 05:04

1209


2 Answers

Are you creating the topic using this command line from the Kafka documentation?

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

I encountered the same error when running that script in Cygwin, and I made this change in bin/kafka-run-class.sh to resolve the problem (similar to the Cygwin classpath solution referenced in step 3 of the first answer here):

Original:

# Log4j settings if [ -z "$KAFKA_LOG4J_OPTS" ]; then KAFKA_LOG4J_OPTS="-Dlog4j.configuration=file:$base_dir/config/tools-log4j.properties" fi

To:

# Log4j settings if [ -z "$KAFKA_LOG4J_OPTS" ]; then KAFKA_LOG4J_OPTS="-Dlog4j.configuration=file:$(cygpath -wp $base_dir/config/tools-log4j.properties)" fi

like image 194
Ben Thomas Avatar answered Oct 06 '22 01:10

Ben Thomas


I ran the .bat script instead of .sh script and it worked. I didn't have to change anything.

Initially I ran this script in git bash;

bin/kafka-console-consumer.sh --boostrap-server localhost:9092 --topic kafkaTopic

and got the following error:

$ bin/kafka-console-consumer.sh --boostrap-server localhost:9092 --topic kafkaTopic
log4j:ERROR Could not read configuration file from URL
[file:/c/Users/admin/Documents/kafka/bin/../config/tools-log4j.properties].
java.io.FileNotFoundException: 

\c\Users\admin\Documents\kafka\bin\..\config\tools-log4j.properties
(The system cannot find the path specified)
      at java.io.FileInputStream.open0(Native Method)
      at java.io.FileInputStream.open(FileInputStream.java:195)
      at java.io.FileInputStream.<init>(FileInputStream.java:138)
      at java.io.FileInputStream.<init>(FileInputStream.java:93)
      at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:90)
      at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:188)
      at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:557)
      at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:526)
      at org.apache.log4j.LogManager.<clinit>(LogManager.java:127)
      at org.slf4j.impl.Log4jLoggerFactory.<init>(Log4jLoggerFactory.java:66)
      at org.slf4j.impl.StaticLoggerBinder.<init>(StaticLoggerBinder.java:72)
      at org.slf4j.impl.StaticLoggerBinder.<clinit>(StaticLoggerBinder.java:45)
      at org.slf4j.LoggerFactory.bind(LoggerFactory.java:150)
      at org.slf4j.LoggerFactory.performInitialization(LoggerFactory.java:124)
      at org.slf4j.LoggerFactory.getILoggerFactory(LoggerFactory.java:412)
      at org.slf4j.LoggerFactory.getLogger(LoggerFactory.java:357)
      at com.typesafe.scalalogging.Logger$.apply(Logger.scala:48)
      at kafka.utils.Log4jControllerRegistration$.<init>(Logging.scala:25)
      at kafka.utils.Log4jControllerRegistration$.<clinit>(Logging.scala)
      at kafka.utils.Logging.$init$(Logging.scala:47)
      at kafka.tools.ConsoleConsumer$.<init>(ConsoleConsumer.scala:45)
      at kafka.tools.ConsoleConsumer$.<clinit>(ConsoleConsumer.scala)
      at kafka.tools.ConsoleConsumer.main(ConsoleConsumer.scala)

I opened cmd and ran the command below:

C:\Users\admin\Documents\kafka\bin\windows>kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic kafkaTopic

Output:

{"message":"Spring Kafka is cool","sender":"Sydney"}

Worked nicely :)

like image 42
Sydney Molobela Avatar answered Oct 06 '22 01:10

Sydney Molobela