• 14.4.7 Configuring the Number of Background InnoDB IO Threads 配置 后台InnoDB IO Threads的数量


    14.4.7 Configuring the Number of Background InnoDB IO Threads 配置 后台InnoDB IO Threads的数量
    
    
    InnoDB 使用background thread 来服务各种类型的I/O请求。
    
    
    你可以配置 后台threads的数量 , 服务read和write I/O在数据pages上,
    
    
    使用配置参数 innodb_read_io_threads and innodb_write_io_threads. 
    
    
    那些参数表示 后台线程数量用于read和write 请求。
    
    
    
    
    这种改变的目的是 让InnoDB 更加的可扩展性在高端的系统上,
    
    
    每个后台thread 可以处理多达256个挂起的I/O 请求。
    
    一个主要的后台I/O 是预读请求。
    
    InnoDB 尝试 平衡进来的请求负载以这种方式,大多数threads 共享工作。
    
    
    InnoDB 也尝试分配读请求从相同的extent到相同的thread 来增加合并请求的机会。
    
    
    如果你有一个高端I/O子系统,你会看到多余64 × innodb_read_io_threads 
    
    待读请求 在 SHOW ENGINE INNODB STATUS, 你可以通过增加innodb_read_io_threads的值
    
    
    
    mysql> show variables like '%innodb_read_io_threads%';
    +------------------------+-------+
    | Variable_name          | Value |
    +------------------------+-------+
    | innodb_read_io_threads | 4     |
    +------------------------+-------+
    1 row in set (0.00 sec)
    

  • 相关阅读:
    JavaScript:原生模拟$.ajax以及jsonp
    Nodejs之路:非I/O的异步API
    Nodejs之路:异步I/O的过程
    同步、异步、阻塞、非阻塞
    spring mvc在普通类中获取HttpServletRequest对象
    Nginx反向代理实现Tomcat多个应用80端口访问
    IIS 7.5配置PHP站点
    程序员与禅师
    MVC一些需要注意的问题
    强制卸载VS2013
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13350642.html
Copyright © 2020-2023  润新知