Rechercher dans le manuel MySQL
26.16 Performance Schema Status Variables
The Performance Schema implements several status variables that provide information about instrumentation that could not be loaded or created due to memory constraints:
- +-------------------------------------------+-------+
- +-------------------------------------------+-------+
- | Performance_schema_accounts_lost | 0 |
- | Performance_schema_cond_classes_lost | 0 |
- | Performance_schema_cond_instances_lost | 0 |
- | Performance_schema_file_classes_lost | 0 |
- | Performance_schema_file_handles_lost | 0 |
- | Performance_schema_file_instances_lost | 0 |
- | Performance_schema_hosts_lost | 0 |
- | Performance_schema_locker_lost | 0 |
- | Performance_schema_mutex_classes_lost | 0 |
- | Performance_schema_mutex_instances_lost | 0 |
- | Performance_schema_rwlock_classes_lost | 0 |
- | Performance_schema_rwlock_instances_lost | 0 |
- | Performance_schema_socket_classes_lost | 0 |
- | Performance_schema_socket_instances_lost | 0 |
- | Performance_schema_stage_classes_lost | 0 |
- | Performance_schema_statement_classes_lost | 0 |
- | Performance_schema_table_handles_lost | 0 |
- | Performance_schema_table_instances_lost | 0 |
- | Performance_schema_thread_classes_lost | 0 |
- | Performance_schema_thread_instances_lost | 0 |
- | Performance_schema_users_lost | 0 |
- +-------------------------------------------+-------+
For information on using these variables to check Performance Schema status, see Section 26.7, “Performance Schema Status Monitoring”.
Performance Schema status variables have the following meanings:
Performance_schema_accounts_lost
The number of times a row could not be added to the
accounts
table because it was full.Performance_schema_cond_classes_lost
How many condition instruments could not be loaded.
Performance_schema_cond_instances_lost
How many condition instrument instances could not be created.
Performance_schema_digest_lost
The number of digest instances that could not be instrumented in the
events_statements_summary_by_digest
table. This can be nonzero if the value ofperformance_schema_digests_size
is too small.Performance_schema_file_classes_lost
How many file instruments could not be loaded.
Performance_schema_file_handles_lost
How many file instrument instances could not be opened.
Performance_schema_file_instances_lost
How many file instrument instances could not be created.
The number of times a row could not be added to the
hosts
table because it was full.Performance_schema_index_stat_lost
The number of indexes for which statistics were lost. This can be nonzero if the value of
performance_schema_max_index_stat
is too small.Performance_schema_locker_lost
How many events are “lost” or not recorded, due to the following conditions:
Events are recursive (for example, waiting for A caused a wait on B, which caused a wait on C).
The depth of the nested events stack is greater than the limit imposed by the implementation.
Events recorded by the Performance Schema are not recursive, so this variable should always be 0.
Performance_schema_memory_classes_lost
The number of times a memory instrument could not be loaded.
Performance_schema_metadata_lock_lost
The number of metadata locks that could not be instrumented in the
metadata_locks
table. This can be nonzero if the value ofperformance_schema_max_metadata_locks
is too small.Performance_schema_mutex_classes_lost
How many mutex instruments could not be loaded.
Performance_schema_mutex_instances_lost
How many mutex instrument instances could not be created.
Performance_schema_nested_statement_lost
The number of stored program statements for which statistics were lost. This can be nonzero if the value of
performance_schema_max_statement_stack
is too small.Performance_schema_prepared_statements_lost
The number of prepared statements that could not be instrumented in the
prepared_statements_instances
table. This can be nonzero if the value ofperformance_schema_max_prepared_statements_instances
is too small.Performance_schema_program_lost
The number of stored programs for which statistics were lost. This can be nonzero if the value of
performance_schema_max_program_instances
is too small.Performance_schema_rwlock_classes_lost
How many rwlock instruments could not be loaded.
Performance_schema_rwlock_instances_lost
How many rwlock instrument instances could not be created.
Performance_schema_session_connect_attrs_longest_seen
In addition to the connection attribute size-limit check performed by the Performance Schema against the value of the
performance_schema_session_connect_attrs_size
system variable, the server performs a preliminary check, imposing a limit of 64KB on the aggregate size of connection attribute data it will accept. If a client attempts to send more than 64KB of attribute data, the server rejects the connection. Otherwise, the server considers the attribute buffer valid and tracks the size of the longest such buffer in thePerformance_schema_session_connect_attrs_longest_seen
status variable. If this value is larger thanperformance_schema_session_connect_attrs_size
, DBAs may wish to increase the latter value, or, alternatively, investigate which clients are sending large amounts of attribute data.For more information about connection attributes, see Section 26.12.9, “Performance Schema Connection Attribute Tables”.
Performance_schema_session_connect_attrs_lost
The number of connections for which connection attribute truncation has occurred. For a given connection, if the client sends connection attribute key-value pairs for which the aggregate size is larger than the reserved storage permitted by the value of the
performance_schema_session_connect_attrs_size
system variable, the Performance Schema truncates the attribute data and incrementsPerformance_schema_session_connect_attrs_lost
. If this value is nonzero, you may wish to setperformance_schema_session_connect_attrs_size
to a larger value.For more information about connection attributes, see Section 26.12.9, “Performance Schema Connection Attribute Tables”.
Performance_schema_socket_classes_lost
How many socket instruments could not be loaded.
Performance_schema_socket_instances_lost
How many socket instrument instances could not be created.
Performance_schema_stage_classes_lost
How many stage instruments could not be loaded.
Performance_schema_statement_classes_lost
How many statement instruments could not be loaded.
Performance_schema_table_handles_lost
How many table instrument instances could not be opened. This can be nonzero if the value of
performance_schema_max_table_handles
is too small.Performance_schema_table_instances_lost
How many table instrument instances could not be created.
Performance_schema_table_lock_stat_lost
The number of tables for which lock statistics were lost. This can be nonzero if the value of
performance_schema_max_table_lock_stat
is too small.Performance_schema_thread_classes_lost
How many thread instruments could not be loaded.
Performance_schema_thread_instances_lost
The number of thread instances that could not be instrumented in the
threads
table. This can be nonzero if the value ofperformance_schema_max_thread_instances
is too small.The number of times a row could not be added to the
users
table because it was full.
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-performance-schema-status-variables.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.