Rechercher dans le manuel MySQL
26.12.17.7 File I/O Summary Tables
The Performance Schema maintains file I/O summary tables that aggregate information about I/O operations.
Example file I/O event summary information:
- ...
- *************************** 2. row ***************************
- EVENT_NAME: wait/io/file/sql/binlog
- COUNT_STAR: 31
- SUM_TIMER_WAIT: 8243784888
- MIN_TIMER_WAIT: 0
- AVG_TIMER_WAIT: 265928484
- MAX_TIMER_WAIT: 6490658832
- ...
- ...
- *************************** 2. row ***************************
- FILE_NAME: /var/mysql/share/english/errmsg.sys
- EVENT_NAME: wait/io/file/sql/ERRMSG
- EVENT_NAME: wait/io/file/sql/ERRMSG
- OBJECT_INSTANCE_BEGIN: 4686193384
- COUNT_STAR: 5
- SUM_TIMER_WAIT: 13990154448
- MIN_TIMER_WAIT: 26349624
- AVG_TIMER_WAIT: 2798030607
- MAX_TIMER_WAIT: 8150662536
- ...
Each file I/O summary table has one or more grouping columns
to indicate how the table aggregates events. Event names refer
to names of event instruments in the
setup_instruments
table:
file_summary_by_event_name
has anEVENT_NAME
column. Each row summarizes events for a given event name.file_summary_by_instance
hasFILE_NAME
,EVENT_NAME
, andOBJECT_INSTANCE_BEGIN
columns. Each row summarizes events for a given file and event name.
Each file I/O summary table has the following summary columns containing aggregated values. Some columns are more general and have values that are the same as the sum of the values of more fine-grained columns. In this way, aggregations at higher levels are available directly without the need for user-defined views that sum lower-level columns.
COUNT_STAR
,SUM_TIMER_WAIT
,MIN_TIMER_WAIT
,AVG_TIMER_WAIT
,MAX_TIMER_WAIT
These columns aggregate all I/O operations.
COUNT_READ
,SUM_TIMER_READ
,MIN_TIMER_READ
,AVG_TIMER_READ
,MAX_TIMER_READ
,SUM_NUMBER_OF_BYTES_READ
These columns aggregate all read operations, including
FGETS
,FGETC
,FREAD
, andREAD
.COUNT_WRITE
,SUM_TIMER_WRITE
,MIN_TIMER_WRITE
,AVG_TIMER_WRITE
,MAX_TIMER_WRITE
,SUM_NUMBER_OF_BYTES_WRITE
These columns aggregate all write operations, including
FPUTS
,FPUTC
,FPRINTF
,VFPRINTF
,FWRITE
, andPWRITE
.COUNT_MISC
,SUM_TIMER_MISC
,MIN_TIMER_MISC
,AVG_TIMER_MISC
,MAX_TIMER_MISC
These columns aggregate all other I/O operations, including
CREATE
,DELETE
,OPEN
,CLOSE
,STREAM_OPEN
,STREAM_CLOSE
,SEEK
,TELL
,FLUSH
,STAT
,FSTAT
,CHSIZE
,RENAME
, andSYNC
. There are no byte counts for these operations.
The file I/O summary tables have these indexes:
-
Primary key on (
EVENT_NAME
)
-
Primary key on (
OBJECT_INSTANCE_BEGIN
)Index on (
FILE_NAME
)Index on (
EVENT_NAME
)
TRUNCATE TABLE
is permitted for
file I/O summary tables. It resets the summary columns to zero
rather than removing rows.
The MySQL server uses several techniques to avoid I/O operations by caching information read from files, so it is possible that statements you might expect to result in I/O events will not. You may be able to ensure that I/O does occur by flushing caches or restarting the server to reset its state.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-file-summary-tables.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.