Innodb: page_cleaner: 1000ms El bucle previsto tomó 7742 ms. La configuración podría no ser óptima

--
show variables like 'innodb_lru_scan_depth';
SET GLOBAL innodb_lru_scan_depth=512;

--
show variables like 'innodb_lock_wait_timeout';
set innodb_lock_wait_timeout=100;

--
show variables like 'innodb_flush_log_at_trx_commit';
SET GLOBAL innodb_flush_log_at_trx_commit=2;
Tiago F2