tpcc-mysql性能テスト
7049 ワード
tpcc-mysqlインストール
Tpcc-mysqlは1つの電子商取引の業務を模擬することを通じて、主に含む業務は新規注文、在庫照会、出荷、支払いなどのモジュールのテストがあって、典型的な複雑なOLTPシステムの性能をテストするために使用します.Tpcc-mysqlはperconaがtpccに基づいて派生した製品であり、mysql基準テストに特化している.
makeコマンドはtpcc-mysqlディレクトリの下でtpccコマンドラインツールtpcc_を生成します.load ,tpcc_start tpcc_load:データを初期化する機能tpcc_を提供するstart:圧力テストを行う
テストデータのロード
事前定義変数:以下の内容を明確に説明するために、まずいくつかの変数を定義し、以下の計算と説明を容易にします.具体的には、success:実行成功レコード数late:実行遅延レコード数pre_success:前回実行に成功したレコード数pre_late:前回の実行に失敗したレコード数
上記で定義した変数に基づいて、対応するフィールドの結果を計算し、対応するフィールドの意味を説明します.1、時間間隔で成功したトランザクション(成功と遅延のトランザクションを含む):sl=success+late-pre_success-pre_late 2、時間間隔内の遅延トランザクション:l=late-pre_late 3、時間間隔内の上位90%記録(実際には99%)の平均応答時間:rt 90 4、時間間隔内の最大応答時間:max_rt
セルフネットワークの整理
Svoid2014-12-26
Tpcc-mysqlは1つの電子商取引の業務を模擬することを通じて、主に含む業務は新規注文、在庫照会、出荷、支払いなどのモジュールのテストがあって、典型的な複雑なOLTPシステムの性能をテストするために使用します.Tpcc-mysqlはperconaがtpccに基づいて派生した製品であり、mysql基準テストに特化している.
shell> cd /db/tool/tpcc-mysql/src/
shell> make
cc -w -O2 -g -I. `mysql_config --include` -c load.c
cc -w -O2 -g -I. `mysql_config --include` -c support.c
cc load.o support.o `mysql_config --libs_r` -lrt -o ../tpcc_load
cc -w -O2 -g -I. `mysql_config --include` -c main.c
cc -w -O2 -g -I. `mysql_config --include` -c spt_proc.c
cc -w -O2 -g -I. `mysql_config --include` -c driver.c
cc -w -O2 -g -I. `mysql_config --include` -c sequence.c
cc -w -O2 -g -I. `mysql_config --include` -c rthist.c
cc -w -O2 -g -I. `mysql_config --include` -c neword.c
cc -w -O2 -g -I. `mysql_config --include` -c payment.c
cc -w -O2 -g -I. `mysql_config --include` -c ordstat.c
cc -w -O2 -g -I. `mysql_config --include` -c delivery.c
cc -w -O2 -g -I. `mysql_config --include` -c slev.c
cc main.o spt_proc.o driver.o support.o sequence.o rthist.o neword.o payment.o ordstat.o delivery.o slev.o
`mysql_config --libs_r` -lrt -o ../tpcc_start
shell> ln -s /db/tool/tpcc-mysql/tpcc_load /usr/local/bin/tpcc_load
shell> ln -s /db/tool/tpcc-mysql/tpcc_start /usr/local/bin/tpcc_start
/db/tool/tpcc-mysql tpcc tpcc_load 、 tpcc_start
makeコマンドはtpcc-mysqlディレクトリの下でtpccコマンドラインツールtpcc_を生成します.load ,tpcc_start tpcc_load:データを初期化する機能tpcc_を提供するstart:圧力テストを行う
shell> tpcc_load --help
*************************************
*** ###easy### TPC-C Data Loader ***
*************************************
usage: tpcc_load [server] [DB] [user] [pass] [warehouse]
OR
tpcc_load [server] [DB] [user] [pass] [warehouse] [part] [min_wh] [max_wh]
* [part]: 1=ITEMS 2=WAREHOUSE 3=CUSTOMER 4=ORDERS
Server:
DB:
user:
pass:
Warehouse:
shell> tpcc_start --help
***************************************
*** ###easy### TPC-C Load Generator ***
***************************************
tpcc_start: invalid option -- '-'
Usage: tpcc_start -h server_host -P port -d database_name -u mysql_user -p mysql_password -w warehouses
-c connections -r warmup_time -l running_time -i report_interval -f report_file -t trx_file
-h server_host:
-P port : , 3306
-d database_name:
-u mysql_user :
-p mysql_password :
-w warehouses :
-c connections : , 1
-r warmup_time : , :s, 10s , 。
-l running_time : , :s, 20s
-i report_interval :
-f report_file :
テストデータのロード
shell> mysqladmin -u root -p create tpcc ##
shell> mysql -u root -p tpcc < create_table.sql ##
shell> mysql -u root -p tpcc < add_fkey_idx.sql ##
shell> tpcc_load 127.0.0.1 tpcc root mypass 5 ##
*************************************
*** ###easy### TPC-C Data Loader ***
*************************************
[server]: 127.0.0.1
[port]: 3306
[DBname]: tpcc
[user]: root
[pass]: oracle
[warehouse]: 5
TPCC Data Load Started...
.
.
.
Loading Orders for D=10, W= 5
.......... 1000
.......... 2000
.......... 3000
Orders Done.
...DATA LOADING COMPLETED SUCCESSFULLY.
shell> ./load.sh tpcc 5 ##
5 , 10 ,100 , 60
shell> tpcc_start -h 127.0.0.1 -d tpcc -u root -p mypass -w 5 -c 100 -r 10 -l 60 -i 10 -f report20141224 -t tr
***************************************
*** ###easy### TPC-C Load Generator ***
***************************************
option h with value '127.0.0.1'
option d with value 'tpcc'
option u with value 'root'
option p with value 'mypass'
option w with value '5'
option c with value '100'
option r with value '10'
option l with value '60'
option i with value '10'
option f with value 'report20141224'
option t with value 'tr'
[server]: 127.0.0.1
[port]: 3306
[DBname]: tcpp
[user]: root
[pass]: oracle
[warehouse]: 5
[connection]: 100
[rampup]: 10 (sec.)
[measure]: 60 (sec.)
RAMP-UP TIME.(10 sec.)
-- ,
MEASURING START.
-- Count New-Order Payment Order-Status Delivery Stock-Level
-- #, sl(l):rt90|max_rt , sl(l):rt90|max_rt , sl(l):rt90|max_rt, sl(l):rt90|max_rt, sl(l):rt90|max_rt
10, 462(3):4.372|8.759, 455(0):0.901|2.598, 44(0):0.515|0.638, 45(0):4.798|5.277, 46(0):11.478|12.548
20, 443(2):3.373|10.121, 433(0):0.784|1.917, 45(0):0.684|4.988, 46(0):3.931|6.257, 49(2):19.999|28.975
30, 441(2):3.362|14.565, 466(1):0.899|12.739, 45(0):0.459|0.468, 44(0):4.697|5.110, 44(0):15.978|17.884
40, 407(6):5.016|13.801, 392(0):0.765|1.341, 40(0):0.708|1.930, 41(0):4.085|4.382, 37(0):10.870|11.099
50, 419(0):3.207|3.905, 427(0):1.204|1.936, 43(0):0.428|0.570, 42(0):4.790|5.411, 46(0):11.452|11.507
60, 436(4):4.247|22.267, 429(0):0.944|1.864, 43(0):0.397|0.597, 45(0):4.182|4.889, 39(0):11.628|11.851
--
STOPPING
THREADS....................................................................................................
--
[0] sc:2591 lt:17 rt:0 fl:0 -- New-Order, (sc) , (lt) , (rt) , (fl)
[1] sc:2601 lt:1 rt:0 fl:0 -- Payment,
[2] sc:260 lt:0 rt:0 fl:0 -- Order-Status, ,
[3] sc:263 lt:0 rt:0 fl:0 -- Delivery, ,
[4] sc:259 lt:2 rt:0 fl:0 -- Stock-Level, ,
in 60 sec.
-- ,
[0] sc:2591 lt:17 rt:0 fl:0
[1] sc:2601 lt:1 rt:0 fl:0
[2] sc:260 lt:0 rt:0 fl:0
[3] sc:263 lt:0 rt:0 fl:0
[4] sc:259 lt:2 rt:0 fl:0
(all must be [OK]) -- OK
[transaction percentage]
Payment: 43.41% (>=43.0%) [OK] -- (sc + lt) 43.0%, NG, OK
Order-Status: 4.34% (>= 4.0%) [OK]
Delivery: 4.39% (>= 4.0%) [OK]
Stock-Level: 4.35% (>= 4.0%) [OK]
[response time (at least 90% passed)] -- 90%
New-Order: 99.35% [OK] # late:>=5ms
Payment: 99.96% [OK] # late:>=5ms
Order-Status: 100.00% [OK] # late:>=5ms
Delivery: 100.00% [OK] # late:>=80ms
Stock-Level: 99.23% [OK] # late:>=20ms
2608.000 TpmC #TpmC ( ,
, :2608/1 = 2608.000)
事前定義変数:以下の内容を明確に説明するために、まずいくつかの変数を定義し、以下の計算と説明を容易にします.具体的には、success:実行成功レコード数late:実行遅延レコード数pre_success:前回実行に成功したレコード数pre_late:前回の実行に失敗したレコード数
上記で定義した変数に基づいて、対応するフィールドの結果を計算し、対応するフィールドの意味を説明します.1、時間間隔で成功したトランザクション(成功と遅延のトランザクションを含む):sl=success+late-pre_success-pre_late 2、時間間隔内の遅延トランザクション:l=late-pre_late 3、時間間隔内の上位90%記録(実際には99%)の平均応答時間:rt 90 4、時間間隔内の最大応答時間:max_rt
セルフネットワークの整理
Svoid2014-12-26