大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说技术分享 | MySQL 主机该如何配置 fs.aio-max-nr[通俗易懂],希望您对编程的造诣更进一步.
MySQL 默认是启用 innodb_use_native_aio,使用异步 IO 操作,MySQL 启动时所需 aio slot 若超过系统当前 fs.aio-max-nr 设置,则无法启动报错 InnoDB: io_setup() failed with EAGAIN after 5 attempts.
通常在单机单实例环境下很少会遇到超出 aio-max-nr 的问题,若部署单机多实例,会大概率遇到此问题。我们来分析下该如何配置 fs.aio-max-nr 参数。关于 aio-nr 与 aio-max-nr
aio-nr is the running total of the number of events specified on the
io_setup system call for all currently active aio contexts. If aio-nr
reaches aio-max-nr then io_setup will fail with EAGAIN. Note that
raising aio-max-nr does not result in the pre-allocation or re-sizing
of any kernel data structures.
代码100分
启动 MySQL 时会分配多少个 event slot?
使用 strace 观测 io_setup 调用情况,
代码100分strace -fe trace=io_setup /path/to/mysqld --defaults-file=/etc/my.cnf --daemonize 2>&1 |grep io_setup
总共:4709 个 = 18 * 256 + 101
其分配 256 event 的也就是 InnoDB IO 线程。
结论
- 实例申请的 fs.aio-nr = (innodb_read_io_threads + innodb_write_io_threads + log thread + insert buffer thread) * 256 + 101
- 若单实例部署,fs.aio-max-nr 至少大于单实例 fs.aio-nr
- 若多实例部署,至少大于 本机实例数 * 每个实例的 fs.aio-nr
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/7618.html