10 lines
553 B
Plaintext
10 lines
553 B
Plaintext
|
[mysqld]
|
||
|
innodb_lru_scan_depth=100 # from 1024 to conserve 90% CPU cycles used for function
|
||
|
innodb_io_capacity=1900 # from 200 to allow more IOPSecond to your storage device
|
||
|
innodb_flush_neighbors=2 # from 0 to expedite writing to current extent
|
||
|
innodb_max_dirty_pages_pct_lwm=1 # from 10 percent to expedite writes
|
||
|
innodb_max_dirty_pages_pct=1 # from 90 percent to reduce innodb_buffer_pool_pages_dirty count
|
||
|
innodb_change_buffer_max_size=50 # from 25 percent to expedite your high volume activity
|
||
|
innodb_flush_log_at_trx_commit=0
|
||
|
skip_log_bin=1
|