I am using mysql and trying to analyze performance issues on it. I am using innodb_row_lock_waits
to indicate whether there is a row lock
contention. The system is used by many consumers so I want to know which table is having the most contention. Is there a way to figure out or print the value of innodb_row_lock_waits
per table? If not, is there something else which can be used to get this information?
I am using Percona MYSQL 8.0 with innodb as the storage engine.