zoukankan      html  css  js  c++  java
  • kafka性能测试代码

     bin/kafka-producer-perf-test.sh --num-records 5000000 --record-size 5000 
     --topic kafkatopic2   
      --broker-list 
    
    
    bin/kafka-run-class.sh org.apache.kafka.clients.tools.ProducerPerformance kafkatopic2 50000000 100 -1 acks=1 
     bootstrap.servers=bdnodedn03.smpv.com:6667,bdnodedn08.smpv.com:6667,bdnodedn09.smpv.com:6667 
      buffer.memory=67108864 batch.size=8196
    
    
    Producer
    Setup
    bin/kafka-topics.sh --zookeeper bdnodedn01.smpv.com:2181 --create --topic test-rep-one --partitions 6 --replication-factor 1
    bin/kafka-topics.sh --zookeeper bdnodedn01.smpv.com:2181 --create --topic test-rep-two --partitions 6 --replication-factor 3
    
    Single thread, no replication
    bin/kafka-run-class.sh org.apache.kafka.tools.ProducerPerformance --print-metrics --topic test-rep-one 
    --num-records 6000000 --throughput 100000 
    --record-size 100 --producer-props bootstrap.servers=bdnodedn03.smpv.com:6667 
    buffer.memory=67108864 batch.size=8196
    
    Single-thread, async 3x replication
    bin/kafka-run-class.sh org.apache.kafka.tools.ProducerPerformance --print-metrics --topic test-rep-two 
    --num-records 6000000 --throughput 100000 --record-size 100 --producer-props bootstrap.servers=bdnodedn03.smpv.com:6667 
    acks=1 buffer.memory=67108864 batch.size=8196
    
    Single-thread, sync 3x replication
    bin/kafka-run-class.sh org.apache.kafka.tools.ProducerPerformance --print-metrics --topic test-rep-two 
    --num-records 6000000 --throughput 100000 --record-size 100 
    --producer-props bootstrap.servers=bdnodedn03.smpv.com:6667 acks=-1 buffer.memory=67108864 batch.size=8196
    
    Effect of message size
    
    for i in 10 100 1000 10000 100000;
    do
    echo ""
    echo $i
    bin/kafka-run-class.sh org.apache.kafka.tools.ProducerPerformance --print-metrics 
    --topic test-rep-two --num-records  $((1000*1024*1024/$i)) --throughput 100000 
    --record-size $i --producer-props bootstrap.servers=bdnodedn03.smpv.com:6667 acks=1 buffer.memory=67108864 batch.size=8196
    done;
    
    
    Consumer
    
    Consumer throughput
    bin/kafka-run-class.sh kafka.tools.ConsumerPerformance  --broker-list bdnodedn03.smpv.com:6667 
    --messages 6000000 --threads 1 
    --topic test-rep-two --print-metrics
    
    3 Consumers
    
    On three servers, run:
    bin/kafka-run-class.sh kafka.tools.ConsumerPerformance  --broker-list bdnodedn03.smpv.com:6667 
    --messages 6000000 --threads 1 
    --topic test-rep-two --print-metrics
    

      

  • 相关阅读:
    TSQL 常用日期格式
    TSQL数据类型研究_tinyint
    设置数据库状态
    判断存储过程、触发器、视图是否存在并删除
    TSQL日期函数
    TSQL常用日期函数
    TSQL单双引号分隔符相关
    动态存储过程
    TSQL类型转换函数
    modelsim保存仿真结果,以及打开保存的仿真结果的波形wlf文件(经过实验,真实可用)
  • 原文地址:https://www.cnblogs.com/huaxiaoyao/p/11216232.html
Copyright © 2011-2022 走看看