kafka性能测试参数含义
kafka performance test arguments meaning
我需要 运行 使用 kafka 进行一些性能测试。
我正在使用此处解释的指南:
https://engineering.linkedin.com/kafka/benchmarking-apache-kafka-2-million-writes-second-three-cheap-machines
它使用如下命令:
bin/kafka-run-class.sh org.apache.kafka.clients.tools.ProducerPerformance test7 50000000 100 -1 acks=1 bootstrap.servers=localhost:9092 buffer.memory=67108864 batch.size=8196
我理解:
题目名称:test7
num_records: 50000000
record_size: 100
server_address: bootstrap.servers=localhost:9092 buffer.memory=67108864
但我不明白的意思是:
-1
确认=1
buffer.memory=67108864
batch.size=8196
有谁清楚他们的意思吗?或者你知道这个工具的文档吗?
谢谢
通过深入查看 Apache Kafka 页面,我发现 table 具有 Producer 参数的含义。
可以在以下 link:
找到它们
我需要 运行 使用 kafka 进行一些性能测试。
我正在使用此处解释的指南: https://engineering.linkedin.com/kafka/benchmarking-apache-kafka-2-million-writes-second-three-cheap-machines
它使用如下命令: bin/kafka-run-class.sh org.apache.kafka.clients.tools.ProducerPerformance test7 50000000 100 -1 acks=1 bootstrap.servers=localhost:9092 buffer.memory=67108864 batch.size=8196
我理解:
题目名称:test7
num_records: 50000000
record_size: 100
server_address: bootstrap.servers=localhost:9092 buffer.memory=67108864
但我不明白的意思是:
-1
确认=1
buffer.memory=67108864
batch.size=8196
有谁清楚他们的意思吗?或者你知道这个工具的文档吗?
谢谢
通过深入查看 Apache Kafka 页面,我发现 table 具有 Producer 参数的含义。 可以在以下 link:
找到它们