在Kafka中创建主题时出错

120*_*209 3 apache-kafka

我在Cygwin的窗口上使用kafka并尝试创建主题并遇到以下错误

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.
Run Code Online (Sandbox Code Playgroud)

但是主题正在创建。你能帮我吗

小智 6

您是否正在使用Kafka文档中的此命令行创建主题?

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

在Cygwin中运行该脚本时,我遇到了相同的错误,并且我在bin / kafka-run-class.sh中进行了更改以解决该问题(类似于此处第一个答案的步骤3中引用的Cygwin类路径解决方案):

原版的:

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

至:

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

  • 似乎他们更新了该脚本以查找Cygwin,但是如果您尝试像我一样使用Git Bash,仍然会收到错误:P (2认同)

小智 5

我运行了.bat脚本而不是.sh脚本并且它起作用了。我不需要改变任何东西。

最初我在 git bash 中运行这个脚本;

bin/kafka-console-consumer.sh --boostrap-server localhost:9092 --topic kafkaTopic
Run Code Online (Sandbox Code Playgroud)

并得到以下错误:

bin/kafka-console-consumer.sh --boostrap-server localhost:9092 --topic kafkaTopic
Run Code Online (Sandbox Code Playgroud)

我打开cmd并运行以下命令:

C:\Users\admin\Documents\kafka\bin\windows>kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic kafkaTopic
Run Code Online (Sandbox Code Playgroud)

输出:

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

工作得很好:)


sah*_*ahu 1

我认为你提到的路径是不正确的。正如消息所示,未找到文件异常。下面是用Java向kafka发送消息的示例代码。假设 Kafka 服务器在本地运行。

`public static void main(String[] args){
    long events = 100000;
    Random rnd  = new Random();

    Properties props = new Properties();
    props.put("metadata.broker.list", "localhost:9092");
    props.put("serializer.class", "kafka.serializer.StringEncoder");
    props.put("partitioner.class", "com.pranjal.kafkatest.SimplePartitioner");
    props.put("request.required.acks", "1");

    ProducerConfig config = new ProducerConfig(props);

    Producer<String, String> producer = new Producer<String, String>(config);

    for(int i=0;i<events;++i){

        long runtime = new Date().getTime();
        String ip    = "192.168.2." + rnd.nextInt(255);

        String msg= "Hello";

        KeyedMessage<String, String> data = new KeyedMessage<String, String>("sentences", ip, msg);
        producer.send(data);
    }
    producer.close();
}`
Run Code Online (Sandbox Code Playgroud)