2017-04-12 83 views
0

卡夫卡版本:0.9卡夫卡 - 性能測試

命令:

kafka-run-class org.apache.kafka.tools.ProducerPerformance –-topic testY --num-records 10000 --record-size 5000 --producer-props bootstrap.servers=servers --throughput 10 

錯誤:

usage: producer-performance [-h] --topic TOPIC --num-records NUM-RECORDS --record-size RECORD-SIZE --throughput THROUGHPUT --producer-props PROP-NAME=PROP-VALUE [PROP-NAME=PROP-VALUE ...] producer-performance: error: unrecognized arguments: '–-topic testY --num-records 10000 --record-size 5000 --producer-props bootstrap.servers=servers --throughput 10'

什麼是錯的命令?

回答

1

您的主題前有一個超大短跑。

kafka-run-class org.apache.kafka.tools.ProducerPerformance --topic testY --num-records 10000 --record-size 5000 --producer-props bootstrap.servers=servers --throughput 10 
+0

我不知道它是怎麼發生的。在我的控制檯中,看起來都很相似。我刪除並再次輸入。這是工作。 –