我有一个问题。
我在freebsd8服务器上使用mysql5.5,使用php 5.3.13 -fpm和nginx。
当我查看iostat -d 2时,我看到高磁盘i / o 20 30 mb / s写入,但是就监视df而言,这并没有转化为实际的磁盘增长。
我查看了“top”,然后点击m参数切换并查看导致此磁盘活动的进程,并显示它是mysql服务器。
我不知道从哪里开始,因为对于我来说,为什么这个高磁盘写入实际上并没有转换磁盘使用情况也有点令人费解。
你能告诉我一个正确的方向吗?我的硬件:双四核xeons / 4 x 120 gb ssd in raid10 / 16 gb ram
下面是我的“my.cnf”文件
[mysqld]
datadir=/var/db/mysql
socket=/tmp/mysql.sock
skip-external-locking
skip-name-resolve
query_cache_limit=256M
query_cache_size=256M
query_cache_type=1
ft_min_word_len=3
max_user_connections=200
max_connections=200
interactive_timeout=10
wait_timeout=30
connect_timeout=10
thread_cache_size=128
long_query_time=5
key_buffer_size=1024M
join_buffer=2M
max_allowed_packet=16M
table_cache=32384
sort_buffer_size=4M
read_buffer_size=4M
max_connect_errors=10
thread_concurrency=8
myisam_sort_buffer_size=64M
low_priority_updates=1
concurrent_insert=2
max_heap_table_size=128M
tmp_table_size=128M
slow_query_log=1
slow_query_log_file=/var/db/mysql/razor-slow-log-by-katmai.log
long_query_time=1
log-queries-not-using-indexes
server-id=1
local-infile=0
innodb_open_files=131072
innodb_buffer_pool_size=8192M
#new options
#innodb_log_file_size=256M
#innodb_log_buffer_size=4M
#innodb_flush_log_at_trx_commit=2
#innodb_thread_concurrency=8
############################
#for recovery
#innodb_force_recovery=4
#innodb_file_per_table=
#[mysql.server]
#user=mysql
#basedir=/var/lib
[safe_mysqld]
err-log=/var/db/mysql/razor-mysqld.log
pid-file=/var/db/mysql/mysql.pid
open_files_limit=131072
#[mysqldump]
#quick
#max_allowed_packet=16M
[mysql]
no-auto-rehash
[isamchk]
key_buffer=64M
sort_buffer=64M
read_buffer=16M
write_buffer=16M
[myisamchk]
key_buffer=64M
sort_buffer=64M
read_buffer=16M
write_buffer=16M
[mysqlhotcopy]
interactive-timeout
答案 0 :(得分:1)
标准iostat
显示屏显示组合读写:
foobox:~> iostat -d 2
ada0 ada1 cd0 cd1
KB/t tps MB/s KB/t tps MB/s KB/t tps MB/s KB/t tps MB/s
27.52 5 0.15 14.82 2 0.03 0.00 0 0.00 0.00 0 0.00
96.00 1 0.14 0.00 0 0.00 0.00 0 0.00 0.00 0 0.00
128.00 1 0.19 0.00 0 0.00 0.00 0 0.00 0.00 0 0.00
64.00 3 0.19 0.00 0 0.00 0.00 0 0.00 0.00 0 0.00
所以我的猜测是你根本没有看到写作,而是阅读。
要单独查看它们,您需要使用-x
标志来扩展统计信息:
foobox:~> iostat -d -x 2
extended device statistics
device r/s w/s kr/s kw/s qlen svc_t %b
ada0 1.9 3.6 51.3 98.5 0 37.6 1
ada1 0.8 1.3 3.3 28.0 0 12.5 0
cd0 0.0 0.0 0.0 0.0 0 0.0 0
cd1 0.0 0.0 0.0 0.0 0 0.0 0
pass0 0.0 0.0 0.0 0.0 0 0.0 0
pass1 0.0 0.0 0.0 0.0 0 0.0 0
pass2 0.0 0.0 1.1 0.0 0 0.0 0
pass3 0.0 0.0 0.0 0.0 0 0.0 0
有关标题含义的完整概述,请参阅iostat手册页,但kr / s是每秒读取的千字节数,kw / s是每秒写入的千字节数。