由于工作中采用了新的MySQL版本(5.6),之前一直在用5.1 ;为了方便优化,体验了一下新版本的特性
1 cpu 多核处理
以前这个参数是 innodb_file_io_threads , 5.5 根据读和写改成了两个参数,好处是可以根据读写设置cpu的数量,但仍然不支持动态修改。
mysql> show variables like ‘%io_thread%‘ ;
+-------------------------+-------+
| Variable_name | Value |
+-------------------------+-------+
| innodb_read_io_threads | 4 |
| innodb_write_io_threads | 4 |
+-------------------------+-------+
2 rows in set (0.00 sec)
验证方法: show engine innodb status \G
2 提高刷脏页和合并插入能力,提升I/O处理能力
3 刷脏页能力提升
4 缓冲池热数据存活时间调整
如mysqldump 等一次性操作可以将 pct 减小,使block 更多的进入 new blocks 区域,保留热数据
稍后更新
5 支持多个 buffer pool 实例
参考: 《MySQL管理之道》
时间: 2024-10-08 10:13:23