14.8.11 Physical Structure of an InnoDB Index InnoDB Index 的物理结构 所有的InnoDB indexes 是 B-trees Index records 是存储在 树的叶子块,默认的index page 是16KB 当新的记录是被插入到InnoDB clustered index, InnoDB 尝试 预留1/6的page 空闲用于将来的插入和更新 index records. 如果Index records 是按顺序插入的(升序或者倒…
14.6.7 Configuring the Number of Background InnoDB IO Threads 配置InnoDB IO Threads的数量 InnoDB 使用后台线程来服务各种类型的I/O请求.你可以配置后台线程的数量 服务服和写I/O 在数据页上, 使用配置参数 innodb_read_io_threads and innodb_write_io_threads. mysql> show variables like '%innodb_read_io_thread…
14.6.2 Configuring InnoDB for Read-Only Operation 配置InnoDB只读操作 你可以查询InnoDB 表MySQL 数据目录是一个只读介质,通过启用 --innodb-read-only 配置选项在服务启动前 mysql> show variables like '%innodb-read-only%'; Empty set (0.00 sec) mysql> show variables like '%innodb_read_only%'; +…