Storage pool size parameter: innodb_buffer_pool
1. Understanding the size of the storage pool: When accessing a large amount of data, the time for large amounts of data is not directly related to the size of the storage pool.
2. When the storage pool memory is exhausted, querying data will require a large number of disk IO operations;
3. Causes the database server CPU and IO to become full, eventually causing the service to crash;
question. Is there a MYSQL data indicator that can monitor that the storage pool size is about to be used up, and subsequent disk scans will be performed, requiring memory expansion operations?
1. Understanding the size of the storage pool: When accessing a large amount of data, the time for large amounts of data is not directly related to the size of the storage pool.
2. When the storage pool memory is exhausted, querying data will require a large number of disk IO operations;
3. Causes the database server CPU and IO to become full, eventually causing the service to crash;
question. Is there a MYSQL data indicator that can monitor that the storage pool size is about to be used up, and subsequent disk scans will be performed, requiring memory expansion operations?