mysql 硬件层调优
关闭节能
关闭numa.c-stats,cie
mysqladmin var | grep -i numa
?
grep -i?
- -i 或 --ignore-case?: 忽略字符大小写的差别。
更好的IO
软件
修改脏页比例
sysctl -a | grep -i dir
vm.dirty_background_ratio = 10 =》5
vm.dirty_ratio =30
当脏页达到30,就会刷脏页,其他进程挂起
考虑关闭swap
mysql 关键参数
sort/read/join buffer =4M
tmp/heap table=96M
binlog_format=row,sync_binlog=1
查看用户所需内存
mysql sys?
show tables like ‘%user%‘;
select * from user_summary\G;
?
? ? ? ? ? ? ? ? ? user: root
? ? ? ? ? ? statements: 685
? ? ?statement_latency: 1.52 s
?statement_avg_latency: 2.22 ms
? ? ? ? ? ?table_scans: 116
? ? ? ? ? ? ? file_ios: 1159
? ? ? ?file_io_latency: 357.51 ms
? ?current_connections: 1
? ? ?total_connections: 15
? ? ? ? ? unique_hosts: 1
? ? ? ? current_memory: 805.17 KiB
用户需要内存
total_memory_allocated: 99.26 MiB
pager cat -| less -i -n -S
?