一 IOPS(Input/output oprations per second,每秒处理的i/o请求次数
主要描述磁盘的物理参数,iops=1000ms/(寻道时间+旋转延迟时间)
二 qps (query per second,每秒请求查询次数)
在mysql下,show global status like 'Questions",可以得到全局
的值,
但可以命令行模式下,通过下面的方法获得每隔1秒获得的question值
mysqladmin -h 127.0.0.1 -u root -p extended-status -r i 1|grep "Questions" (linux)
如果是windows
mysqladmin -h 127.0.0.1 -u root -p extended-status -r i 1|grep "Questions" (windows)
可以使用mysqlslap命令进行测试
三 tps (transcation per second :每秒事务数)
tps=(com_commit+com_rollback)/seconds
可以使用tpcc-mysql来进行测试
下载地址:https://code.launchpad.net/~percona-dev/perconatools/tpcc-mysql。
参考
http://imysql.com/2014/10/10/tpcc-mysql-full-user-manual.shtml
mysql中三个性能指标
转载
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
测试--性能指标
QPSTPSRT
数据库 memcached java 响应时间 数据 -
CPU性能指标
1.us(user):表示 CPU 在用户运行的时间百分比,通常用户 CPU 高表示有应用程
软中断 内核态 进程优先级