Skip to content

Latest commit

 

History

History
92 lines (68 loc) · 2.44 KB

v5.1-performance-benchmarking-with-tpcc.md

File metadata and controls

92 lines (68 loc) · 2.44 KB
title
TiDB TPC-C 性能对比测试报告 - v5.1.0 对比 v5.0.2

TiDB TPC-C 性能对比测试报告 - v5.1.0 对比 v5.0.2

测试概况

本次测试对比了 TiDB v5.1.0 和 v5.0.2 在 OLTP 场景下的 TPC-C 性能表现。结果显示,v5.1.0 相比于 v5.0.2 在 TPC-C 性能上提升了 2.8%。

测试环境 (AWS EC2)

硬件配置

服务类型 EC2 类型 实例数
PD m5.xlarge 3
TiKV i3.4xlarge 3
TiDB c5.4xlarge 3
TPC-C c5.9xlarge 1

软件版本

服务类型 软件版本
PD v5.0.2、v5.1.0
TiDB v5.0.2、v5.1.0
TiKV v5.0.2、v5.1.0
TiUP 1.5.1

配置参数

两个版本使用同样的配置

TiDB 参数配置

{{< copyable "" >}}

log.level: "error"
performance.max-procs: 20
prepared-plan-cache.enabled: true
tikv-client.max-batch-wait-time: 2000000

TiKV 参数配置

{{< copyable "" >}}

pessimistic-txn.pipelined: true
raftdb.allow-concurrent-memtable-write: true
raftdb.max-background-jobs: 4
raftstore.apply-max-batch-size: 2048
raftstore.apply-pool-size: 3
raftstore.store-max-batch-size: 2048
raftstore.store-pool-size: 3
readpool.storage.normal-concurrency: 10
readpool.unified.max-thread-count: 20
readpool.unified.min-thread-count: 5
rocksdb.max-background-jobs: 8
server.grpc-concurrency: 6
storage.scheduler-worker-pool-size: 20
server.enable-request-batch: false

TiDB 全局变量配置

{{< copyable "sql" >}}

set global tidb_hashagg_final_concurrency=1;
set global tidb_hashagg_partial_concurrency=1;
set global tidb_enable_async_commit = 1;
set global tidb_enable_1pc = 1;
set global tidb_guarantee_linearizability = 0;
set global tidb_enable_clustered_index = 1;

测试方案

  1. 通过 TiUP 部署 TiDB v5.1.0 和 v5.0.2。
  2. 创建数据库 tpcc:create database tpcc;
  3. 通过 tiup bench 导入 TPC-C 5000 Warehouse 数据:tiup bench tpcc prepare --warehouses 5000 --db tpcc -H 127.0.0.1 -p 4000
  4. 运行 tiup bench tpcc run -U root --db tpcc --host 127.0.0.1 --port 4000 --time 300s --warehouses 5000 --threads {{thread}} 命令,通过 HAProxy 向 TiDB 加压。
  5. 从结果中提取 New Order 的 tpmC 的数据。

测试结果

v5.1.0 比 v5.0.2 在 TPC-C 性能上提升了 2.8%

TPC-C