zoukankan      html  css  js  c++  java
  • Golang: pprof

    压测的时候,如果在应用包里加入runtime包,会对压测产生非常严重的干扰。

    测试1:开启runtime包

    [luwenwei@test-weishi01v ~]$ siege -c 100 --time=15s -q -f /tmp/SafeBizEngine.siege.2
    
    Lifting the server siege...      done.
    
    Transactions:                 310 hits
    Availability:               76.92 %
    Elapsed time:               14.37 secs
    Data transferred:           10.86 MB
    Response time:                3.77 secs
    Transaction rate:           21.57 trans/sec
    Throughput:                0.76 MB/sec
    Concurrency:               81.29
    Successful transactions:         310
    Failed transactions:              93
    Longest transaction:           10.03
    Shortest transaction:            0.02

    测试2:把runtime包注释掉

    [luwenwei@test-weishi01v ~]$ siege -c 100 --time=15s -q -f /tmp/SafeBizEngine.siege.2
    
    Lifting the server siege...      done.
    
    Transactions:                1137 hits
    Availability:              100.00 %
    Elapsed time:               14.88 secs
    Data transferred:           39.65 MB
    Response time:                0.76 secs
    Transaction rate:           76.41 trans/sec
    Throughput:                2.66 MB/sec
    Concurrency:               57.99
    Successful transactions:        1137
    Failed transactions:               0
    Longest transaction:            2.83
    Shortest transaction:            0.16

    实验1,2对比发现:引入runtime包后的错误率很高,从而影响压测的关键数据QPS。

  • 相关阅读:
    JAVA面试基础
    扔硬币问题
    随机数生成随机数
    囚犯猜帽子问题
    十道智力题(三)
    十道智力题(二)
    十道智力题(一)
    lintcode:排颜色 II
    机器学习中的几个常见概念(持续更新中......)
    如何打印一棵树(Java)
  • 原文地址:https://www.cnblogs.com/helww/p/4147032.html
Copyright © 2011-2022 走看看