Rechercher dans le manuel MySQL
26.12.17.6 Object Wait Summary Table
The Performance Schema maintains the
objects_summary_global_by_type
table for aggregating object wait events.
Example object wait event summary information:
- ...
- *************************** 3. row ***************************
- OBJECT_TYPE: TABLE
- OBJECT_SCHEMA: test
- OBJECT_NAME: t
- COUNT_STAR: 3
- SUM_TIMER_WAIT: 263126976
- MIN_TIMER_WAIT: 1522272
- AVG_TIMER_WAIT: 87708678
- MAX_TIMER_WAIT: 258428280
- ...
- *************************** 10. row ***************************
- OBJECT_TYPE: TABLE
- OBJECT_SCHEMA: mysql
- OBJECT_NAME: user
- COUNT_STAR: 14
- SUM_TIMER_WAIT: 365567592
- MIN_TIMER_WAIT: 1141704
- AVG_TIMER_WAIT: 26111769
- MAX_TIMER_WAIT: 334783032
- ...
The
objects_summary_global_by_type
table has these grouping columns to indicate how the table
aggregates events: OBJECT_TYPE
,
OBJECT_SCHEMA
, and
OBJECT_NAME
. Each row summarizes events for
the given object.
objects_summary_global_by_type
has the same summary columns as the
events_waits_summary_by_
tables. See Section 26.12.17.1, “Wait Event Summary Tables”.
xxx
The
objects_summary_global_by_type
table has these indexes:
Primary key on (
OBJECT_TYPE
,OBJECT_SCHEMA
,OBJECT_NAME
)
TRUNCATE TABLE
is permitted for
the object summary table. It resets the summary columns to
zero rather than removing rows.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-objects-summary-global-by-type-table.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.