PDF (A4) - 43.4Mb
Man Pages (TGZ) - 297.2Kb
Man Pages (Zip) - 402.4Kb
Info (Gzip) - 4.3Mb
Info (Zip) - 4.3Mb
MySQL Globalization
MySQL Information Schema
MySQL Installation Guide
Security in MySQL
Starting and Stopping MySQL
MySQL and Linux/Unix
MySQL and Windows
MySQL and macOS
MySQL and Solaris
Building MySQL from Source
MySQL Restrictions and Limitations
MySQL Partitioning
MySQL Tutorial
MySQL Performance Schema
MySQL Replication
Using the MySQL Yum Repository
MySQL NDB Cluster 8.0
InnoDB uses backgroundthreads to service various types of I/O requests. You can configure the number of background threads that service read and write I/O on data pages using theinnodb_read_io_threads andinnodb_write_io_threads configuration parameters. These parameters signify the number of background threads used for read and write requests, respectively. They are effective on all supported platforms. You can set values for these parameters in the MySQL option file (my.cnf ormy.ini); you cannot change values dynamically. The default value for these parameters is4 and permissible values range from1-64.
The purpose of these configuration options to makeInnoDB more scalable on high end systems. Each background thread can handle up to 256 pending I/O requests. A major source of background I/O isread-ahead requests.InnoDB tries to balance the load of incoming requests in such way that most background threads share work equally.InnoDB also attempts to allocate read requests from the same extent to the same thread, to increase the chances of coalescing the requests. If you have a high end I/O subsystem and you see more than 64 ×innodb_read_io_threads pending read requests inSHOW ENGINE INNODB STATUS output, you might improve performance by increasing the value ofinnodb_read_io_threads.
On Linux systems,InnoDB uses the asynchronous I/O subsystem by default to perform read-ahead and write requests for data file pages, which changes the way thatInnoDB background threads service these types of I/O requests. For more information, seeSection 17.8.6, “Using Asynchronous I/O on Linux”.
For more information aboutInnoDB I/O performance, seeSection 10.5.8, “Optimizing InnoDB Disk I/O”.
PDF (A4) - 43.4Mb
Man Pages (TGZ) - 297.2Kb
Man Pages (Zip) - 402.4Kb
Info (Gzip) - 4.3Mb
Info (Zip) - 4.3Mb
MySQL Globalization
MySQL Information Schema
MySQL Installation Guide
Security in MySQL
Starting and Stopping MySQL
MySQL and Linux/Unix
MySQL and Windows
MySQL and macOS
MySQL and Solaris
Building MySQL from Source
MySQL Restrictions and Limitations
MySQL Partitioning
MySQL Tutorial
MySQL Performance Schema
MySQL Replication
Using the MySQL Yum Repository
MySQL NDB Cluster 8.0