The Performance Schema implements several system variables that provide configuration information:
mysql> SHOW VARIABLES LIKE 'perf%';
+----------------------------------------------------------+-------+
| Variable_name | Value |
+----------------------------------------------------------+-------+
| performance_schema | ON |
| performance_schema_accounts_size | -1 |
| performance_schema_digests_size | 10000 |
| performance_schema_events_stages_history_long_size | 10000 |
| performance_schema_events_stages_history_size | 10 |
| performance_schema_events_statements_history_long_size | 10000 |
| performance_schema_events_statements_history_size | 10 |
| performance_schema_events_transactions_history_long_size | 10000 |
| performance_schema_events_transactions_history_size | 10 |
| performance_schema_events_waits_history_long_size | 10000 |
| performance_schema_events_waits_history_size | 10 |
| performance_schema_hosts_size | -1 |
| performance_schema_max_cond_classes | 80 |
| performance_schema_max_cond_instances | -1 |
| performance_schema_max_digest_length | 1024 |
| performance_schema_max_file_classes | 50 |
| performance_schema_max_file_handles | 32768 |
| performance_schema_max_file_instances | -1 |
| performance_schema_max_index_stat | -1 |
| performance_schema_max_memory_classes | 320 |
| performance_schema_max_metadata_locks | -1 |
| performance_schema_max_mutex_classes | 220 |
| performance_schema_max_mutex_instances | -1 |
| performance_schema_max_prepared_statements_instances | -1 |
| performance_schema_max_program_instances | -1 |
| performance_schema_max_rwlock_classes | 40 |
| performance_schema_max_rwlock_instances | -1 |
| performance_schema_max_socket_classes | 10 |
| performance_schema_max_socket_instances | -1 |
| performance_schema_max_sql_text_length | 1024 |
| performance_schema_max_stage_classes | 150 |
| performance_schema_max_statement_classes | 192 |
| performance_schema_max_statement_stack | 10 |
| performance_schema_max_table_handles | -1 |
| performance_schema_max_table_instances | -1 |
| performance_schema_max_table_lock_stat | -1 |
| performance_schema_max_thread_classes | 50 |
| performance_schema_max_thread_instances | -1 |
| performance_schema_session_connect_attrs_size | 512 |
| performance_schema_setup_actors_size | -1 |
| performance_schema_setup_objects_size | -1 |
| performance_schema_users_size | -1 |
+----------------------------------------------------------+-------+
Performance Schema system variables can be set at server startup on the command line or in option files, and many can be set at runtime. See Section 26.13, “Performance Schema Option and Variable Reference”.
The Performance Schema automatically sizes the values of several of its parameters at server startup if they are not set explicitly. For more information, see Section 26.3, “Performance Schema Startup Configuration”.
Performance Schema system variables have the following meanings:
-
Property Value Command-Line Format --performance-schema[={OFF|ON}]
System Variable performance_schema
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Boolean Default Value ON
The value of this variable is
ON
orOFF
to indicate whether the Performance Schema is enabled. By default, the value isON
. At server startup, you can specify this variable with no value or a value ofON
or 1 to enable it, or with a value ofOFF
or 0 to disable it.Even when the Performance Schema is disabled, it continues to populate the
global_variables
,session_variables
,global_status
, andsession_status
tables. This occurs as necessary to permit the results for theSHOW VARIABLES
andSHOW STATUS
statements to be drawn from those tables, depending on the setting of theshow_compatibility_56
system variable. The Performance Schema also populates some of the replication tables when disabled. performance_schema_accounts_size
Property Value Command-Line Format --performance-schema-accounts-size=#
System Variable performance_schema_accounts_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)Minimum Value -1
(signifies autoscaling; do not assign this literal value)Maximum Value 1048576
The number of rows in the
accounts
table. If this variable is 0, the Performance Schema does not maintain connection statistics in theaccounts
table or status variable information in thestatus_by_account
table.performance_schema_digests_size
Property Value Command-Line Format --performance-schema-digests-size=#
System Variable performance_schema_digests_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)Minimum Value -1
Maximum Value 1048576
The maximum number of rows in the
events_statements_summary_by_digest
table. If this maximum is exceeded such that a digest cannot be instrumented, the Performance Schema increments thePerformance_schema_digest_lost
status variable.For more information about statement digesting, see Section 26.10, “Performance Schema Statement Digests and Sampling”.
-
Property Value Command-Line Format --performance-schema-error-size=#
System Variable performance_schema_error_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value number of server error codes
Minimum Value 0
Maximum Value 1048576
The number of instrumented server error codes. The default value is the actual number of server error codes. Although the value can be set anywhere from 0 to its maximum, the intended use is to set it to either its default (to instrument all errors) or 0 (to instrument no errors).
Error information is aggregated in summary tables; see Section 26.12.16.11, “Error Summary Tables”. If an error occurs that is not instrumented, information for the occurrence is aggregated to the
NULL
row in each summary table; that is, to the row withERROR_NUMBER=0
,ERROR_NAME=NULL
, andSQLSTATE=NULL
. performance_schema_events_stages_history_long_size
Property Value Command-Line Format --performance-schema-events-stages-history-long-size=#
System Variable performance_schema_events_stages_history_long_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The number of rows in the
events_stages_history_long
table.performance_schema_events_stages_history_size
Property Value Command-Line Format --performance-schema-events-stages-history-size=#
System Variable performance_schema_events_stages_history_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The number of rows per thread in the
events_stages_history
table.performance_schema_events_statements_history_long_size
Property Value Command-Line Format --performance-schema-events-statements-history-long-size=#
System Variable performance_schema_events_statements_history_long_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The number of rows in the
events_statements_history_long
table.performance_schema_events_statements_history_size
Property Value Command-Line Format --performance-schema-events-statements-history-size=#
System Variable performance_schema_events_statements_history_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The number of rows per thread in the
events_statements_history
table.performance_schema_events_transactions_history_long_size
Property Value Command-Line Format --performance-schema-events-transactions-history-long-size=#
System Variable performance_schema_events_transactions_history_long_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The number of rows in the
events_transactions_history_long
table.performance_schema_events_transactions_history_size
Property Value Command-Line Format --performance-schema-events-transactions-history-size=#
System Variable performance_schema_events_transactions_history_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The number of rows per thread in the
events_transactions_history
table.performance_schema_events_waits_history_long_size
Property Value Command-Line Format --performance-schema-events-waits-history-long-size=#
System Variable performance_schema_events_waits_history_long_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The number of rows in the
events_waits_history_long
table.performance_schema_events_waits_history_size
Property Value Command-Line Format --performance-schema-events-waits-history-size=#
System Variable performance_schema_events_waits_history_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The number of rows per thread in the
events_waits_history
table.-
Property Value Command-Line Format --performance-schema-hosts-size=#
System Variable performance_schema_hosts_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)Minimum Value -1
(signifies autoscaling; do not assign this literal value)Maximum Value 1048576
The number of rows in the
hosts
table. If this variable is 0, the Performance Schema does not maintain connection statistics in thehosts
table or status variable information in thestatus_by_host
table. performance_schema_max_cond_classes
Property Value Command-Line Format --performance-schema-max-cond-classes=#
System Variable performance_schema_max_cond_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 80
Minimum Value 0
Maximum Value (>= 8.0.12) 1024
Maximum Value (<= 8.0.11) 256
The maximum number of condition instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_cond_instances
Property Value Command-Line Format --performance-schema-max-cond-instances=#
System Variable performance_schema_max_cond_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of instrumented condition objects. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_digest_length
Property Value Command-Line Format --performance-schema-max-digest-length=#
System Variable performance_schema_max_digest_length
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 1024
Minimum Value 0
Maximum Value 1048576
The maximum number of bytes of memory reserved per statement for computation of normalized statement digest values in the Performance Schema. This variable is related to
max_digest_length
; see the description of that variable in Section 5.1.8, “Server System Variables”.For more information about statement digesting, including considerations regarding memory use, see Section 26.10, “Performance Schema Statement Digests and Sampling”.
performance_schema_max_digest_sample_age
Property Value Command-Line Format --performance-schema-max-digest-sample-age=#
Introduced 8.0.3 System Variable performance_schema_max_digest_sample_age
Scope Global Dynamic Yes SET_VAR
Hint AppliesNo Type Integer Default Value 60
Minimum Value 0
Maximum Value 1048576
This variable affects statement sampling for the
events_statements_summary_by_digest
table. When a new table row is inserted, the statement that produced the row digest value is stored as the current sample statement associated with the digest. Thereafter, when the server sees other statements with the same digest value, it determines whether to use the new statement to replace the current sample statement (that is, whether to resample). Resampling policy is based on the comparative wait times of the current sample statement and new statement and, optionally, the age of the current sample statement:Resampling based on wait times: If the new statement wait time has a wait time greater than that of the current sample statement, it becomes the current sample statement.
Resampling based on age: If the
performance_schema_max_digest_sample_age
system variable has a value greater than zero and the current sample statement is more than that many seconds old, the current statement is considered “too old” and the new statement replaces it. This occurs even if the new statement wait time is less than that of the current sample statement.
For information about statement sampling, see Section 26.10, “Performance Schema Statement Digests and Sampling”.
performance_schema_max_file_classes
Property Value Command-Line Format --performance-schema-max-file-classes=#
System Variable performance_schema_max_file_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 80
Minimum Value 0
Maximum Value (>= 8.0.12) 1024
Maximum Value (<= 8.0.11) 256
The maximum number of file instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_file_handles
Property Value Command-Line Format --performance-schema-max-file-handles=#
System Variable performance_schema_max_file_handles
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 32768
The maximum number of opened file objects. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
The value of
performance_schema_max_file_handles
should be greater than the value ofopen_files_limit
:open_files_limit
affects the maximum number of open file handles the server can support andperformance_schema_max_file_handles
affects how many of these file handles can be instrumented.performance_schema_max_file_instances
Property Value Command-Line Format --performance-schema-max-file-instances=#
System Variable performance_schema_max_file_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of instrumented file objects. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_index_stat
Property Value Command-Line Format --performance-schema-max-index-stat=#
System Variable performance_schema_max_index_stat
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The maximum number of indexes for which the Performance Schema maintains statistics. If this maximum is exceeded such that index statistics are lost, the Performance Schema increments the
Performance_schema_index_stat_lost
status variable. The default value is autosized using the value ofperformance_schema_max_table_instances
.performance_schema_max_memory_classes
Property Value Command-Line Format --performance-schema-max-memory-classes=#
System Variable performance_schema_max_memory_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value (>= 8.0.1) 450
Default Value (8.0.0) 350
The maximum number of memory instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_metadata_locks
Property Value Command-Line Format --performance-schema-max-metadata-locks=#
System Variable performance_schema_max_metadata_locks
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of metadata lock instruments. This value controls the size of the
metadata_locks
table. If this maximum is exceeded such that a metadata lock cannot be instrumented, the Performance Schema increments thePerformance_schema_metadata_lock_lost
status variable.performance_schema_max_mutex_classes
Property Value Command-Line Format --performance-schema-max-mutex-classes=#
System Variable performance_schema_max_mutex_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value (>= 8.0.12) 300
Default Value (>= 8.0.3, <= 8.0.11) 250
Default Value (>= 8.0.1, <= 8.0.2) 220
Default Value (8.0.0) 200
Minimum Value 0
Maximum Value (>= 8.0.12) 1024
Maximum Value (<= 8.0.11) 256
The maximum number of mutex instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_mutex_instances
Property Value Command-Line Format --performance-schema-max-mutex-instances=#
System Variable performance_schema_max_mutex_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of instrumented mutex objects. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_prepared_statements_instances
Property Value Command-Line Format --performance-schema-max-prepared-statements-instances=#
System Variable performance_schema_max_prepared_statements_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of rows in the
prepared_statements_instances
table. If this maximum is exceeded such that a prepared statement cannot be instrumented, the Performance Schema increments thePerformance_schema_prepared_statements_lost
status variable. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.The default value of this variable is autosized based on the value of the
max_prepared_stmt_count
system variable.performance_schema_max_rwlock_classes
Property Value Command-Line Format --performance-schema-max-rwlock-classes=#
System Variable performance_schema_max_rwlock_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 40
Minimum Value 0
Maximum Value (>= 8.0.12) 1024
Maximum Value (<= 8.0.11) 256
The maximum number of rwlock instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_program_instances
Property Value Command-Line Format --performance-schema-max-program-instances=#
System Variable performance_schema_max_program_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of stored programs for which the Performance Schema maintains statistics. If this maximum is exceeded, the Performance Schema increments the
Performance_schema_program_lost
status variable. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.performance_schema_max_rwlock_instances
Property Value Command-Line Format --performance-schema-max-rwlock-instances=#
System Variable performance_schema_max_rwlock_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of instrumented rwlock objects. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_socket_classes
Property Value Command-Line Format --performance-schema-max-socket-classes=#
System Variable performance_schema_max_socket_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 10
Minimum Value 0
Maximum Value (>= 8.0.12) 1024
Maximum Value (<= 8.0.11) 256
The maximum number of socket instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_socket_instances
Property Value Command-Line Format --performance-schema-max-socket-instances=#
System Variable performance_schema_max_socket_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of instrumented socket objects. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_sql_text_length
Property Value Command-Line Format --performance-schema-max-sql-text-length=#
System Variable performance_schema_max_sql_text_length
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 1024
Minimum Value 0
Maximum Value 1048576
The maximum number of bytes used to store SQL statements. The value applies to storage required for these columns:
The
SQL_TEXT
column of theevents_statements_current
,events_statements_history
, andevents_statements_history_long
statement event tables.The
QUERY_SAMPLE_TEXT
column of theevents_statements_summary_by_digest
summary table.
Any bytes in excess of
performance_schema_max_sql_text_length
are discarded and do not appear in the column. Statements differing only after that many initial bytes are indistinguishable in the column.Decreasing the
performance_schema_max_sql_text_length
value reduces memory use but causes more statements to become indistinguishable if they differ only at the end. Increasing the value increases memory use but permits longer statements to be distinguished.performance_schema_max_stage_classes
Property Value Command-Line Format --performance-schema-max-stage-classes=#
System Variable performance_schema_max_stage_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 150
Minimum Value 0
Maximum Value (>= 8.0.12) 1024
Maximum Value (<= 8.0.11) 256
The maximum number of stage instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_statement_classes
Property Value Command-Line Format --performance-schema-max-statement-classes=#
System Variable performance_schema_max_statement_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The maximum number of statement instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
The default value is calculated at server build time based on the number of commands in the client/server protocol and the number of SQL statement types supported by the server.
This variable should not be changed, unless to set it to 0 to disable all statement instrumentation and save all memory associated with it. Setting the variable to nonzero values other than the default has no benefit; in particular, values larger than the default cause more memory to be allocated then is needed.
performance_schema_max_statement_stack
Property Value Command-Line Format --performance-schema-max-statement-stack=#
System Variable performance_schema_max_statement_stack
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value 10
The maximum depth of nested stored program calls for which the Performance Schema maintains statistics. When this maximum is exceeded, the Performance Schema increments the
Performance_schema_nested_statement_lost
status variable for each stored program statement executed.performance_schema_max_table_handles
Property Value Command-Line Format --performance-schema-max-table-handles=#
System Variable performance_schema_max_table_handles
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of opened table objects. This value controls the size of the
table_handles
table. If this maximum is exceeded such that a table handle cannot be instrumented, the Performance Schema increments thePerformance_schema_table_handles_lost
status variable. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.performance_schema_max_table_instances
Property Value Command-Line Format --performance-schema-max-table-instances=#
System Variable performance_schema_max_table_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of instrumented table objects. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_table_lock_stat
Property Value Command-Line Format --performance-schema-max-table-lock-stat=#
System Variable performance_schema_max_table_lock_stat
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)The maximum number of tables for which the Performance Schema maintains lock statistics. If this maximum is exceeded such that table lock statistics are lost, the Performance Schema increments the
Performance_schema_table_lock_stat_lost
status variable.performance_schema_max_thread_classes
Property Value Command-Line Format --performance-schema-max-thread-classes=#
System Variable performance_schema_max_thread_classes
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value (>= 8.0.3) 100
Default Value (<= 8.0.2) 50
Minimum Value 0
Maximum Value (>= 8.0.12) 1024
Maximum Value (<= 8.0.11) 256
The maximum number of thread instruments. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.
performance_schema_max_thread_instances
Property Value Command-Line Format --performance-schema-max-thread-instances=#
System Variable performance_schema_max_thread_instances
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The maximum number of instrumented thread objects. The value controls the size of the
threads
table. If this maximum is exceeded such that a thread cannot be instrumented, the Performance Schema increments thePerformance_schema_thread_instances_lost
status variable. For information about how to set and use this variable, see Section 26.7, “Performance Schema Status Monitoring”.The
max_connections
system variable affects how many threads can run in the server.performance_schema_max_thread_instances
affects how many of these running threads can be instrumented.The
variables_by_thread
andstatus_by_thread
tables contain system and status variable information only about foreground threads. If not all threads are instrumented by the Performance Schema, this table will miss some rows. In this case, thePerformance_schema_thread_instances_lost
status variable will be greater than zero.performance_schema_session_connect_attrs_size
Property Value Command-Line Format --performance-schema-session-connect-attrs-size=#
System Variable performance_schema_session_connect_attrs_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autosizing; do not assign this literal value)Minimum Value -1
Maximum Value 1048576
The amount of preallocated memory per thread reserved to hold connection attribute key-value pairs. If the aggregate size of connection attribute data sent by a client is larger than this amount, the Performance Schema truncates the attribute data, increments the
Performance_schema_session_connect_attrs_lost
status variable, and writes a message to the error log indicating that truncation occurred if thelog_error_verbosity
system variable is greater than 1. A_truncated
attribute is also added to the session attributes with a value indicating how many bytes were lost, if the attribute buffer has sufficient space. This enables the Performance Schema to expose per-connection truncation information in the connection attribute tables. This information can be examined without having to check the error log.The default value of
performance_schema_session_connect_attrs_size
is autosized at server startup. This value may be small, so if truncation occurs (Performance_schema_session_connect_attrs_lost
becomes nonzero), you may wish to setperformance_schema_session_connect_attrs_size
explicitly to a larger value.Although the maximum permitted
performance_schema_session_connect_attrs_size
value is 1MB, the effective maximum is 64KB because the server imposes 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. For more information, see Section 26.12.9, “Performance Schema Connection Attribute Tables”.performance_schema_setup_actors_size
Property Value Command-Line Format --performance-schema-setup-actors-size=#
System Variable performance_schema_setup_actors_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The number of rows in the
setup_actors
table.performance_schema_setup_objects_size
Property Value Command-Line Format --performance-schema-setup-objects-size=#
System Variable performance_schema_setup_objects_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)The number of rows in the
setup_objects
table.-
Property Value Command-Line Format --performance-schema-users-size=#
System Variable performance_schema_users_size
Scope Global Dynamic No SET_VAR
Hint AppliesNo Type Integer Default Value -1
(signifies autoscaling; do not assign this literal value)Minimum Value -1
(signifies autoscaling; do not assign this literal value)Maximum Value 1048576
The number of rows in the
users
table. If this variable is 0, the Performance Schema does not maintain connection statistics in theusers
table or status variable information in thestatus_by_user
table.