TiDB Sysbench 性能对比测试报告 - v6.0.0 对比 v5.4.0

    软件版本

    服务类型 软件版本
    PD v5.4.0、v6.0.0
    TiDB v5.4.0、v6.0.0
    TiKV v5.4.0、v6.0.0
    Sysbench 1.1.0-df89d34

    参数配置

    两个版本使用相同的配置

    TiDB 参数配置

    TiKV 参数配置

    1. raftstore.store-pool-size: 3
    2. raftstore.apply-pool-size: 3
    3. raftdb.max-background-jobs: 4
    4. raftdb.allow-concurrent-memtable-write: true
    5. server.grpc-concurrency: 6
    6. readpool.storage.normal-concurrency: 10
    7. pessimistic-txn.pipelined: true

    TiDB 全局变量配置

    HAProxy 配置 - haproxy.cfg 文件

    更多有关 HAProxy 在 TiDB 上的使用,可参阅 。

    1. global # 全局配置。
    2. pidfile /var/run/haproxy.pid # 将 HAProxy 进程的 PID 写入 pidfile。
    3. maxconn 4000 # 每个 HAProxy 进程所接受的最大并发连接数。
    4. user haproxy # 同 UID 参数。
    5. group haproxy # 同 GID 参数,建议使用专用用户组。
    6. nbproc 64 # 在后台运行时创建的进程数。在启动多个进程转发请求时,确保该值足够大,保证 HAProxy 不会成为瓶颈。
    7. defaults # 默认配置。
    8. log global # 日志继承全局配置段的设置。
    9. retries 2 # 向上游服务器尝试连接的最大次数,超过此值便认为后端服务器不可用。
    10. timeout connect 2s # HAProxy 与后端服务器连接超时时间。如果在同一个局域网内,可设置成较短的时间。
    11. timeout client 30000s # 客户端与 HAProxy 连接后,数据传输完毕,即非活动连接的超时时间。
    12. timeout server 30000s # 服务器端非活动连接的超时时间。
    13. bind 0.0.0.0:3390 # 浮动 IP 和 监听端口。
    14. mode tcp # HAProxy 要使用第 4 层的传输层。
    15. balance leastconn # 连接数最少的服务器优先接收连接。`leastconn` 建议用于长会话服务,例如 LDAP、SQL、TSE 等,而不是短会话协议,如 HTTP。该算法是动态的,对于启动慢的服务器,服务器权重会在运行中作调整。
    16. server tidb-1 10.9.18.229:4000 check inter 2000 rise 2 fall 3 # 检测 4000 端口,检测频率为每 2000 毫秒一次。如果 2 次检测为成功,则认为服务器可用;如果 3 次检测为失败,则认为服务器不可用。
    17. server tidb-2 10.9.39.208:4000 check inter 2000 rise 2 fall 3
    1. 通过 TiUP 部署 TiDB v6.0.0 和 v5.4.0。
    2. 通过 Sysbench 导入 16 张表,每张表有 1000 万行数据。
    3. 分别对每个表执行 analyze table 命令。
    4. 备份数据,用于不同并发测试前进行数据恢复,以保证每次数据一致。
    5. 启动 Sysbench 客户端,进行 point_selectread_writeupdate_indexupdate_non_index 测试。通过 HAProxy 向 TiDB 加压,每种负载每个并发数各测试 20 分钟。
    6. 每轮完成后停止集群,使用之前的备份的数据覆盖,再启动集群。

    执行以下命令来准备测试数据:

    执行测试命令

    1. sysbench $testname \
    2. --threads=$threads \
    3. --time=1200 \
    4. --report-interval=1 \
    5. --rand-type=uniform \
    6. --db-driver=mysql \
    7. --mysql-db=sbtest \
    8. --mysql-host=$aws_nlb_host \

    Point Select 性能

    v6.0.0 对比 v5.4.0,Point Select 性能基本持平,略下降了 1.79%。

    Threads v5.4.0 TPS v6.0.0 TPS v5.4.0 95% latency (ms) v6.0.0 95% latency (ms) TPS 提升 (%)
    300 41528.7 40814.23 11.65 11.45 -1.72
    600 53220.96 51746.21 19.29 20.74 -2.77
    900 59977.58 59095.34 26.68 28.16 -1.47

    v6.0.0 对比 v5.4.0,Update Non-index 性能基本持平,略下降了 1.98%。

    Update Index 性能

    v6.0.0 对比 v5.4.0,Update Index 性能下降了 3.05%。

    Update Index

    Read Write 性能

    Threads v5.4.0 TPS v6.0.0 TPS v5.4.0 95% latency (ms) v6.0.0 95% latency (ms) TPS 提升 (%)
    300 4141.72 4829.01 97.55 82.96 16.59
    600 4892.76 5693.12 173.58 153.02 16.36
    900 5217.94 6029.95 257.95 235.74 15.56

    v6.0.0 对比 v5.4.0,Read Write 性能有大幅提升,提升了 16.17%。