Bug #70999 | Table Cache Event Not Optimal alert seems overly sensitive | ||
---|---|---|---|
Submitted: | 25 Nov 2013 12:07 | Modified: | 26 Nov 2013 10:05 |
Reporter: | Simon Mudd (OCA) | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Enterprise Monitor: Advisors/Rules | Severity: | S3 (Non-critical) |
Version: | 3.0.3.2912 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[25 Nov 2013 12:07]
Simon Mudd
[26 Nov 2013 10:05]
MySQL Verification Team
Hello Simon, Thank you for the report. Verified as described. Thanks, Umesh
[28 Feb 2014 9:11]
Daniƫl van Eeden
The table_cache could suggest get a list of tables which are opened the most: SELECT FILE_NAME, OPEN_COUNT FROM performance_schema.file_instances ORDER BY OPEN_COUNT DESC LIMIT 30; And to get open latency: update performance_schema.setup_consumers set enabled='YES' where name like 'events_waits_%'; SELECT OBJECT_NAME, SUM(TIMER_WAIT) SUM_OPEN_WAIT FROM performance_schema.events_waits_history_long WHERE OBJECT_TYPE='FILE' AND OPERATION='open' GROUP BY OBJECT_NAME ORDER BY SUM_OPEN_WAIT DESC; For me this only showed binlog/frm/myisam/ps files (no InnoDB).