sysbench是一款開源的多線程性能測試工具,可以執行CPU/內存/線程/IO/數據庫等方面的性能測試。數據庫目前支持mysql/Oracle /PostgreSQL。本文只是簡單演示一下幾種測試的用法,後續準備利用sysbench來對MySQL進行一系列的測試。具體的一些參數設置,需要 根據不同的測試要求來進行調整.
編譯安裝
# wget -c http://sourceforge.net/projects/sysbench/files/sysbench/0.4.12/sysbench-0.4.12.tar.gz/download
#tar zxvf sysbench-0.4.12.tar.gz
#cd sysbench-0.4.12
#./configure && make && make install linux學習,http:// linux.it.net.cn
如果需要測試Oracle/PostgreSQL,則在configure時需要加上–with-oracle或者–with-pgsql參數
參數
[root@localhost sysbench]# ./sysbench
測試用例:
sysbench [general-options]… –test=<test-name> [test-options]… command Linux學習,http:// linux.it.net.cn
通用選項:
–num-threads=N 創建測試線程的數目。默認為1.
–max-requests=N 請求的最大數目。默認為10000,0代表不限制。
–max-time=N 最大執行時間,單位是s。默認是0,不限制。
–forced-shutdown=STRING 超過max-time強制中斷。默認是off。]
–thread-stack-size=SIZE 每個線程的堆棧大小。默認是32K。
–init-rng=[on|off] 在測試開始時是否初始化隨機數發生器。默認是off。
–test=STRING 指定測試項目名稱。
–debug=[on|off] 是否顯示更多的調試信息。默認是off。
–validate=[on|off] 在可能情況下執行驗證檢查。默認是off。
測試項目:
fileio – File I/O test
cpu – CPU performance test
memory – Memory functions speed test
threads – Threads subsystem performance test
mutex – Mutex performance test(互斥性能測試)
oltp – OLTP test
指令: prepare(測試前準備工作) run(正式測試) cleanup(測試後刪掉測試數據) help version
See ‘sysbench –test=<name> help’ for a list of options for each test. 查看每個測試項目的更多選項列表。
[root@localhost bin]# ./sysbench –test=fileio help
–file-num=N 創建測試文件的數量。默認是128
–file-block-size=N 測試時文件塊的大小。默認是16384(16K)
–file-total-size=SIZE 測試文件的總大小。默認是2G
–file-test-mode=STRING 文件測試模式{seqwr(順序寫), seqrewr(順序讀寫), seqrd(順序讀), rndrd(隨機讀), rndwr(隨機寫), rndrw(隨機讀寫)}
–file-io-mode=STRING 文件操作模式{sync(同步),async(異步),fastmmap(快速map映射),slowmmap(慢map映射)}。默認是sync
–file-extra-flags=STRING 使用額外的標誌來打開文件{sync,dsync,direct} 。默認為空
–file-fsync-freq=N 執行fsync()的頻率。(0 – 不使用fsync())。默認是100 Linux學習,http:// linux.it.net.cn
–file-fsync-all=[on|off] 每執行完一次寫操作就執行一次fsync。默認是off
–file-fsync-end=[on|off] 在測試結束時才執行fsync。默認是on
–file-fsync-mode=STRING 使用哪種方法進行同步{fsync, fdatasync}。默認是fsync
–file-merged-requests=N 如果可以,合並最多的IO請求數(0 – 表示不合並)。默認是0
–file-rw-ratio=N 測試時的讀寫比例。默認是1.5
[root@localhost bin]# ./sysbench –test=cpu help
–cpu-max-prime=N 最大質數發生器數量。默認是10000
[root@localhost bin]# ./sysbench –test=memory help
–memory-block-size=SIZE 測試時內存塊大小。默認是1K
–memory-total-size=SIZE 傳輸數據的總大小。默認是100G
–memory-scope=STRING 內存訪問範圍{global,local}。默認是global
–memory-hugetlb=[on|off] 從HugeTLB池內存分配。默認是off
–memory-oper=STRING 內存操作類型。{read, write, none} 默認是write
–memory-access-mode=STRING存儲器存取方式{seq,rnd} 默認是seq
[root@localhost bin]# ./sysbench –test=threads help
–thread-yields=N 每個請求產生多少個線程。默認是1000
–thread-locks=N 每個線程的鎖的數量。默認是8
[root@localhost bin]# ./sysbench –test=mutex help
–mutex-num=N 數組互斥的總大小。默認是4096
–mutex-locks=N 每個線程互斥鎖的數量。默認是50000
–mutex-loops=N 內部互斥鎖的空循環數量。默認是10000
[root@localhost bin]# ./sysbench –test=oltp help
oltp options:
–oltp-test-mode=STRING 執行模式{simple,complex(advanced transactional),nontrx(non-transactional),sp}。默認是complex
–oltp-reconnect-mode=STRING 重新連接模式{session(不使用重新連接。每個線程斷開只在測試結束),transaction(在每次事務結束後重新連接),query(在每個 SQL語句執行完重新連接),random(對於每個事務隨機選擇以上重新連接模式)}。默認是session
–oltp-sp-name=STRING 存儲過程的名稱。默認為空
–oltp-read-only=[on|off] 只讀模式。update,delete,insert語句不可執行。默認是off
–oltp-skip-trx=[on|off] 省略begin/commit語句。默認是off Linux學習,http:// linux.it.net.cn
–oltp-range-size=N 查詢範圍。默認是100
–oltp-point-selects=N number of point selects [10]
–oltp-simple-ranges=N number of simple ranges [1]
–oltp-sum-ranges=N number of sum ranges [1]
–oltp-order-ranges=N number of ordered ranges [1]
–oltp-distinct-ranges=N number of distinct ranges [1]
–oltp-index-updates=N number of index update [1]
–oltp-non-index-updates=N number of non-index updates [1]
–oltp-nontrx-mode=STRING 查詢類型對於非事務執行模式{select, update_key, update_nokey, insert, delete} [select]
–oltp-auto-inc=[on|off] AUTO_INCREMENT是否開啟。默認是on
–oltp-connect-delay=N 在多少微秒後連接數據庫。默認是10000 IT網,http://www.it.net.cn
–oltp-user-delay-min=N 每個請求最短等待時間。單位是ms。默認是0
–oltp-user-delay-max=N 每個請求最長等待時間。單位是ms。默認是0
–oltp-table-name=STRING 測試時使用到的表名。默認是sbtest
–oltp-table-size=N 測試表的記錄數。默認是10000
–oltp-dist-type=STRING 分布的隨機數{uniform(均勻分布),Gaussian(高斯分布),special(空間分布)}。默認是special
–oltp-dist-iter=N 產生數的叠代次數。默認是12
–oltp-dist-pct=N 值的百分比被視為’special’ (for special distribution)。默認是1
–oltp-dist-res=N ‘special’的百分比值。默認是75
General database options:
–db-driver=STRING 指定數據庫驅動程序(‘help’ to get list of available drivers)
–db-ps-mode=STRING編制報表使用模式{auto, disable} [auto] Linux學習,http:// linux.it.net.cn
Compiled-in database drivers:
mysql – MySQL driver
mysql options:
–mysql-host=[LIST,...] MySQL server host [localhost]
–mysql-port=N MySQL server port [3306]
–mysql-socket=STRING MySQL socket
–mysql-user=STRING MySQL user [sbtest]
–mysql-password=STRING MySQL password []
–mysql-db=STRING MySQL database name [sbtest]
–mysql-table-engine=STRING storage engine to use for the test table {myisam,innodb,bdb,heap,ndbcluster,federated} [innodb]
–mysql-engine-trx=STRING whether storage engine used is transactional or not {yes,no,auto} [auto]
–mysql-ssl=[on|off] use SSL connections, if available in the client library [off]
–myisam-max-rows=N max-rows parameter for MyISAM tables [1000000]
–mysql-create-options=STRING additional options passed to CREATE TABLE [] Linux學習,http:// linux.it.net.cn
測試
1、CPU測試 IT網,http://www.it.net.cn
[root@localhost bin]# ./sysbench –test=cpu –cpu-max-prime=20000 run
sysbench 0.4.12: multi-threaded system evaluation benchmark Linux學習,http:// linux.it.net.cn
Number of threads: 1 IT網,http://www.it.net.cn
Doing CPU performance benchmark
Threads started!
Done.
Maximum prime number checked in CPU test: 20000
Test execution summary:
total time: 31.9364s
total number of events: 10000
total time taken by event execution: 31.9334
per-request statistics:
min: 3.18ms
avg: 3.19ms
max: 3.60ms IT網,http://www.it.net.cn
approx. 95 percentile: 3.20ms
Threads fairness:
events (avg/stddev): 10000.0000/0.00
execution time (avg/stddev): 31.9334/0.00 IT網,http://www.it.net.cn
2、線程數測試
thread-locks小於線程數除以2,lock越少,處理時間越長。
# ./sysbench –test=threads –num-threads=512 –thread-yields=100 –thread-locks=2 run
sysbench 0.4.12: multi-threaded system evaluation benchmark
Running the test with following options:Number of threads: 512
Doing thread subsystem performance test
Thread yields per test: 100 Locks used: 2
Threads started!
WARNING: Operation time (0.000000) is less than minimal counted value, counting as 1.000000
WARNING: Percentile statistics will be inaccurateDone. Linux學習,http:// linux.it.net.cn
Test execution summary:
total time: 4.1759s
total number of events: 10000
total time taken by event execution: 2038.5959
per-request statistics:
min: 0.00ms
avg: 203.86ms
max: 2735.47ms
approx. 95 percentile: 829.60ms
Threads fairness:
events (avg/stddev): 19.5312/8.26
execution time (avg/stddev): 3.9816/0.04
3、磁盤IO性能測試 Linux學習,http:// linux.it.net.cn
首先生成需要的測試文件,文件總大小3G,16個並發線程,隨機讀寫模式。執行完後會在當前目錄下生成一堆小文件。
# ./sysbench –test=fileio –num-threads=16 –file-total-size=3G –file-test-mode=rndrw prepare
sysbench 0.4.12: multi-threaded system evaluation benchmark
128 files, 24576Kb each, 3072Mb total Linux學習,http:// linux.it.net.cn
Creating files for the test…
開始測試: IT網,http://www.it.net.cn
# ./sysbench –test=fileio –num-threads=16 –file-total-size=3G –file-test-mode=rndrw run
sysbench 0.4.12: multi-threaded system evaluation benchmark
Running the test with following options:Number of threads: 16
Extra file open flags: 0 Linux學習,http:// linux.it.net.cn
128 files, 24Mb each
3Gb total file size
Block size 16Kb
Number of random requests for random IO: 10000
Read/Write ratio for combined random IO test: 1.50 IT網,http://www.it.net.cn
Periodic FSYNC enabled, calling fsync() each 100 requests
.Calling fsync() at the end of test, Enabled.
Using synchronous I/O modeDoing random r/w test
Threads started! Linux學習,http:// linux.it.net.cn
WARNING: Operation time (0.000000) is less than minimal counted value, counting as 1.000000
WARNING: Percentile statistics will be inaccurateDone.
Operations performed: 6004 Read, 3996 Write, 12800 Other = 22800 TotalRead 93.812Mb Written 62.438Mb Total transferred 156.25Mb (6.472Mb/sec) 414.21 Requests/sec executed
Test execution summary: Linux學習,http:// linux.it.net.cn
total time: 24.1426s
total number of events: 10000
total time taken by event execution: 164.4243 IT網,http://www.it.net.cn
per-request statistics:
min: 0.00ms Linux學習,http:// linux.it.net.cn
avg: 16.44ms
max: 821.08ms approx. 95 percentile: 102.40ms
Threads fairness:
events (avg/stddev): 625.0000/63.99 e
xecution time (avg/stddev): 10.2765/0.62
清理現場
# ./sysbench –test=fileio –num-threads=16 –file-total-size=3G –file-test-mode=rndrw cleanup
sysbench 0.4.12: multi-threaded system evaluation benchmark
Removing test files…
4、內存測試
下面的參數指定了本次測試整個過程是在內存中傳輸 1G 的數據量,每個 block 大小為 8K。
./sysbench –test=memory –num-threads=64 –memory-block-size=8192 –memory-total-size=1G run
sysbench 0.4.12: multi-threaded system evaluation benchmark Linux學習,http:// linux.it.net.cn
Running the test with following options:
Number of threads: 64
Doing memory operations speed test
Memory block size: 8K
Memory transfer size: 1024M
Memory operations type: writeMemory scope type: globalThreads started!(last message repeated 1 times)
WARNING: Operation time (0.000000) is less than minimal counted value, counting as 1.000000
WARNING: Percentile statistics will be inaccurate(last message repeated 1 times)Done.
Operations performed: 131072 (416391.08 ops/sec)
1024.00 MB transferred (3253.06 MB/sec) Linux學習,http:// linux.it.net.cn
Test execution summary:
total time: 0.3148s
total number of events: 131072
total time taken by event execution: 17.5553
per-request statistics:
min: 0.00ms
avg: 0.13ms
max: 289.55ms
approx. 95 percentile: 0.00ms
Threads fairness:
events (avg/stddev): 2048.0000/4854.85 Linux學習,http:// linux.it.net.cn
execution time (avg/stddev): 0.2743/0.04
5、Mutex測試 Linux學習,http:// linux.it.net.cn
測試mutex
[root@localhost ]# ./sysbench –test=mutex –num-threads=1500 –max-requests=2000 –mutex-num=10240 –mutex-locks=100000
–mutex-loops=15000 run
sysbench 0.4.12: multi-threaded system evaluation benchmark Linux學習,http:// linux.it.net.cn
Running the test with following options:
Number of threads: 1500
Doing mutex performance test
Threads started!
Done.
Test execution summary:
total time: 74.0710s
total number of events: 1500
total time taken by event execution: 5410.6925
per-request statistics:
min: 485.77ms
avg: 3607.13ms
max: 13770.44ms
approx. 95 percentile: 12489.67ms
Threads fairness:
events (avg/stddev): 1.0000/0.00
execution time (avg/stddev): 3.6071/3.97
6、MySQL數據庫測試
首先需要創建默認的sbtest數據庫,或者使用–mysql-db指定一個已經存在的數據庫
生成測試數據,引擎為myisam,表大小為1000000條記錄
[root@localhost ]# ./sysbench --test=oltp --mysql-table-engine=myisam --oltp-table-size=1000000 \ --mysql-user=root --mysql-socket=/opt/mysql/run/mysql.sock prepare
sysbench 0.4.12: multi-threaded system evaluation benchmark No DB drivers specified, using mysql Creating table 'sbtest'... Creating 1000000 records in table 'sbtest'... root@sbtest 11:42:18>desc sbtest.sbtest; +-------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------+------------------+------+-----+---------+----------------+ | id | int(10) unsigned | NO | PRI | NULL | auto_increment | | k | int(10) unsigned | NO | MUL | 0 | | | c | char(120) | NO | | | | | pad | char(60) | NO | | | | +-------+------------------+------+-----+---------+----------------+
執行測試
[root@localhost ]# ./sysbench --test=oltp --mysql-table-engine=myisam --oltp-table-size=1000000 \ --mysql-user=root --mysql-socket=/opt/mysql/run/mysql.sock run Linux學習,http:// linux.it.net.cn
sysbench 0.4.12: multi-threaded system evaluation benchmark No DB drivers specified, using mysql Running the test with following options: Number of threads: 1 Doing OLTP test. Running mixed OLTP test Using Special distribution (12 iterations, 1 pct of values are returned in 75 pct cases) Using "LOCK TABLES WRITE" for starting transactions Using auto_inc on the id column Maximum number of requests for OLTP test is limited to 10000 Threads started! Done. OLTP test statistics: queries performed: read: 140000 write: 50000 other: 20000 total: 210000 transactions: 10000 (336.64 per sec.) deadlocks: 0 (0.00 per sec.) read/write requests: 190000 (6396.11 per sec.) other operations: 20000 (673.27 per sec.) Test execution summary: total time: 29.7056s total number of events: 10000 total time taken by event execution: 29.6301 per-request statistics: min: 2.27ms avg: 2.96ms max: 43.88ms approx. 95 percentile: 3.36ms Threads fairness: events (avg/stddev): 10000.0000/0.00 execution time (avg/stddev): 29.6301/0.00
清理現場
[root@localhost ]# ./sysbench--test=oltp --mysql-table-engine=myisam --oltp-table-size=1000000 \ --mysql-user=root --mysql-socket=/opt/mysql/run/mysql.sock cleanup
sysbench 0.4.12: multi-threaded system evaluation benchmark No DB drivers specified, using mysql Dropping table 'sbtest'... Done.
Tags:
文章來源: