zoukankan      html  css  js  c++  java
  • 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)
    

  • 相关阅读:
    窗内的星星
    亚特兰蒂斯
    你能回答这些问题吗
    区间最大公约数
    集训队8月14日(树状数组)
    一个简单的整数问题2
    谜一样的牛
    楼兰图腾
    Eternal Victory
    集训队8月12日(并查集)
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13350642.html
Copyright © 2011-2022 走看看