2017-04-12 17 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

私はそれがどうなったのか分かりません。私のコンソールでは、すべて同じように見えます。削除してもう一度入力しました。それは働いている。 –