The MySQL server maintains many system variables that configure
its operation. Each system variable has a default value. System
variables can be set at server startup using options on the
command line or in an option file. Most of them can be changed
dynamically at runtime using the
SET
statement, which enables you to modify operation of the server
without having to stop and restart it. You can also use system
variable values in expressions.
Setting a global system variable runtime value normally requires
the SYSTEM_VARIABLES_ADMIN
privilege (or the deprecated SUPER
privilege). Setting a session system runtime variable value
normally requires no special privileges and can be done by any
user, although there are exceptions. For more information, see
Section 5.1.9.1, “System Variable Privileges”
There are several ways to see the names and values of system variables:
To see the values that a server will use based on its compiled-in defaults and any option files that it reads, use this command:
mysqld --verbose --helpTo see the values that a server will use based only on its compiled-in defaults, ignoring the settings in any option files, use this command:
mysqld --no-defaults --verbose --helpTo see the current values used by a running server, use the
SHOW VARIABLESstatement or the Performance Schema system variable tables. See Section 26.12.14, “Performance Schema System Variable Tables”.
This section provides a description of each system variable. For a system variable summary table, see Section 5.1.5, “Server System Variable Reference”. For more information about manipulation of system variables, see Section 5.1.9, “Using System Variables”.
For additional system variable information, see these sections:
Section 5.1.9, “Using System Variables”, discusses the syntax for setting and displaying system variable values.
Section 5.1.9.2, “Dynamic System Variables”, lists the variables that can be set at runtime.
Information on tuning system variables can be found in Section 5.1.1, “Configuring the Server”.
Section 15.14, “InnoDB Startup Options and System Variables”, lists
InnoDBsystem variables.Section 22.3.3.9.2, “NDB Cluster System Variables”, lists system variables which are specific to NDB Cluster.
For information on server system variables specific to replication, see Section 17.1.6, “Replication and Binary Logging Options and Variables”.
Some of the following variable descriptions refer to
“enabling” or “disabling” a variable.
These variables can be enabled with the
SET
statement by setting them to ON or
1, or disabled by setting them to
OFF or 0. Boolean
variables can be set at startup to the values
ON, TRUE,
OFF, and FALSE (not case
sensitive), as well as 1 and
0. See Section 4.2.2.4, “Program Option Modifiers”.
Some system variables control the size of buffers or caches. For a given buffer, the server might need to allocate internal data structures. These structures typically are allocated from the total memory allocated to the buffer, and the amount of space required might be platform dependent. This means that when you assign a value to a system variable that controls a buffer size, the amount of space actually available might differ from the value assigned. In some cases, the amount might be less than the value assigned. It is also possible that the server will adjust a value upward. For example, if you assign a value of 0 to a variable for which the minimal value is 1024, the server will set the value to 1024.
Values for buffer sizes, lengths, and stack sizes are given in bytes unless otherwise specified.
Some system variables take file name values. Unless otherwise
specified, the default file location is the data directory if the
value is a relative path name. To specify the location explicitly,
use an absolute path name. Suppose that the data directory is
/var/mysql/data. If a file-valued variable is
given as a relative path name, it will be located under
/var/mysql/data. If the value is an absolute
path name, its location is as given by the path name.
-
Property Value Command-Line Format --activate-all-roles-on-login[={OFF|ON}]System Variable activate_all_roles_on_loginScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFWhether to enable automatic activation of all granted roles when users log in to the server:
If
activate_all_roles_on_loginis enabled, the server activates all roles granted to each account at login time. This takes precedence over default roles specified withSET DEFAULT ROLE.If
activate_all_roles_on_loginis disabled, the server activates the default roles specified withSET DEFAULT ROLE, if any, at login time.
Granted roles include those granted explicitly to the user and those named in the
mandatory_rolessystem variable value.activate_all_roles_on_loginapplies only at login time, and at the beginning of execution for stored programs and views that execute in definer context. To change the active roles within a session, useSET ROLE. To change the active roles for a stored program, the program body should executeSET ROLE. -
Property Value Command-Line Format --admin-address=addrIntroduced 8.0.14 System Variable admin_addressScope Global Dynamic No SET_VARHint AppliesNo Type String The IP address on which to listen for TCP/IP connections on the administrative network interface (see Section 5.1.12.1, “Connection Interfaces”). There is no default
admin_addressvalue. If this variable is not specified at startup, the server maintains no administrative interface. The server also has abind_addresssystem variable for configuring regular (nonadministrative) client TCP/IP connections. See Section 5.1.12.1, “Connection Interfaces”.If
admin_addressis specified, its value must satisfy these requirements:The value must be a single IPv4 address, IPv6 address, or host name.
The value cannot specify a wildcard address format (
*,0.0.0.0, or::).
An IP address can be specified as an IPv4 or IPv6 address. If the value is a host name, the server resolves the name to an IP address and binds to that address. If a host name resolves to multiple IP addresses, the server uses the first IPv4 address if there are any, or the first IPv6 address otherwise.
The server treats different types of addresses as follows:
If the address is an IPv4-mapped address, the server accepts TCP/IP connections for that address, in either IPv4 or IPv6 format. For example, if the server is bound to
::ffff:127.0.0.1, clients can connect using--host=127.0.0.1or--host=::ffff:127.0.0.1.If the address is a “regular” IPv4 or IPv6 address (such as
127.0.0.1or::1), the server accepts TCP/IP connections only for that IPv4 or IPv6 address.
If binding to the address fails, the server produces an error and does not start.
The
admin_addresssystem variable is similar to thebind_addresssystem variable that binds the server to an address for ordinary client connections, but with these differences:bind_addresspermits multiple addresses.admin_addresspermits a single address.bind_addresspermits wildcard addresses.admin_addressdoes not.
-
Property Value Command-Line Format --admin-port=port_numIntroduced 8.0.14 System Variable admin_portScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 33062Minimum Value 0Maximum Value 65535The TCP/IP port number to use for connections on the administrative network interface (see Section 5.1.12.1, “Connection Interfaces”). Setting this variable to 0 causes the default value to be used.
Setting
admin_porthas no effect ifadmin_addressis not specified because in that case the server maintains no administrative network interface. -
Property Value Command-Line Format --admin-ssl-ca=file_nameIntroduced 8.0.21 System Variable admin_ssl_caScope Global Dynamic Yes SET_VARHint AppliesNo Type File name Default Value NULLThe
admin_ssl_casystem variable is likessl_ca, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. -
Property Value Command-Line Format --admin-ssl-capath=dir_nameIntroduced 8.0.21 System Variable admin_ssl_capathScope Global Dynamic Yes SET_VARHint AppliesNo Type Directory name Default Value NULLThe
admin_ssl_capathsystem variable is likessl_capath, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. -
Property Value Command-Line Format --admin-ssl-cert=file_nameIntroduced 8.0.21 System Variable admin_ssl_certScope Global Dynamic Yes SET_VARHint AppliesNo Type File name Default Value NULLThe
admin_ssl_certsystem variable is likessl_cert, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. -
Property Value Command-Line Format --admin-ssl-cipher=nameIntroduced 8.0.21 System Variable admin_ssl_cipherScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value NULLThe
admin_ssl_ciphersystem variable is likessl_cipher, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. -
Property Value Command-Line Format --admin-ssl-crl=file_nameIntroduced 8.0.21 System Variable admin_ssl_crlScope Global Dynamic Yes SET_VARHint AppliesNo Type File name Default Value NULLThe
admin_ssl_crlsystem variable is likessl_crl, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. -
Property Value Command-Line Format --admin-ssl-crlpath=dir_nameIntroduced 8.0.21 System Variable admin_ssl_crlpathScope Global Dynamic Yes SET_VARHint AppliesNo Type Directory name Default Value NULLThe
admin_ssl_crlpathsystem variable is likessl_crlpath, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. -
Property Value Command-Line Format --admin-ssl-key=file_nameIntroduced 8.0.21 System Variable admin_ssl_keyScope Global Dynamic Yes SET_VARHint AppliesNo Type File name Default Value NULLThe
admin_ssl_keysystem variable is likessl_key, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. -
Property Value Command-Line Format --admin-tls-ciphersuites=ciphersuite_listIntroduced 8.0.21 System Variable admin_tls_ciphersuitesScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value NULLThe
admin_tls_ciphersuitessystem variable is liketls_ciphersuites, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. -
Property Value Command-Line Format --admin-tls-version=protocol_listIntroduced 8.0.21 System Variable admin_tls_versionScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value TLSv1,TLSv1.1,TLSv1.2,TLSv1.3(OpenSSL 1.1.1 and higher)TLSv1,TLSv1.1,TLSv1.2(otherwise)The
admin_tls_versionsystem variable is liketls_version, except that it applies to the administrative connection interface rather than the main connection interface. For information about configuring encryption support for the administrative interface, see Administrative Interface Support for Encrypted Connections. authentication_windows_log_levelProperty Value Command-Line Format --authentication-windows-log-level=#System Variable authentication_windows_log_levelScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 2Minimum Value 0Maximum Value 4This variable is available only if the
authentication_windowsWindows authentication plugin is enabled and debugging code is enabled. See Section 6.4.1.6, “Windows Pluggable Authentication”.This variable sets the logging level for the Windows authentication plugin. The following table shows the permitted values.
Value Description 0 No logging 1 Log only error messages 2 Log level 1 messages and warning messages 3 Log level 2 messages and information notes 4 Log level 3 messages and debug messages authentication_windows_use_principal_nameProperty Value Command-Line Format --authentication-windows-use-principal-name[={OFF|ON}]System Variable authentication_windows_use_principal_nameScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value ONThis variable is available only if the
authentication_windowsWindows authentication plugin is enabled. See Section 6.4.1.6, “Windows Pluggable Authentication”.A client that authenticates using the
InitSecurityContext()function should provide a string identifying the service to which it connects (targetName). MySQL uses the principal name (UPN) of the account under which the server is running. The UPN has the formand need not be registered anywhere to be used. This UPN is sent by the server at the beginning of authentication handshake.user_id@computer_nameThis variable controls whether the server sends the UPN in the initial challenge. By default, the variable is enabled. For security reasons, it can be disabled to avoid sending the server's account name to a client as cleartext. If the variable is disabled, the server always sends a
0x00byte in the first challenge, the client does not specifytargetName, and as a result, NTLM authentication is used.If the server fails to obtain its UPN (which will happen primarily in environments that do not support Kerberos authentication), the UPN is not sent by the server and NTLM authentication is used.
-
Property Value Command-Line Format --autocommit[={OFF|ON}]System Variable autocommitScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONThe autocommit mode. If set to 1, all changes to a table take effect immediately. If set to 0, you must use
COMMITto accept a transaction orROLLBACKto cancel it. Ifautocommitis 0 and you change it to 1, MySQL performs an automaticCOMMITof any open transaction. Another way to begin a transaction is to use aSTART TRANSACTIONorBEGINstatement. See Section 13.3.1, “START TRANSACTION, COMMIT, and ROLLBACK Statements”.By default, client connections begin with
autocommitset to 1. To cause clients to begin with a default of 0, set the globalautocommitvalue by starting the server with the--autocommit=0option. To set the variable using an option file, include these lines:[mysqld] autocommit=0 -
Property Value Command-Line Format --automatic-sp-privileges[={OFF|ON}]System Variable automatic_sp_privilegesScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONWhen this variable has a value of 1 (the default), the server automatically grants the
EXECUTEandALTER ROUTINEprivileges to the creator of a stored routine, if the user cannot already execute and alter or drop the routine. (TheALTER ROUTINEprivilege is required to drop the routine.) The server also automatically drops those privileges from the creator when the routine is dropped. Ifautomatic_sp_privilegesis 0, the server does not automatically add or drop these privileges.The creator of a routine is the account used to execute the
CREATEstatement for it. This might not be the same as the account named as theDEFINERin the routine definition.If you start mysqld with
--skip-new,automatic_sp_privilegesis set toOFF.See also Section 24.2.2, “Stored Routines and MySQL Privileges”.
-
Property Value Command-Line Format --auto-generate-certs[={OFF|ON}]System Variable auto_generate_certsScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value ONThis variable controls whether the server autogenerates SSL key and certificate files in the data directory, if they do not already exist.
At startup, the server automatically generates server-side and client-side SSL certificate and key files in the data directory if the
auto_generate_certssystem variable is enabled, no SSL options other than--sslare specified, and the server-side SSL files are missing from the data directory. These files enable secure client connections using SSL; see Section 6.3.1, “Configuring MySQL to Use Encrypted Connections”.For more information about SSL file autogeneration, including file names and characteristics, see Section 6.3.3.1, “Creating SSL and RSA Certificates and Keys using MySQL”
The
sha256_password_auto_generate_rsa_keysandcaching_sha2_password_auto_generate_rsa_keyssystem variables are related but control autogeneration of RSA key-pair files needed for secure password exchange using RSA over unencypted connections. -
Property Value Command-Line Format --avoid-temporal-upgrade[={OFF|ON}]Deprecated Yes System Variable avoid_temporal_upgradeScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFThis variable controls whether
ALTER TABLEimplicitly upgrades temporal columns found to be in pre-5.6.4 format (TIME,DATETIME, andTIMESTAMPcolumns without support for fractional seconds precision). Upgrading such columns requires a table rebuild, which prevents any use of fast alterations that might otherwise apply to the operation to be performed.This variable is disabled by default. Enabling it causes
ALTER TABLEnot to rebuild temporal columns and thereby be able to take advantage of possible fast alterations.This variable is deprecated and will be removed in a future MySQL release.
-
Property Value Command-Line Format --back-log=#System Variable back_logScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value -1(signifies autosizing; do not assign this literal value)Minimum Value 1Maximum Value 65535The number of outstanding connection requests MySQL can have. This comes into play when the main MySQL thread gets very many connection requests in a very short time. It then takes some time (although very little) for the main thread to check the connection and start a new thread. The
back_logvalue indicates how many requests can be stacked during this short time before MySQL momentarily stops answering new requests. You need to increase this only if you expect a large number of connections in a short period of time.In other words, this value is the size of the listen queue for incoming TCP/IP connections. Your operating system has its own limit on the size of this queue. The manual page for the Unix
listen()system call should have more details. Check your OS documentation for the maximum value for this variable.back_logcannot be set higher than your operating system limit.The default value is the value of
max_connections, which enables the permitted backlog to adjust to the maximum permitted number of connections. -
Property Value Command-Line Format --basedir=dir_nameSystem Variable basedirScope Global Dynamic No SET_VARHint AppliesNo Type Directory name Default Value parent of mysqld installation directoryThe path to the MySQL installation base directory.
-
Property Value Command-Line Format --big-tables[={OFF|ON}]System Variable big_tablesScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFIf enabled, the server stores all temporary tables on disk rather than in memory. This prevents most
The tableerrors fortbl_nameis fullSELECToperations that require a large temporary table, but also slows down queries for which in-memory tables would suffice.The default value for new connection is
OFF(use in-memory temporary tables). Normally, it should never be necessary to enable this variable. When in-memory internal temporary tables are managed by theTempTablestorage engine (the default), and the maximum amount of memory that can be occupied by theTempTablestorage engine is exceeded, theTempTablestorage engine starts storing data to temporary files on disk. When in-memory temporary tables are managed by theMEMORYstorage engine, in-memory tables are automatically converted to disk-based tables as required. For more information, see Section 8.4.4, “Internal Temporary Table Use in MySQL”. -
Property Value Command-Line Format --bind-address=addrSystem Variable bind_addressScope Global Dynamic No SET_VARHint AppliesNo Type String Default Value *The MySQL server listens on one or more network sockets for TCP/IP connections. Each socket is bound to one address, but it is possible for an address to map onto multiple network interfaces. To specify how the server should listen for TCP/IP connections, set the
bind_addresssystem variable at server startup. The server also has anadmin_addresssystem variable that enables administrative connections on a dedicated interface. See Section 5.1.12.1, “Connection Interfaces”.If
bind_addressis specified, its value must satisfy these requirements:Prior to MySQL 8.0.13,
bind_addressaccepts a single address value, which may specify a single non-wildcard IP address or host name, or one of the wildcard address formats that permit listening on multiple network interfaces (*,0.0.0.0, or::).As of MySQL 8.0.13,
bind_addressaccepts a single value as just described, or a list of comma-separated values. When the variable names a list of multiple values, each value must specify a single non-wildcard IP address or host name; none can specify a wildcard address format (*,0.0.0.0, or::).
IP addresses can be specified as IPv4 or IPv6 addresses. For any value that is a host name, the server resolves the name to an IP address and binds to that address. If a host name resolves to multiple IP addresses, the server uses the first IPv4 address if there are any, or the first IPv6 address otherwise.
The server treats different types of addresses as follows:
If the address is
*, the server accepts TCP/IP connections on all server host IPv4 interfaces, and, if the server host supports IPv6, on all IPv6 interfaces. Use this address to permit both IPv4 and IPv6 connections on all server interfaces. This value is the default. If the option specifies a list of multiple values, this value is not permitted.If the address is
0.0.0.0, the server accepts TCP/IP connections on all server host IPv4 interfaces. If the option specifies a list of multiple values, this value is not permitted.If the address is
::, the server accepts TCP/IP connections on all server host IPv4 and IPv6 interfaces. If the option specifies a list of multiple values, this value is not permitted.If the address is an IPv4-mapped address, the server accepts TCP/IP connections for that address, in either IPv4 or IPv6 format. For example, if the server is bound to
::ffff:127.0.0.1, clients can connect using--host=127.0.0.1or--host=::ffff:127.0.0.1.If the address is a “regular” IPv4 or IPv6 address (such as
127.0.0.1or::1), the server accepts TCP/IP connections only for that IPv4 or IPv6 address.
If binding to any address fails, the server produces an error and does not start.
Examples:
bind_address=*The server listens on all IPv4 or IPv6 addresses, as specified by the
*wildcard.bind_address=198.51.100.20The server listens only on the
198.51.100.20IPv4 address.bind_address=198.51.100.20,2001:db8:0:f101::1The server listens on the
198.51.100.20IPv4 address and the2001:db8:0:f101::1IPv6 address.bind_address=198.51.100.20,*This produces an error because wildcard addresses are not permitted when
bind_addressnames a list of multiple values.
When
bind_addressnames a single value (wildcard or non-wildcard), the server listens on a single socket, which for a wildcard address may be bound to multiple network interfaces. Whenbind_addressnames a list of multiple values, the server listens on one socket per value, with each socket bound to a single network interface. The number of sockets is linear with the number of values specified. Depending on operating system connection-acceptance efficiency, long value lists might incur a performance penalty for accepting TCP/IP connections.Because file descriptors are allocated for listening sockets, it may be necessary to increase the
open_files_limitsystem variable.If you intend to bind the server to a specific address, be sure that the
mysql.usersystem table contains an account with administrative privileges that you can use to connect to that address. Otherwise, you will not be able to shut down the server. For example, if you bind the server to*, you can connect to it using all existing accounts. But if you bind the server to::1, it accepts connections only on that address. In that case, first make sure that the'root'@'::1'account is present in themysql.usertable so you can still connect to the server to shut it down. -
Property Value Command-Line Format --block-encryption-mode=#System Variable block_encryption_modeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value aes-128-ecbThis variable controls the block encryption mode for block-based algorithms such as AES. It affects encryption for
AES_ENCRYPT()andAES_DECRYPT().block_encryption_modetakes a value inaes-format, wherekeylen-modekeylenis the key length in bits andmodeis the encryption mode. The value is not case-sensitive. Permittedkeylenvalues are 128, 192, and 256. Permittedmodevalues areECB,CBC,CFB1,CFB8,CFB128, andOFB.For example, this statement causes the AES encryption functions to use a key length of 256 bits and the CBC mode:
SET block_encryption_mode = 'aes-256-cbc';An error occurs for attempts to set
block_encryption_modeto a value containing an unsupported key length or a mode that the SSL library does not support. -
Property Value Command-Line Format --bulk-insert-buffer-size=#System Variable bulk_insert_buffer_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 8388608Minimum Value 0Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295MyISAMuses a special tree-like cache to make bulk inserts faster forINSERT ... SELECT,INSERT ... VALUES (...), (...), ..., andLOAD DATAwhen adding data to nonempty tables. This variable limits the size of the cache tree in bytes per thread. Setting it to 0 disables this optimization. The default value is 8MB.As of MySQL 8.0.14, setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
caching_sha2_password_auto_generate_rsa_keysProperty Value Command-Line Format --caching-sha2-password-auto-generate-rsa-keys[={OFF|ON}]System Variable caching_sha2_password_auto_generate_rsa_keysScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value ONThe server uses this variable to determine whether to autogenerate RSA private/public key-pair files in the data directory if they do not already exist.
At startup, the server automatically generates RSA private/public key-pair files in the data directory if all of these conditions are true: The
sha256_password_auto_generate_rsa_keysorcaching_sha2_password_auto_generate_rsa_keyssystem variable is enabled; no RSA options are specified; the RSA files are missing from the data directory. These key-pair files enable secure password exchange using RSA over unencrypted connections for accounts authenticated by thesha256_passwordorcaching_sha2_passwordplugin; see Section 6.4.1.3, “SHA-256 Pluggable Authentication”, and Section 6.4.1.2, “Caching SHA-2 Pluggable Authentication”.For more information about RSA file autogeneration, including file names and characteristics, see Section 6.3.3.1, “Creating SSL and RSA Certificates and Keys using MySQL”
The
auto_generate_certssystem variable is related but controls autogeneration of SSL certificate and key files needed for secure connections using SSL.caching_sha2_password_private_key_pathProperty Value Command-Line Format --caching-sha2-password-private-key-path=file_nameSystem Variable caching_sha2_password_private_key_pathScope Global Dynamic No SET_VARHint AppliesNo Type File name Default Value private_key.pemThis variable specifies the path name of the RSA private key file for the
caching_sha2_passwordauthentication plugin. If the file is named as a relative path, it is interpreted relative to the server data directory. The file must be in PEM format.ImportantBecause this file stores a private key, its access mode should be restricted so that only the MySQL server can read it.
For information about
caching_sha2_password, see Section 6.4.1.2, “Caching SHA-2 Pluggable Authentication”.caching_sha2_password_public_key_pathProperty Value Command-Line Format --caching-sha2-password-public-key-path=file_nameSystem Variable caching_sha2_password_public_key_pathScope Global Dynamic No SET_VARHint AppliesNo Type File name Default Value public_key.pemThis variable specifies the path name of the RSA public key file for the
caching_sha2_passwordauthentication plugin. If the file is named as a relative path, it is interpreted relative to the server data directory. The file must be in PEM format.For information about
caching_sha2_password, including information about how clients request the RSA public key, see Section 6.4.1.2, “Caching SHA-2 Pluggable Authentication”.-
Property Value System Variable character_set_clientScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value utf8mb4The character set for statements that arrive from the client. The session value of this variable is set using the character set requested by the client when the client connects to the server. (Many clients support a
--default-character-setoption to enable this character set to be specified explicitly. See also Section 10.4, “Connection Character Sets and Collations”.) The global value of the variable is used to set the session value in cases when the client-requested value is unknown or not available, or the server is configured to ignore client requests:The client requests a character set not known to the server. For example, a Japanese-enabled client requests
sjiswhen connecting to a server not configured withsjissupport.The client is from a version of MySQL older than MySQL 4.1, and thus does not request a character set.
mysqld was started with the
--skip-character-set-client-handshakeoption, which causes it to ignore client character set configuration. This reproduces MySQL 4.0 behavior and is useful should you wish to upgrade the server without upgrading all the clients.
Some character sets cannot be used as the client character set. Attempting to use them as the
character_set_clientvalue produces an error. See Impermissible Client Character Sets. -
Property Value System Variable character_set_connectionScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value utf8mb4The character set used for literals specified without a character set introducer and for number-to-string conversion. For information about introducers, see Section 10.3.8, “Character Set Introducers”.
-
Property Value System Variable character_set_databaseScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value utf8mb4Footnote This option is dynamic, but only the server should set this information. You should not set the value of this variable manually. The character set used by the default database. The server sets this variable whenever the default database changes. If there is no default database, the variable has the same value as
character_set_server.As of MySQL 8.0.14, setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
The global
character_set_databaseandcollation_databasesystem variables are deprecated and will be removed in a future version of MySQL.Assigning a value to the session
character_set_databaseandcollation_databasesystem variables is deprecated and assignments produce a warning. The session variables will become read only in a future version of MySQL and assignments will produce an error. It will remain possible to access the session variables to determine the database character set and collation for the default database. -
Property Value Command-Line Format --character-set-filesystem=nameSystem Variable character_set_filesystemScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value binaryThe file system character set. This variable is used to interpret string literals that refer to file names, such as in the
LOAD DATAandSELECT ... INTO OUTFILEstatements and theLOAD_FILE()function. Such file names are converted fromcharacter_set_clienttocharacter_set_filesystembefore the file opening attempt occurs. The default value isbinary, which means that no conversion occurs. For systems on which multibyte file names are permitted, a different value may be more appropriate. For example, if the system represents file names using UTF-8, setcharacter_set_filesystemto'utf8mb4'.As of MySQL 8.0.14, setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
-
Property Value System Variable character_set_resultsScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value utf8mb4The character set used for returning query results to the client. This includes result data such as column values, result metadata such as column names, and error messages.
-
Property Value Command-Line Format --character-set-server=nameSystem Variable character_set_serverScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value utf8mb4The servers default character set. See Section 10.15, “Character Set Configuration”. If you set this variable, you should also set
collation_serverto specify the collation for the character set. -
Property Value System Variable character_set_systemScope Global Dynamic No SET_VARHint AppliesNo Type String Default Value utf8The character set used by the server for storing identifiers. The value is always
utf8. -
Property Value Command-Line Format --character-sets-dir=dir_nameSystem Variable character_sets_dirScope Global Dynamic No SET_VARHint AppliesNo Type Directory name The directory where character sets are installed. See Section 10.15, “Character Set Configuration”.
-
Property Value Command-Line Format --check-proxy-users[={OFF|ON}]System Variable check_proxy_usersScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFSome authentication plugins implement proxy user mapping for themselves (for example, the PAM and Windows authentication plugins). Other authentication plugins do not support proxy users by default. Of these, some can request that the MySQL server itself map proxy users according to granted proxy privileges:
mysql_native_password,sha256_password.If the
check_proxy_userssystem variable is enabled, the server performs proxy user mapping for any authentication plugins that make such a request. However, it may also be necessary to enable plugin-specific system variables to take advantage of server proxy user mapping support:For the
mysql_native_passwordplugin, enablemysql_native_password_proxy_users.For the
sha256_passwordplugin, enablesha256_password_proxy_users.
For information about user proxying, see Section 6.2.18, “Proxy Users”.
-
Property Value System Variable collation_connectionScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String The collation of the connection character set.
collation_connectionis important for comparisons of literal strings. For comparisons of strings with column values,collation_connectiondoes not matter because columns have their own collation, which has a higher collation precedence (see Section 10.8.4, “Collation Coercibility in Expressions”). -
Property Value System Variable collation_databaseScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value utf8mb4_0900_ai_ciFootnote This option is dynamic, but only the server should set this information. You should not set the value of this variable manually. The collation used by the default database. The server sets this variable whenever the default database changes. If there is no default database, the variable has the same value as
collation_server.As of MySQL 8.0.18, setting the session value of this system variable is no longer a restricted operation.
The global
character_set_databaseandcollation_databasesystem variables are deprecated and will be removed in a future version of MySQL.Assigning a value to the session
character_set_databaseandcollation_databasesystem variables is deprecated and assignments produce a warning. The session variables will become read only in a future version of MySQL and assignments will produce an error. It will remain possible to access the session variables to determine the database character set and collation for the default database. -
Property Value Command-Line Format --collation-server=nameSystem Variable collation_serverScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value utf8mb4_0900_ai_ciThe server's default collation. See Section 10.15, “Character Set Configuration”.
-
Property Value Command-Line Format --completion-type=#System Variable completion_typeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value NO_CHAINValid Values NO_CHAINCHAINRELEASE012The transaction completion type. This variable can take the values shown in the following table. The variable can be assigned using either the name values or corresponding integer values.
Value Description NO_CHAIN(or 0)COMMITandROLLBACKare unaffected. This is the default value.CHAIN(or 1)COMMITandROLLBACKare equivalent toCOMMIT AND CHAINandROLLBACK AND CHAIN, respectively. (A new transaction starts immediately with the same isolation level as the just-terminated transaction.)RELEASE(or 2)COMMITandROLLBACKare equivalent toCOMMIT RELEASEandROLLBACK RELEASE, respectively. (The server disconnects after terminating the transaction.)completion_typeaffects transactions that begin withSTART TRANSACTIONorBEGINand end withCOMMITorROLLBACK. It does not apply to implicit commits resulting from execution of the statements listed in Section 13.3.3, “Statements That Cause an Implicit Commit”. It also does not apply forXA COMMIT,XA ROLLBACK, or whenautocommit=1. -
Property Value Command-Line Format --concurrent-insert[=value]System Variable concurrent_insertScope Global Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value AUTOValid Values NEVERAUTOALWAYS012If
AUTO(the default), MySQL permitsINSERTandSELECTstatements to run concurrently forMyISAMtables that have no free blocks in the middle of the data file.This variable can take the values shown in the following table. The variable can be assigned using either the name values or corresponding integer values.
Value Description NEVER(or 0)Disables concurrent inserts AUTO(or 1)(Default) Enables concurrent insert for MyISAMtables that do not have holesALWAYS(or 2)Enables concurrent inserts for all MyISAMtables, even those that have holes. For a table with a hole, new rows are inserted at the end of the table if it is in use by another thread. Otherwise, MySQL acquires a normal write lock and inserts the row into the hole.If you start mysqld with
--skip-new,concurrent_insertis set toNEVER.See also Section 8.11.3, “Concurrent Inserts”.
-
Property Value Command-Line Format --connect-timeout=#System Variable connect_timeoutScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 10Minimum Value 2Maximum Value 31536000The number of seconds that the mysqld server waits for a connect packet before responding with
Bad handshake. The default value is 10 seconds.Increasing the
connect_timeoutvalue might help if clients frequently encounter errors of the formLost connection to MySQL server at '.XXX', system error:errno -
Property Value System Variable core_fileScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value OFFWhether to write a core file if the server crashes. This variable is set by the
--core-fileoption. -
Property Value Command-Line Format --create-admin-listener-thread[={OFF|ON}]Introduced 8.0.14 System Variable create_admin_listener_threadScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value OFFWhether to use a dedicated listening thread for client connections on the administrative network interface (see Section 5.1.12.1, “Connection Interfaces”). The default is
OFF; that is, the manager thread for ordinary connections on the main interface also handles connections for the administrative interface.Depending on factors such as platform type and workload, you may find one setting for this variable yields better performance than the other setting.
Setting
create_admin_listener_threadhas no effect ifadmin_addressis not specified because in that case the server maintains no administrative network interface. -
Property Value Command-Line Format --cte-max-recursion-depth=#System Variable cte_max_recursion_depthScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 1000Minimum Value 0Maximum Value 4294967295The common table expression (CTE) maximum recursion depth. The server terminates execution of any CTE that recurses more levels than the value of this variable. For more information, see Limiting Common Table Expression Recursion.
-
Property Value Command-Line Format --datadir=dir_nameSystem Variable datadirScope Global Dynamic No SET_VARHint AppliesNo Type Directory name The path to the MySQL server data directory. Relative paths are resolved with respect to the current directory. If the server will be started automatically (that is, in contexts for which you cannot assume what the current directory will be), it is best to specify the
datadirvalue as an absolute path. -
Property Value Command-Line Format --debug[=debug_options]System Variable debugScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value (Windows) d:t:i:O,\mysqld.traceDefault Value (Unix) d:t:i:o,/tmp/mysqld.traceThis variable indicates the current debugging settings. It is available only for servers built with debugging support. The initial value comes from the value of instances of the
--debugoption given at server startup. The global and session values may be set at runtime.Setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
Assigning a value that begins with
+or-cause the value to added to or subtracted from the current value:mysql> SET debug = 'T'; mysql> SELECT @@debug; +---------+ | @@debug | +---------+ | T | +---------+ mysql> SET debug = '+P'; mysql> SELECT @@debug; +---------+ | @@debug | +---------+ | P:T | +---------+ mysql> SET debug = '-P'; mysql> SELECT @@debug; +---------+ | @@debug | +---------+ | T | +---------+For more information, see Section 29.5.4, “The DBUG Package”.
-
Property Value System Variable debug_syncScope Session Dynamic Yes SET_VARHint AppliesNo Type String This variable is the user interface to the Debug Sync facility. Use of Debug Sync requires that MySQL be configured with the
-DENABLE_DEBUG_SYNC=1CMake option (see Section 2.9.7, “MySQL Source-Configuration Options”). If Debug Sync is not compiled in, this system variable is not available.The global variable value is read only and indicates whether the facility is enabled. By default, Debug Sync is disabled and the value of
debug_syncisOFF. If the server is started with--debug-sync-timeout=, whereNNis a timeout value greater than 0, Debug Sync is enabled and the value ofdebug_syncisON - current signalfollowed by the signal name. Also,Nbecomes the default timeout for individual synchronization points.The session value can be read by any user and will have the same value as the global variable. The session value can be set to control synchronization points.
Setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
For a description of the Debug Sync facility and how to use synchronization points, see MySQL Internals: Test Synchronization.
-
Property Value Command-Line Format --default-authentication-plugin=plugin_nameSystem Variable default_authentication_pluginScope Global Dynamic No SET_VARHint AppliesNo Type Enumeration Default Value caching_sha2_passwordValid Values mysql_native_passwordsha256_passwordcaching_sha2_passwordThe default authentication plugin. These values are permitted:
mysql_native_password: Use MySQL native passwords; see Section 6.4.1.1, “Native Pluggable Authentication”.sha256_password: Use SHA-256 passwords; see Section 6.4.1.3, “SHA-256 Pluggable Authentication”.caching_sha2_password: Use SHA-256 passwords; see Section 6.4.1.2, “Caching SHA-2 Pluggable Authentication”.
NoteIn MySQL 8.0,
caching_sha2_passwordis the default authentication plugin rather thanmysql_native_password. For information about the implications of this change for server operation and compatibility of the server with clients and connectors, see caching_sha2_password as the Preferred Authentication Plugin.The
default_authentication_pluginvalue affects these aspects of server operation:It determines which authentication plugin the server assigns to new accounts created by
CREATE USERandGRANTstatements that do not explicitly specify an authentication plugin.For an account created with the following statement, the server associates the account with the default authentication plugin and assigns the account the given password, hashed as required by that plugin:
CREATE USER ... IDENTIFIED BY 'cleartext password';
-
Property Value System Variable default_collation_for_utf8mb4Scope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Valid Values utf8mb4_0900_ai_ciutf8mb4_general_ciFor internal use by replication. This system variable is set to the default collation for the
utf8mb4character set. The value of the variable is replicated from a master to a slave so that the slave can correctly process data originating from a master with a different default collation forutf8mb4. This variable is primarily intended to support replication from a MySQL 5.7 or older master server to a MySQL 8.0 slave server, or group replication with a MySQL 5.7 primary node and one or more MySQL 8.0 secondaries. The default collation forutf8mb4in MySQL 5.7 isutf8mb4_general_ci, bututf8mb4_0900_ai_ciin MySQL 8.0. The variable is not present in releases earlier than MySQL 8.0, so if the slave does not receive a value for the variable, it assumes the master is from an earlier release and sets the value to the previous default collationutf8mb4_general_ci.As of MySQL 8.0.18, setting the session value of this system variable is no longer a restricted operation.
The default
utf8mb4collation is used in the following statements:CREATE TABLEandALTER TABLEhaving aCHARACTER SET utf8mb4clause without aCOLLATIONclause, either for the table character set or for a column character set.CREATE DATABASEandALTER DATABASEhaving aCHARACTER SET utf8mb4clause without aCOLLATIONclause.Any statement containing a string literal of the form
_utf8mb4'without asome text'COLLATEclause.
-
Property Value Command-Line Format --default-password-lifetime=#System Variable default_password_lifetimeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 65535This variable defines the global automatic password expiration policy. The default
default_password_lifetimevalue is 0, which disables automatic password expiration. If the value ofdefault_password_lifetimeis a positive integerN, it indicates the permitted password lifetime; passwords must be changed everyNdays.The global password expiration policy can be overridden as desired for individual accounts using the password expiration option of the
CREATE USERandALTER USERstatements. See Section 6.2.15, “Password Management”. -
Property Value Command-Line Format --default-storage-engine=nameSystem Variable default_storage_engineScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value InnoDBThe default storage engine for tables. See Chapter 16, Alternative Storage Engines. This variable sets the storage engine for permanent tables only. To set the storage engine for
TEMPORARYtables, set thedefault_tmp_storage_enginesystem variable.To see which storage engines are available and enabled, use the
SHOW ENGINESstatement or query theINFORMATION_SCHEMAENGINEStable.If you disable the default storage engine at server startup, you must set the default engine for both permanent and
TEMPORARYtables to a different engine or the server will not start. -
Property Value Command-Line Format --default-table-encryption[={OFF|ON}]Introduced 8.0.16 System Variable default_table_encryptionScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value OFFDefines the default encryption setting applied to schemas and general tablespaces when they are created without specifying an
ENCRYPTIONclause.The
default_table_encryptionvariable is only applicable to user-created schemas and general tablespaces. It does not govern encryption of themysqlsystem tablespace.Setting the runtime value of
default_table_encryptionrequires theSYSTEM_VARIABLES_ADMINandTABLE_ENCRYPTION_ADMINprivileges, or the deprecatedSUPERprivilege.default_table_encryptionsupportsSET PERSISTandSET PERSIST_ONLYsyntax. See Section 5.1.9.3, “Persisted System Variables”.For more information, see Defining an Encryption Default for Schemas and General Tablespaces.
-
Property Value Command-Line Format --default-tmp-storage-engine=nameSystem Variable default_tmp_storage_engineScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Enumeration Default Value InnoDBThe default storage engine for
TEMPORARYtables (created withCREATE TEMPORARY TABLE). To set the storage engine for permanent tables, set thedefault_storage_enginesystem variable. Also see the discussion of that variable regarding possible values.If you disable the default storage engine at server startup, you must set the default engine for both permanent and
TEMPORARYtables to a different engine or the server will not start. -
Property Value Command-Line Format --default-week-format=#System Variable default_week_formatScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 7The default mode value to use for the
WEEK()function. See Section 12.6, “Date and Time Functions”. -
Property Value Command-Line Format --delay-key-write[={OFF|ON|ALL}]System Variable delay_key_writeScope Global Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value ONValid Values ONOFFALLThis variable specifies how to use delayed key writes. It applies only to
MyISAMtables. Delayed key writing causes key buffers not to be flushed between writes. See also Section 16.2.1, “MyISAM Startup Options”.This variable can have one of the following values to affect handling of the
DELAY_KEY_WRITEtable option that can be used inCREATE TABLEstatements.Option Description OFFDELAY_KEY_WRITEis ignored.ONMySQL honors any DELAY_KEY_WRITEoption specified inCREATE TABLEstatements. This is the default value.ALLAll new opened tables are treated as if they were created with the DELAY_KEY_WRITEoption enabled.NoteIf you set this variable to
ALL, you should not useMyISAMtables from within another program (such as another MySQL server or myisamchk) when the tables are in use. Doing so leads to index corruption.If
DELAY_KEY_WRITEis enabled for a table, the key buffer is not flushed for the table on every index update, but only when the table is closed. This speeds up writes on keys a lot, but if you use this feature, you should add automatic checking of allMyISAMtables by starting the server with themyisam_recover_optionssystem variable set (for example,myisam_recover_options='BACKUP,FORCE'). See Section 5.1.8, “Server System Variables”, and Section 16.2.1, “MyISAM Startup Options”.If you start mysqld with
--skip-new,delay_key_writeis set toOFF.WarningIf you enable external locking with
--external-locking, there is no protection against index corruption for tables that use delayed key writes. -
Property Value Command-Line Format --delayed-insert-limit=#Deprecated Yes System Variable delayed_insert_limitScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 100Minimum Value 1Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295This system variable is deprecated (because
DELAYEDinserts are not supported), and will be removed in a future release. -
Property Value Command-Line Format --delayed-insert-timeout=#Deprecated Yes System Variable delayed_insert_timeoutScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 300This system variable is deprecated (because
DELAYEDinserts are not supported), and will be removed in a future release. -
Property Value Command-Line Format --delayed-queue-size=#Deprecated Yes System Variable delayed_queue_sizeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 1000Minimum Value 1Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295This system variable is deprecated (because
DELAYEDinserts are not supported), and will be removed in a future release. -
Property Value Command-Line Format --disabled-storage-engines=engine[,engine]...System Variable disabled_storage_enginesScope Global Dynamic No SET_VARHint AppliesNo Type String Default Value empty stringThis variable indicates which storage engines cannot be used to create tables or tablespaces. For example, to prevent new
MyISAMorFEDERATEDtables from being created, start the server with these lines in the server option file:[mysqld] disabled_storage_engines="MyISAM,FEDERATED"By default,
disabled_storage_enginesis empty (no engines disabled), but it can be set to a comma-separated list of one or more engines (not case sensitive). Any engine named in the value cannot be used to create tables or tablespaces withCREATE TABLEorCREATE TABLESPACE, and cannot be used withALTER TABLE ... ENGINEorALTER TABLESPACE ... ENGINEto change the storage engine of existing tables or tablespaces. Attempts to do so result in anER_DISABLED_STORAGE_ENGINEerror.disabled_storage_enginesdoes not restrict other DDL statements for existing tables, such asCREATE INDEX,TRUNCATE TABLE,ANALYZE TABLE,DROP TABLE, orDROP TABLESPACE. This permits a smooth transition so that existing tables or tablespaces that use a disabled engine can be migrated to a permitted engine by means such asALTER TABLE ... ENGINE.permitted_engineIt is permitted to set the
default_storage_engineordefault_tmp_storage_enginesystem variable to a storage engine that is disabled. This could cause applications to behave erratically or fail, although that might be a useful technique in a development environment for identifying applications that use disabled engines, so that they can be modified.disabled_storage_enginesis disabled and has no effect if the server is started with any of these options:--initialize,--initialize-insecure,--skip-grant-tables.NoteSetting
disabled_storage_enginesmight cause an issue with mysql_upgrade. For details, see Section 4.4.5, “mysql_upgrade — Check and Upgrade MySQL Tables”. disconnect_on_expired_passwordProperty Value Command-Line Format --disconnect-on-expired-password[={OFF|ON}]System Variable disconnect_on_expired_passwordScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value ONThis variable controls how the server handles clients with expired passwords:
If the client indicates that it can handle expired passwords, the value of
disconnect_on_expired_passwordis irrelevant. The server permits the client to connect but puts it in sandbox mode.If the client does not indicate that it can handle expired passwords, the server handles the client according to the value of
disconnect_on_expired_password:If
disconnect_on_expired_password: is enabled, the server disconnects the client.If
disconnect_on_expired_password: is disabled, the server permits the client to connect but puts it in sandbox mode.
For more information about the interaction of client and server settings relating to expired-password handling, see Section 6.2.16, “Server Handling of Expired Passwords”.
-
Property Value Command-Line Format --div-precision-increment=#System Variable div_precision_incrementScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 4Minimum Value 0Maximum Value 30This variable indicates the number of digits by which to increase the scale of the result of division operations performed with the
/operator. The default value is 4. The minimum and maximum values are 0 and 30, respectively. The following example illustrates the effect of increasing the default value.mysql> SELECT 1/7; +--------+ | 1/7 | +--------+ | 0.1429 | +--------+ mysql> SET div_precision_increment = 12; mysql> SELECT 1/7; +----------------+ | 1/7 | +----------------+ | 0.142857142857 | +----------------+ dragnet.log_error_filter_rulesProperty Value Command-Line Format --dragnet.log-error-filter-rules=valueSystem Variable dragnet.log_error_filter_rulesScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value IF prio>=INFORMATION THEN drop. IF EXISTS source_line THEN unset source_line.The filter rules that control operation of the
log_filter_dragneterror log filter component. Iflog_filter_dragnetis not installed,dragnet.log_error_filter_rulesis unavailable. Iflog_filter_dragnetis installed but not enabled, changes todragnet.log_error_filter_ruleshave no effect.As of MySQL 8.0.12, the
dragnet.Statusstatus variable can be consulted to determine the result of the most recent assignment todragnet.log_error_filter_rules.Prior to MySQL 8.0.12, successful assignments to
dragnet.log_error_filter_rulesat runtime produce a note confirming the new value:mysql> SET GLOBAL dragnet.log_error_filter_rules = 'IF prio <> 0 THEN unset prio.'; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> SHOW WARNINGS\G *************************** 1. row *************************** Level: Note Code: 4569 Message: filter configuration accepted: SET @@GLOBAL.dragnet.log_error_filter_rules= 'IF prio!=ERROR THEN unset prio.';The value displayed by
SHOW WARNINGSindicates the “decompiled” canonical representation after the rule set has been successfully parsed and compiled into internal form. Semantically, this canonical form is identical to the value assigned todragnet.log_error_filter_rules, but there may be some differences between the assigned and canonical values, as illustrated by the preceding example:The
<>operator is changed to!=.The numeric priority of 0 is changed to the corresponding priority symbol
ERROR.Optional spaces are removed.
For additional information, see Section 5.4.2.3, “Types of Error Log Filtering”, and Section 5.5.3, “Error Log Components”.
-
Property Value Command-Line Format --end-markers-in-json[={OFF|ON}]System Variable end_markers_in_jsonScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value OFFWhether optimizer JSON output should add end markers. See MySQL Internals: The end_markers_in_json System Variable.
-
Property Value Command-Line Format --eq-range-index-dive-limit=#System Variable eq_range_index_dive_limitScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 200Minimum Value 0Maximum Value 4294967295This variable indicates the number of equality ranges in an equality comparison condition when the optimizer should switch from using index dives to index statistics in estimating the number of qualifying rows. It applies to evaluation of expressions that have either of these equivalent forms, where the optimizer uses a nonunique index to look up
col_namevalues:col_name IN(val1, ..., valN) col_name = val1 OR ... OR col_name = valNIn both cases, the expression contains
Nequality ranges. The optimizer can make row estimates using index dives or index statistics. Ifeq_range_index_dive_limitis greater than 0, the optimizer uses existing index statistics instead of index dives if there areeq_range_index_dive_limitor more equality ranges. Thus, to permit use of index dives for up toNequality ranges, seteq_range_index_dive_limittoN+ 1. To disable use of index statistics and always use index dives regardless ofN, seteq_range_index_dive_limitto 0.For more information, see Equality Range Optimization of Many-Valued Comparisons.
To update table index statistics for best estimates, use
ANALYZE TABLE. The number of errors that resulted from the last statement that generated messages. This variable is read only. See Section 13.7.7.17, “SHOW ERRORS Statement”.
-
Property Value Command-Line Format --event-scheduler[=value]System Variable event_schedulerScope Global Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value ONValid Values ONOFFDISABLEDThis variable enables or disables, and starts or stops, the Event Scheduler. The possible status values are
ON,OFF, andDISABLED, with the default beingOFF. Turning the Event SchedulerOFFis not the same as disabling the Event Scheduler, which requires setting the status toDISABLED. This variable and its effects on the Event Scheduler's operation are discussed in greater detail in Section 24.4.2, “Event Scheduler Configuration” explicit_defaults_for_timestampProperty Value Command-Line Format --explicit-defaults-for-timestamp[={OFF|ON}]Deprecated Yes System Variable explicit_defaults_for_timestampScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONThis system variable determines whether the server enables certain nonstandard behaviors for default values and
NULL-value handling inTIMESTAMPcolumns. By default,explicit_defaults_for_timestampis enabled, which disables the nonstandard behaviors. Disablingexplicit_defaults_for_timestampresults in a warning.As of MySQL 8.0.18, setting the session value of this system variable is no longer a restricted operation.
If
explicit_defaults_for_timestampis disabled, the server enables the nonstandard behaviors and handlesTIMESTAMPcolumns as follows:TIMESTAMPcolumns not explicitly declared with theNULLattribute are automatically declared with theNOT NULLattribute. Assigning such a column a value ofNULLis permitted and sets the column to the current timestamp.The first
TIMESTAMPcolumn in a table, if not explicitly declared with theNULLattribute or an explicitDEFAULTorON UPDATEattribute, is automatically declared with theDEFAULT CURRENT_TIMESTAMPandON UPDATE CURRENT_TIMESTAMPattributes.TIMESTAMPcolumns following the first one, if not explicitly declared with theNULLattribute or an explicitDEFAULTattribute, are automatically declared asDEFAULT '0000-00-00 00:00:00'(the “zero” timestamp). For inserted rows that specify no explicit value for such a column, the column is assigned'0000-00-00 00:00:00'and no warning occurs.Depending on whether strict SQL mode or the
NO_ZERO_DATESQL mode is enabled, a default value of'0000-00-00 00:00:00'may be invalid. Be aware that theTRADITIONALSQL mode includes strict mode andNO_ZERO_DATE. See Section 5.1.11, “Server SQL Modes”.
The nonstandard behaviors just described are deprecated and will be removed in a future MySQL release.
If
explicit_defaults_for_timestampis enabled, the server disables the nonstandard behaviors and handlesTIMESTAMPcolumns as follows:It is not possible to assign a
TIMESTAMPcolumn a value ofNULLto set it to the current timestamp. To assign the current timestamp, set the column toCURRENT_TIMESTAMPor a synonym such asNOW().TIMESTAMPcolumns not explicitly declared with theNOT NULLattribute are automatically declared with theNULLattribute and permitNULLvalues. Assigning such a column a value ofNULLsets it toNULL, not the current timestamp.TIMESTAMPcolumns declared with theNOT NULLattribute do not permitNULLvalues. For inserts that specifyNULLfor such a column, the result is either an error for a single-row insert or if strict SQL mode is enabled, or'0000-00-00 00:00:00'is inserted for multiple-row inserts with strict SQL mode disabled. In no case does assigning the column a value ofNULLset it to the current timestamp.TIMESTAMPcolumns explicitly declared with theNOT NULLattribute and without an explicitDEFAULTattribute are treated as having no default value. For inserted rows that specify no explicit value for such a column, the result depends on the SQL mode. If strict SQL mode is enabled, an error occurs. If strict SQL mode is not enabled, the column is declared with the implicit default of'0000-00-00 00:00:00'and a warning occurs. This is similar to how MySQL treats other temporal types such asDATETIME.No
TIMESTAMPcolumn is automatically declared with theDEFAULT CURRENT_TIMESTAMPorON UPDATE CURRENT_TIMESTAMPattributes. Those attributes must be explicitly specified.The first
TIMESTAMPcolumn in a table is not handled differently fromTIMESTAMPcolumns following the first one.
If
explicit_defaults_for_timestampis disabled at server startup, this warning appears in the error log:[Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).As indicated by the warning, to disable the deprecated nonstandard behaviors, enable the
explicit_defaults_for_timestampsystem variable at server startup.Noteexplicit_defaults_for_timestampis itself deprecated because its only purpose is to permit control over deprecatedTIMESTAMPbehaviors that are to be removed in a future MySQL release. When removal of those behaviors occurs,explicit_defaults_for_timestampwill have no purpose and will be removed as well.For additional information, see Section 11.2.5, “Automatic Initialization and Updating for TIMESTAMP and DATETIME”.
-
Property Value System Variable external_userScope Session Dynamic No SET_VARHint AppliesNo Type String The external user name used during the authentication process, as set by the plugin used to authenticate the client. With native (built-in) MySQL authentication, or if the plugin does not set the value, this variable is
NULL. See Section 6.2.18, “Proxy Users”. -
Property Value Command-Line Format --flush[={OFF|ON}]System Variable flushScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFIf
ON, the server flushes (synchronizes) all changes to disk after each SQL statement. Normally, MySQL does a write of all changes to disk only after each SQL statement and lets the operating system handle the synchronizing to disk. See Section B.4.3.3, “What to Do If MySQL Keeps Crashing”. This variable is set toONif you start mysqld with the--flushoption.NoteIf
flushis enabled, the value offlush_timedoes not matter and changes toflush_timehave no effect on flush behavior. -
Property Value Command-Line Format --flush-time=#System Variable flush_timeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0If this is set to a nonzero value, all tables are closed every
flush_timeseconds to free up resources and synchronize unflushed data to disk. This option is best used only on systems with minimal resources.NoteIf
flushis enabled, the value offlush_timedoes not matter and changes toflush_timehave no effect on flush behavior. -
Property Value System Variable foreign_key_checksScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value ONIf set to 1 (the default), foreign key constraints are checked. If set to 0, foreign key constraints are ignored, with a couple of exceptions. When re-creating a table that was dropped, an error is returned if the table definition does not conform to the foreign key constraints referencing the table. Likewise, an
ALTER TABLEoperation returns an error if a foreign key definition is incorrectly formed. For more information, see Section 13.1.20.5, “FOREIGN KEY Constraints”.Setting this variable has the same effect on
NDBtables as it does forInnoDBtables. Typically you leave this setting enabled during normal operation, to enforce referential integrity. Disabling foreign key checking can be useful for reloadingInnoDBtables in an order different from that required by their parent/child relationships. See Section 13.1.20.5, “FOREIGN KEY Constraints”.Setting
foreign_key_checksto 0 also affects data definition statements:DROP SCHEMAdrops a schema even if it contains tables that have foreign keys that are referred to by tables outside the schema, andDROP TABLEdrops tables that have foreign keys that are referred to by other tables.NoteSetting
foreign_key_checksto 1 does not trigger a scan of the existing table data. Therefore, rows added to the table whileforeign_key_checks = 0will not be verified for consistency.Dropping an index required by a foreign key constraint is not permitted, even with
foreign_key_checks=0. The foreign key constraint must be removed before dropping the index. -
Property Value Command-Line Format --ft-boolean-syntax=nameSystem Variable ft_boolean_syntaxScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value + -><()~*:""&|The list of operators supported by boolean full-text searches performed using
IN BOOLEAN MODE. See Section 12.9.2, “Boolean Full-Text Searches”.The default variable value is
'+ -><()~*:""&|'. The rules for changing the value are as follows:Operator function is determined by position within the string.
The replacement value must be 14 characters.
Each character must be an ASCII nonalphanumeric character.
Either the first or second character must be a space.
No duplicates are permitted except the phrase quoting operators in positions 11 and 12. These two characters are not required to be the same, but they are the only two that may be.
Positions 10, 13, and 14 (which by default are set to
:,&, and|) are reserved for future extensions.
-
Property Value Command-Line Format --ft-max-word-len=#System Variable ft_max_word_lenScope Global Dynamic No SET_VARHint AppliesNo Type Integer Minimum Value 10The maximum length of the word to be included in a
MyISAMFULLTEXTindex.NoteFULLTEXTindexes onMyISAMtables must be rebuilt after changing this variable. UseREPAIR TABLE.tbl_nameQUICK -
Property Value Command-Line Format --ft-min-word-len=#System Variable ft_min_word_lenScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 4Minimum Value 1The minimum length of the word to be included in a
MyISAMFULLTEXTindex.NoteFULLTEXTindexes onMyISAMtables must be rebuilt after changing this variable. UseREPAIR TABLE.tbl_nameQUICK -
Property Value Command-Line Format --ft-query-expansion-limit=#System Variable ft_query_expansion_limitScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 20Minimum Value 0Maximum Value 1000The number of top matches to use for full-text searches performed using
WITH QUERY EXPANSION. -
Property Value Command-Line Format --ft-stopword-file=file_nameSystem Variable ft_stopword_fileScope Global Dynamic No SET_VARHint AppliesNo Type File name The file from which to read the list of stopwords for full-text searches on
MyISAMtables. The server looks for the file in the data directory unless an absolute path name is given to specify a different directory. All the words from the file are used; comments are not honored. By default, a built-in list of stopwords is used (as defined in thestorage/myisam/ft_static.cfile). Setting this variable to the empty string ('') disables stopword filtering. See also Section 12.9.4, “Full-Text Stopwords”.NoteFULLTEXTindexes onMyISAMtables must be rebuilt after changing this variable or the contents of the stopword file. UseREPAIR TABLE.tbl_nameQUICK -
Property Value Command-Line Format --general-log[={OFF|ON}]System Variable general_logScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFWhether the general query log is enabled. The value can be 0 (or
OFF) to disable the log or 1 (orON) to enable the log. The destination for log output is controlled by thelog_outputsystem variable; if that value isNONE, no log entries are written even if the log is enabled. -
Property Value Command-Line Format --general-log-file=file_nameSystem Variable general_log_fileScope Global Dynamic Yes SET_VARHint AppliesNo Type File name Default Value host_name.logThe name of the general query log file. The default value is
, but the initial value can be changed with thehost_name.log--general_log_fileoption. generated_random_password_lengthProperty Value Command-Line Format --generated-random-password-length=#Introduced 8.0.18 System Variable generated_random_password_lengthScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 20Minimum Value 5Maximum Value 255The maximum number of characters permitted in random passwords generated for
CREATE USER,ALTER USER, andSET PASSWORDstatements. For more information, see Random Password Generation.-
Property Value Command-Line Format --group-concat-max-len=#System Variable group_concat_max_lenScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 1024Minimum Value 4Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295The maximum permitted result length in bytes for the
GROUP_CONCAT()function. The default is 1024. YESif thezlibcompression library is available to the server,NOif not. If not, theCOMPRESS()andUNCOMPRESS()functions cannot be used.YESif mysqld supports dynamic loading of plugins,NOif not. If the value isNO, you cannot use options such as--plugin-loadto load plugins at server startup, or theINSTALL PLUGINstatement to load plugins at runtime.YESif the server supports spatial data types,NOif not.This variable is an alias for
have_ssl.YESif statement profiling capability is present,NOif not. If present, theprofilingsystem variable controls whether this capability is enabled or disabled. See Section 13.7.7.31, “SHOW PROFILES Statement”.This variable is deprecated and will be removed in a future MySQL release.
The query cache was removed in MySQL 8.0.3.
have_query_cacheis deprecated, always has a value ofNO, and will be removed in a future MySQL release.YESifRTREEindexes are available,NOif not. (These are used for spatial indexes inMyISAMtables.)-
Property Value System Variable have_sslScope Global Dynamic No SET_VARHint AppliesNo Type String Valid Values YES(SSL support available)DISABLED(SSL support was compiled into the server, but the server was not started with the necessary options to enable it)YESif mysqld supports SSL connections,DISABLEDif the server was compiled with SSL support, but was not started with the appropriate connection-encryption options. For more information, see Section 2.9.6, “Configuring SSL Library Support”. -
Property Value System Variable have_statement_timeoutScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Whether the statement execution timeout feature is available (see Statement Execution Time Optimizer Hints). The value can be
NOif the background thread used by this feature could not be initialized. YESif symbolic link support is enabled,NOif not. This is required on Unix for support of theDATA DIRECTORYandINDEX DIRECTORYtable options. If the server is started with the--skip-symbolic-linksoption, the value isDISABLED.This variable has no meaning on Windows.
NoteSymbolic link support, along with the
--symbolic-linksoption that controls it, is deprecated and will be removed in a future version of MySQL. In addition, the option is disabled by default. The relatedhave_symlinksystem variable also is deprecated and will be removed in a future version of MySQL.histogram_generation_max_mem_sizeProperty Value Command-Line Format --histogram-generation-max-mem-size=#System Variable histogram_generation_max_mem_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 20000000Minimum Value 1000000Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295The maximum amount of memory available for generating histogram statistics. See Section 8.9.6, “Optimizer Statistics”, and Section 13.7.3.1, “ANALYZE TABLE Statement”.
Setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
-
Property Value Command-Line Format --host-cache-size=#System Variable host_cache_sizeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value -1(signifies autosizing; do not assign this literal value)Minimum Value 0Maximum Value 65536This variable controls the size of the host cache, as well as the size of the Performance Schema
host_cachetable that exposes the cache contents. Setting the size to 0 disables the host cache. Changing the cache size at runtime causes an implicitFLUSH HOSTSoperation that clears the host cache, truncates thehost_cachetable, and unblocks any blocked hosts.The default value is autosized to 128, plus 1 for a value of
max_connectionsup to 500, plus 1 for every increment of 20 over 500 in themax_connectionsvalue, capped to a limit of 2000.Using the
--skip-host-cacheoption is similar to setting thehost_cache_sizesystem variable to 0, buthost_cache_sizeis more flexible because it can also be used to resize, enable, and disable the host cache at runtime, not just at server startup. Starting the server with--skip-host-cachedoes not prevent changes to the value ofhost_cache_size, but such changes have no effect and the cache is not re-enabled even ifhost_cache_sizeis set larger than 0 at runtime.For more information about how the host cache works, see Section 5.1.12.3, “DNS Lookups and the Host Cache”.
-
The server sets this variable to the server host name at startup. The maximum length is 255 characters as of MySQL 8.0.17, per RFC 1034, and 60 characters before that.
This variable is a synonym for the
last_insert_idvariable. It exists for compatibility with other database systems. You can read its value withSELECT @@identity, and set it usingSET identity.-
Property Value Command-Line Format --init-connect=nameSystem Variable init_connectScope Global Dynamic Yes SET_VARHint AppliesNo Type String A string to be executed by the server for each client that connects. The string consists of one or more SQL statements, separated by semicolon characters.
For users that have the
CONNECTION_ADMINprivilege (or the deprecatedSUPERprivilege), the content ofinit_connectis not executed. This is done so that an erroneous value forinit_connectdoes not prevent all clients from connecting. For example, the value might contain a statement that has a syntax error, thus causing client connections to fail. Not executinginit_connectfor users that have theCONNECTION_ADMINorSUPERprivilege enables them to open a connection and fix theinit_connectvalue.init_connectexecution is skipped for any client user with an expired password. This is done because such a user cannot execute arbitrary statements, and thusinit_connectexecution will fail, leaving the client unable to connect. Skippinginit_connectexecution enables the user to connect and change password.The server discards any result sets produced by statements in the value of
init_connect. information_schema_stats_expiryProperty Value Command-Line Format --information-schema-stats-expiry=#System Variable information_schema_stats_expiryScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 86400Minimum Value 0Maximum Value 31536000Some
INFORMATION_SCHEMAtables contain columns that provide table statistics:STATISTICS.CARDINALITY TABLES.AUTO_INCREMENT TABLES.AVG_ROW_LENGTH TABLES.CHECKSUM TABLES.CHECK_TIME TABLES.CREATE_TIME TABLES.DATA_FREE TABLES.DATA_LENGTH TABLES.INDEX_LENGTH TABLES.MAX_DATA_LENGTH TABLES.TABLE_ROWS TABLES.UPDATE_TIMEThose columns represent dynamic table metadata; that is, information that changes as table contents change.
By default, MySQL retrieves cached values for those columns from the
mysql.index_statsandmysql.table_statsdictionary tables when the columns are queried, which is more efficient than retrieving statistics directly from the storage engine. If cached statistics are not available or have expired, MySQL retrieves the latest statistics from the storage engine and caches them in themysql.index_statsandmysql.table_statsdictionary tables. Subsequent queries retrieve the cached statistics until the cached statistics expire.The
information_schema_stats_expirysession variable defines the period of time before cached statistics expire. The default is 86400 seconds (24 hours), but the time period can be extended to as much as one year.To update cached values at any time for a given table, use
ANALYZE TABLE.To always retrieve the latest statistics directly from the storage engine and bypass cached values, set
information_schema_stats_expiryto0.Querying statistics columns does not store or update statistics in the
mysql.index_statsandmysql.table_statsdictionary tables under these circumstances:When cached statistics have not expired.
When
information_schema_stats_expiryis set to 0.When the server is started in
read_only,super_read_only,transaction_read_only, orinnodb_read_onlymode.When the query also fetches Performance Schema data.
information_schema_stats_expiryis a session variable, and each client session can define its own expiration value. Statistics that are retrieved from the storage engine and cached by one session are available to other sessions.For related information, see Section 8.2.3, “Optimizing INFORMATION_SCHEMA Queries”.
-
Property Value Command-Line Format --init-file=file_nameSystem Variable init_fileScope Global Dynamic No SET_VARHint AppliesNo Type File name If specified, this variable names a file containing SQL statements to be read and executed during the startup process. Prior to MySQL 8.0.18, each statement must be on a single line and should not include comments. As of MySQL 8.0.18, the acceptable format for statements in the file is expanded to support these constructs:
delimiter ;, to set the statement delimiter to the;character.delimiter $$, to set the statement delimiter to the$$character sequence.Multiple statements on the same line, delimited by the current delimiter.
Multiple-line statements.
Comments from a
#character to the end of the line.Comments from a
--sequence to the end of the line.C-style comments from a
/*sequence to the following*/sequence, including over multiple lines.Multiple-line string literals enclosed within either single quote (
') or double quote (") characters.
If the server is started with the
--initializeor--initialize-insecureoption, it operates in bootstap mode and some functionality is unavailable that limits the statements permitted in the file. These include statements that relate to account management (such asCREATE USERorGRANT), replication, and global transaction identifiers. See Section 17.1.3, “Replication with Global Transaction Identifiers”.As of MySQL 8.0.17, threads created during server startup are used for tasks such as creating the data dictionary, running upgrade procedures, and creating system tables. To ensure a stable and predictable environment, these threads are executed with the server built-in defaults for some system variables, such as
sql_mode,character_set_server,collation_server,completion_type,explicit_defaults_for_timestamp, anddefault_table_encryption.These threads are also used to execute the statements in any file specified with
init_filewhen starting the server, so such statements execute with the server's built-in default values for those system variables. innodb_xxxInnoDBsystem variables are listed in Section 15.14, “InnoDB Startup Options and System Variables”. These variables control many aspects of storage, memory use, and I/O patterns forInnoDBtables, and are especially important now thatInnoDBis the default storage engine.The value to be used by the following
INSERTorALTER TABLEstatement when inserting anAUTO_INCREMENTvalue. This is mainly used with the binary log.-
Property Value Command-Line Format --interactive-timeout=#System Variable interactive_timeoutScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 28800Minimum Value 1The number of seconds the server waits for activity on an interactive connection before closing it. An interactive client is defined as a client that uses the
CLIENT_INTERACTIVEoption tomysql_real_connect(). See alsowait_timeout. internal_tmp_disk_storage_engineProperty Value Command-Line Format --internal-tmp-disk-storage-engine=#Removed 8.0.16 System Variable internal_tmp_disk_storage_engineScope Global Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value INNODBValid Values MYISAMINNODBImportantIn MySQL 8.0.16 and later, on-disk internal temporary tables always use the
InnoDBstorage engine; as of MySQL 8.0.16, this variable has been removed and is thus no longer supported.Prior to MySQL 8.0.16, this variable determines the storage engine used for on-disk internal temporary tables (see Storage Engine for On-Disk Internal Temporary Tables). Permitted values are
MYISAMandINNODB(the default).internal_tmp_mem_storage_engineProperty Value Command-Line Format --internal-tmp-mem-storage-engine=#System Variable internal_tmp_mem_storage_engineScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Enumeration Default Value TempTableValid Values TempTableMEMORYThe storage engine for in-memory internal temporary tables (see Section 8.4.4, “Internal Temporary Table Use in MySQL”). Permitted values are
TempTable(the default) andMEMORY.The optimizer uses the storage engine defined by
internal_tmp_mem_storage_enginefor in-memory internal temporary tables.-
Property Value Command-Line Format --join-buffer-size=#System Variable join_buffer_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 262144Minimum Value 128Maximum Value (Other, 64-bit platforms) 18446744073709547520Maximum Value (Other, 32-bit platforms) 4294967295Maximum Value (Windows) 4294967295The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans. Normally, the best way to get fast joins is to add indexes. Increase the value of
join_buffer_sizeto get a faster full join when adding indexes is not possible. One join buffer is allocated for each full join between two tables. For a complex join between several tables for which indexes are not used, multiple join buffers might be necessary.Unless a Block Nested-Loop or Batched Key Access algorithm is used, there is no gain from setting the buffer larger than required to hold each matching row, and all joins allocate at least the minimum size, so use caution in setting this variable to a large value globally. It is better to keep the global setting small and change the session setting to a larger value only in sessions that are doing large joins, or change the setting on a per-query basis by using a
SET_VARoptimizer hint (see Section 8.9.3, “Optimizer Hints”). Memory allocation time can cause substantial performance drops if the global size is larger than needed by most queries that use it.When Block Nested-Loop is used, a larger join buffer can be beneficial up to the point where all required columns from all rows in the first table are stored in the join buffer. This depends on the query; the optimal size may be smaller than holding all rows from the first tables.
When Batched Key Access is used, the value of
join_buffer_sizedefines how large the batch of keys is in each request to the storage engine. The larger the buffer, the more sequential access will be to the right hand table of a join operation, which can significantly improve performance.The default is 256KB. The maximum permissible setting for
join_buffer_sizeis 4GB−1. Larger values are permitted for 64-bit platforms (except 64-bit Windows, for which large values are truncated to 4GB−1 with a warning).For additional information about join buffering, see Section 8.2.1.7, “Nested-Loop Join Algorithms”. For information about Batched Key Access, see Section 8.2.1.12, “Block Nested-Loop and Batched Key Access Joins”.
-
Property Value Command-Line Format --keep-files-on-create[={OFF|ON}]System Variable keep_files_on_createScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFIf a
MyISAMtable is created with noDATA DIRECTORYoption, the.MYDfile is created in the database directory. By default, ifMyISAMfinds an existing.MYDfile in this case, it overwrites it. The same applies to.MYIfiles for tables created with noINDEX DIRECTORYoption. To suppress this behavior, set thekeep_files_on_createvariable toON(1), in which caseMyISAMwill not overwrite existing files and returns an error instead. The default value isOFF(0).If a
MyISAMtable is created with aDATA DIRECTORYorINDEX DIRECTORYoption and an existing.MYDor.MYIfile is found, MyISAM always returns an error. It will not overwrite a file in the specified directory. -
Property Value Command-Line Format --key-buffer-size=#System Variable key_buffer_sizeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 8388608Minimum Value 8Maximum Value (64-bit platforms) OS_PER_PROCESS_LIMITMaximum Value (32-bit platforms) 4294967295Index blocks for
MyISAMtables are buffered and are shared by all threads.key_buffer_sizeis the size of the buffer used for index blocks. The key buffer is also known as the key cache.The maximum permissible setting for
key_buffer_sizeis 4GB−1 on 32-bit platforms. Larger values are permitted for 64-bit platforms. The effective maximum size might be less, depending on your available physical RAM and per-process RAM limits imposed by your operating system or hardware platform. The value of this variable indicates the amount of memory requested. Internally, the server allocates as much memory as possible up to this amount, but the actual allocation might be less.You can increase the value to get better index handling for all reads and multiple writes; on a system whose primary function is to run MySQL using the
MyISAMstorage engine, 25% of the machine's total memory is an acceptable value for this variable. However, you should be aware that, if you make the value too large (for example, more than 50% of the machine's total memory), your system might start to page and become extremely slow. This is because MySQL relies on the operating system to perform file system caching for data reads, so you must leave some room for the file system cache. You should also consider the memory requirements of any other storage engines that you may be using in addition toMyISAM.For even more speed when writing many rows at the same time, use
LOCK TABLES. See Section 8.2.5.1, “Optimizing INSERT Statements”.You can check the performance of the key buffer by issuing a
SHOW STATUSstatement and examining theKey_read_requests,Key_reads,Key_write_requests, andKey_writesstatus variables. (See Section 13.7.7, “SHOW Statements”.) TheKey_reads/Key_read_requestsratio should normally be less than 0.01. TheKey_writes/Key_write_requestsratio is usually near 1 if you are using mostly updates and deletes, but might be much smaller if you tend to do updates that affect many rows at the same time or if you are using theDELAY_KEY_WRITEtable option.The fraction of the key buffer in use can be determined using
key_buffer_sizein conjunction with theKey_blocks_unusedstatus variable and the buffer block size, which is available from thekey_cache_block_sizesystem variable:1 - ((Key_blocks_unused * key_cache_block_size) / key_buffer_size)This value is an approximation because some space in the key buffer is allocated internally for administrative structures. Factors that influence the amount of overhead for these structures include block size and pointer size. As block size increases, the percentage of the key buffer lost to overhead tends to decrease. Larger blocks results in a smaller number of read operations (because more keys are obtained per read), but conversely an increase in reads of keys that are not examined (if not all keys in a block are relevant to a query).
It is possible to create multiple
MyISAMkey caches. The size limit of 4GB applies to each cache individually, not as a group. See Section 8.10.2, “The MyISAM Key Cache”. -
Property Value Command-Line Format --key-cache-age-threshold=#System Variable key_cache_age_thresholdScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 300Minimum Value 100Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295This value controls the demotion of buffers from the hot sublist of a key cache to the warm sublist. Lower values cause demotion to happen more quickly. The minimum value is 100. The default value is 300. See Section 8.10.2, “The MyISAM Key Cache”.
-
Property Value Command-Line Format --key-cache-block-size=#System Variable key_cache_block_sizeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 1024Minimum Value 512Maximum Value 16384The size in bytes of blocks in the key cache. The default value is 1024. See Section 8.10.2, “The MyISAM Key Cache”.
-
Property Value Command-Line Format --key-cache-division-limit=#System Variable key_cache_division_limitScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 100Minimum Value 1Maximum Value 100The division point between the hot and warm sublists of the key cache buffer list. The value is the percentage of the buffer list to use for the warm sublist. Permissible values range from 1 to 100. The default value is 100. See Section 8.10.2, “The MyISAM Key Cache”.
-
Property Value System Variable large_files_supportScope Global Dynamic No SET_VARHint AppliesNo Whether mysqld was compiled with options for large file support.
-
Property Value Command-Line Format --large-pages[={OFF|ON}]System Variable large_pagesScope Global Dynamic No SET_VARHint AppliesNo Platform Specific Linux Type Boolean Default Value OFFWhether large page support is enabled (via the
--large-pagesoption). See Section 8.12.3.2, “Enabling Large Page Support”. -
Property Value System Variable large_page_sizeScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 0If large page support is enabled, this shows the size of memory pages. Large memory pages are supported only on Linux; on other platforms, the value of this variable is always 0. See Section 8.12.3.2, “Enabling Large Page Support”.
The value to be returned from
LAST_INSERT_ID(). This is stored in the binary log when you useLAST_INSERT_ID()in a statement that updates a table. Setting this variable does not update the value returned by themysql_insert_id()C API function.-
Property Value Command-Line Format --lc-messages=nameSystem Variable lc_messagesScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value en_USThe locale to use for error messages. The default is
en_US. The server converts the argument to a language name and combines it with the value oflc_messages_dirto produce the location for the error message file. See Section 10.12, “Setting the Error Message Language”. -
Property Value Command-Line Format --lc-messages-dir=dir_nameSystem Variable lc_messages_dirScope Global Dynamic No SET_VARHint AppliesNo Type Directory name The directory where error messages are located. The server uses the value together with the value of
lc_messagesto produce the location for the error message file. See Section 10.12, “Setting the Error Message Language”. -
Property Value Command-Line Format --lc-time-names=valueSystem Variable lc_time_namesScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String This variable specifies the locale that controls the language used to display day and month names and abbreviations. This variable affects the output from the
DATE_FORMAT(),DAYNAME()andMONTHNAME()functions. Locale names are POSIX-style values such as'ja_JP'or'pt_BR'. The default value is'en_US'regardless of your system's locale setting. For further information, see Section 10.16, “MySQL Server Locale Support”. -
Property Value System Variable licenseScope Global Dynamic No SET_VARHint AppliesNo Type String Default Value GPLThe type of license the server has.
-
Property Value Command-Line Format --local-infile[={OFF|ON}]System Variable local_infileScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFThis variable controls server-side
LOCALcapability forLOAD DATAstatements. Depending on thelocal_infilesetting, the server refuses or permits local data loading by clients that haveLOCALenabled on the client side.To explicitly cause the server to refuse or permit
LOAD DATA LOCALstatements (regardless of how client programs and libraries are configured at build time or runtime), start mysqld withlocal_infiledisabled or enabled, respectively.local_infilecan also be set at runtime. For more information, see Section 6.1.6, “Security Considerations for LOAD DATA LOCAL”. -
Property Value Command-Line Format --lock-wait-timeout=#System Variable lock_wait_timeoutScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 31536000Minimum Value 1Maximum Value 31536000This variable specifies the timeout in seconds for attempts to acquire metadata locks. The permissible values range from 1 to 31536000 (1 year). The default is 31536000.
This timeout applies to all statements that use metadata locks. These include DML and DDL operations on tables, views, stored procedures, and stored functions, as well as
LOCK TABLES,FLUSH TABLES WITH READ LOCK, andHANDLERstatements.This timeout does not apply to implicit accesses to system tables in the
mysqldatabase, such as grant tables modified byGRANTorREVOKEstatements or table logging statements. The timeout does apply to system tables accessed directly, such as withSELECTorUPDATE.The timeout value applies separately for each metadata lock attempt. A given statement can require more than one lock, so it is possible for the statement to block for longer than the
lock_wait_timeoutvalue before reporting a timeout error. When lock timeout occurs,ER_LOCK_WAIT_TIMEOUTis reported.lock_wait_timeoutalso defines the amount of time that aLOCK INSTANCE FOR BACKUPstatement waits for a lock before giving up. -
Property Value System Variable locked_in_memoryScope Global Dynamic No SET_VARHint AppliesNo -
Property Value Command-Line Format --log-error[=file_name]System Variable log_errorScope Global Dynamic No SET_VARHint AppliesNo Type File name The default error log destination. If the destination is the console, the value is
stderr. Otherwise, the destination is a file and thelog_errorvalue is the file name. See Section 5.4.2, “The Error Log”. -
Property Value Command-Line Format --log-error-services=valueSystem Variable log_error_servicesScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value log_filter_internal; log_sink_internalThe components to enable for error logging. The variable may contain a list with 0, 1, or many elements. In the latter case, elements may be delimited by semicolon or (as of MySQL 8.0.12) comma, optionally followed by space. A given setting cannot use both semicolon and comma separators. Component order is significant because the server executes components in the order listed. Any loadable (not built in) component named in the
log_error_servicesvalue must first be installed withINSTALL COMPONENT. For more information, see Section 5.4.2.1, “Error Log Component Configuration”. -
Property Value Command-Line Format --log-error-suppression-list=valueIntroduced 8.0.13 System Variable log_error_suppression_listScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value empty stringThe
log_error_suppression_listsystem variable applies to events intended for the error log and specifies which events to suppress when they occur with a priority ofWARNINGorINFORMATION. For example, if a particular type of warning is considered undesirable “noise” in the error log because it occurs frequently but is not of interest, it can be suppressed. This variable affects filtering performed by thelog_filter_internalerror log filter component, which is enabled by default (see Section 5.5.3, “Error Log Components”). Iflog_filter_internalis disabled,log_error_suppression_listhas no effect.The
log_error_suppression_listvalue may be the empty string for no suppression, or a list of one or more comma-separated values indicating the error codes to suppress. Error codes may be specified in symbolic or numeric form. A numeric code may be specified with or without theMY-prefix. Leading zeros in the numeric part are not significant. Examples of permitted code formats:ER_SERVER_SHUTDOWN_COMPLETE MY-000031 000031 MY-31 31Symbolic values are preferable to numeric values for readability and portability. For information about the permitted error symbols and numbers, see Section B.3, “Error Message Reference”.
The effect of
log_error_suppression_listcombines with that oflog_error_verbosity. For additional information, see Section 5.4.2.4, “Priority-Based Error Log Filtering (log_filter_internal)”. -
Property Value Command-Line Format --log-error-verbosity=#System Variable log_error_verbosityScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 2Minimum Value 1Maximum Value 3The
log_error_verbositysystem variable specifies the verbosity for handling events intended for the error log. This variable affects filtering performed by thelog_filter_internalerror log filter component, which is enabled by default (see Section 5.5.3, “Error Log Components”). Iflog_filter_internalis disabled,log_error_verbosityhas no effect.Events intended for the error log have a priority of
ERROR,WARNING, orINFORMATION.log_error_verbositycontrols verbosity based on which priorities to permit for messages written to the log, as shown in the following table.Permitted Message Priorities log_error_verbosity Value ERROR1 ERROR,WARNING2 ERROR,WARNING,INFORMATION3 There is also a priority of
SYSTEM. System messages about non-error situations are printed to the error log regardless of thelog_error_verbosityvalue. These messages include startup and shutdown messages, and some significant changes to settings.The effect of
log_error_verbositycombines with that oflog_error_suppression_list. For additional information, see Section 5.4.2.4, “Priority-Based Error Log Filtering (log_filter_internal)”. -
Property Value Command-Line Format --log-output=nameSystem Variable log_outputScope Global Dynamic Yes SET_VARHint AppliesNo Type Set Default Value FILEValid Values TABLEFILENONEThe destination or destinations for general query log and slow query log output. The value is a list one or more comma-separated words chosen from
TABLE,FILE, andNONE.TABLEselects logging to thegeneral_logandslow_logtables in themysqlsystem schema.FILEselects logging to log files.NONEdisables logging. IfNONEis present in the value, it takes precedence over any other words that are present.TABLEandFILEcan both be given to select both log output destinations.This variable selects log output destinations, but does not enable log output. To do that, enable the
general_logandslow_query_logsystem variables. ForFILElogging, thegeneral_log_fileandslow_query_log_filesystem variables determine the log file locations. For more information, see Section 5.4.1, “Selecting General Query Log and Slow Query Log Output Destinations”. -
Property Value Command-Line Format --log-queries-not-using-indexes[={OFF|ON}]System Variable log_queries_not_using_indexesScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFIf you enable this variable with the slow query log enabled, queries that are expected to retrieve all rows are logged. See Section 5.4.5, “The Slow Query Log”. This option does not necessarily mean that no index is used. For example, a query that uses a full index scan uses an index but would be logged because the index would not limit the number of rows.
-
Property Value Command-Line Format --log-raw[={OFF|ON}]System Variable (≥ 8.0.19) log_rawScope (≥ 8.0.19) Global Dynamic (≥ 8.0.19) Yes SET_VARHint Applies (≥ 8.0.19)No Type Boolean Default Value OFFThe
log_rawsystem variable is initially set to the value of the--log-rawoption. See the description of that option for more information. The system variable may also be set at runtime to change password masking behavior. -
Property Value Command-Line Format --log-slow-admin-statements[={OFF|ON}]System Variable log_slow_admin_statementsScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFInclude slow administrative statements in the statements written to the slow query log. Administrative statements include
ALTER TABLE,ANALYZE TABLE,CHECK TABLE,CREATE INDEX,DROP INDEX,OPTIMIZE TABLE, andREPAIR TABLE. -
Property Value Command-Line Format --log-slow-extra[={OFF|ON}]Introduced 8.0.14 System Variable log_slow_extraScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFIf the slow query log is enabled and the output destination includes
FILE, the server writes additional fields to log file lines that provide information about slow statements. See Section 5.4.5, “The Slow Query Log”.TABLEoutput is unaffected. -
Property Value Command-Line Format --log-syslog[={OFF|ON}]Deprecated Yes (removed in 8.0.13) System Variable log_syslogScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ON(when error logging to system log is enabled)Prior to MySQL 8.0, this variable controlled whether to perform error logging to the system log (the Event Log on Windows, and
syslogon Unix and Unix-like systems).In MySQL 8.0, the
log_sink_syseventloglog component implements error logging to the system log (see Section 5.4.2.7, “Error Logging to the System Log”), so this type of logging can be enabled by adding that component to thelog_error_servicessystem variable.log_syslogis removed. (Prior to MySQL 8.0.13,log_syslogexists but is deprecated and has no effect.) -
Property Value Command-Line Format --log-syslog-facility=valueRemoved 8.0.13 System Variable log_syslog_facilityScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value daemonThis variable was removed in MySQL 8.0.13 and replaced by
syseventlog.facility. -
Property Value Command-Line Format --log-syslog-include-pid[={OFF|ON}]Removed 8.0.13 System Variable log_syslog_include_pidScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONThis variable was removed in MySQL 8.0.13 and replaced by
syseventlog.include_pid. -
Property Value Command-Line Format --log-syslog-tag=tagRemoved 8.0.13 System Variable log_syslog_tagScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value empty stringThis variable was removed in MySQL 8.0.13 and replaced by
syseventlog.tag. -
Property Value Command-Line Format --log-timestamps=#System Variable log_timestampsScope Global Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value UTCValid Values UTCSYSTEMThis variable controls the time zone of timestamps in messages written to the error log, and in general query log and slow query log messages written to files. It does not affect the time zone of general query log and slow query log messages written to tables (
mysql.general_log,mysql.slow_log). Rows retrieved from those tables can be converted from the local system time zone to any desired time zone withCONVERT_TZ()or by setting the sessiontime_zonesystem variable.Permitted
log_timestampsvalues areUTC(the default) andSYSTEM(the local system time zone).Timestamps are written using ISO 8601 / RFC 3339 format:
plus a tail value ofYYYY-MM-DDThh:mm:ss.uuuuuuZsignifying Zulu time (UTC) or±hh:mm(an offset from UTC). log_throttle_queries_not_using_indexesProperty Value Command-Line Format --log-throttle-queries-not-using-indexes=#System Variable log_throttle_queries_not_using_indexesScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0If
log_queries_not_using_indexesis enabled, thelog_throttle_queries_not_using_indexesvariable limits the number of such queries per minute that can be written to the slow query log. A value of 0 (the default) means “no limit”. For more information, see Section 5.4.5, “The Slow Query Log”.-
Property Value Command-Line Format --long-query-time=#System Variable long_query_timeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Numeric Default Value 10Minimum Value 0If a query takes longer than this many seconds, the server increments the
Slow_queriesstatus variable. If the slow query log is enabled, the query is logged to the slow query log file. This value is measured in real time, not CPU time, so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one. The minimum and default values oflong_query_timeare 0 and 10, respectively. The value can be specified to a resolution of microseconds. See Section 5.4.5, “The Slow Query Log”.Smaller values of this variable result in more statements being considered long-running, with the result that more space is required for the slow query log. For very small values (less than one second), the log may grow quite large in a small time. Increasing the number of statements considered long-running may also result in false positives for the “excessive Number of Long Running Processes” alert in MySQL Enterprise Monitor, especially if Group Replication is enabled. For these reasons, very small values should be used in test environments only, or, in production environments, only for a short period.
-
Property Value Command-Line Format --low-priority-updates[={OFF|ON}]System Variable low_priority_updatesScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFIf set to
1, allINSERT,UPDATE,DELETE, andLOCK TABLE WRITEstatements wait until there is no pendingSELECTorLOCK TABLE READon the affected table. The same effect can be obtained using{INSERT | REPLACE | DELETE | UPDATE} LOW_PRIORITY ...to lower the priority of only one query. This variable affects only storage engines that use only table-level locking (such asMyISAM,MEMORY, andMERGE). See Section 8.11.2, “Table Locking Issues”. -
Property Value System Variable lower_case_file_systemScope Global Dynamic No SET_VARHint AppliesNo Type Boolean This variable describes the case sensitivity of file names on the file system where the data directory is located.
OFFmeans file names are case-sensitive,ONmeans they are not case-sensitive. This variable is read only because it reflects a file system attribute and setting it would have no effect on the file system. -
Property Value Command-Line Format --lower-case-table-names[=#]System Variable lower_case_table_namesScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 2If set to 0, table names are stored as specified and comparisons are case-sensitive. If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive. If set to 2, table names are stored as given but compared in lowercase. This option also applies to database names and table aliases. For additional details, see Section 9.2.3, “Identifier Case Sensitivity”.
On Windows the default value is 1. On macOS, the default value is 2. On Linux, a value of 2 is not supported; the server forces the value to 0 instead.
You should not set
lower_case_table_namesto 0 if you are running MySQL on a system where the data directory resides on a case-insensitive file system (such as on Windows or macOS). It is an unsupported combination that could result in a hang condition when running anINSERT INTO ... SELECT ... FROMoperation with the wrongtbl_nametbl_namelettercase. WithMyISAM, accessing table names using different lettercases could cause index corruption.An error message is printed and the server exits if you attempt to start the server with
--lower_case_table_names=0on a case-insensitive file system.If you are using
InnoDBtables, you should set this variable to 1 on all platforms to force names to be converted to lowercase.The setting of this variable affects the behavior of replication filtering options with regard to case sensitivity. For more information, see Section 17.2.5, “How Servers Evaluate Replication Filtering Rules”.
It is prohibited to start the server with a
lower_case_table_namessetting that is different from the setting used when the server was initialized. The restriction is necessary because collations used by various data dictionary table fields are determined by the setting defined when the server is initialized, and restarting the server with a different setting would introduce inconsistencies with respect to how identifiers are ordered and compared.It is therefore necessary to configure
lower_case_table_namesto the desired setting before initializing the server. In most cases, this requires configuringlower_case_table_namesin a MySQL option file before starting the MySQL server for the first time. For APT installations on Debian and Ubuntu, however, the server is initialized for you, and there is no opportunity to configure the setting in an option file beforehand. You must therefore use thedebconf-set-selectionutility prior to installing MySQL using APT to enablelower_case_table_names. To do so, run this command before installing MySQL using APT:shell> sudo debconf-set-selections <<< "mysql-server mysql-server/lowercase-table-names select EnabledNoteThe ability to enable
lower_case_table_namesusingdebconf-set-selectionswas added in MySQL 8.0.17. Enablinglower_case_table_namessets the value to 1. -
Property Value Command-Line Format --mandatory-roles=valueSystem Variable mandatory_rolesScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value empty stringRoles the server should treat as mandatory. In effect, these roles are automatically granted to every user, although setting
mandatory_rolesdoes not actually change any user accounts, and the granted roles are not visible in themysql.role_edgessystem table.The variable value is a comma-separated list of role names. Example:
SET PERSIST mandatory_roles = '`role1`@`%`,`role2`,role3,role4@localhost';Setting the runtime value of
mandatory_rolesrequires theROLE_ADMINprivilege, in addition to theSYSTEM_VARIABLES_ADMINprivilege (or the deprecatedSUPERprivilege) normally required to set a global system variable runtime value.Role names consist of a user part and host part in
format. The host part, if omitted, defaults touser_name@host_name%. For additional information, see Section 6.2.5, “Specifying Role Names”.The
mandatory_rolesvalue is a string, so user names and host names, if quoted, must be written in a fashion permitted for quoting within quoted strings.Roles named in the value of
mandatory_rolescannot be revoked withREVOKEor dropped withDROP ROLEorDROP USER.To prevent sessions from being made system sessions by default, a role that has the
SYSTEM_USERprivilege cannot be listed in the value of themandatory_rolessystem variable:If
mandatory_rolesis assigned a role at startup that has theSYSTEM_USERprivilege, the server writes a message to the error log and exits.If
mandatory_rolesis assigned a role at runtime that has theSYSTEM_USERprivilege, an error occurs and themandatory_rolesvalue remains unchanged.
Mandatory roles, like explicitly granted roles, do not take effect until activated (see Activating Roles). At login time, role activation occurs for all granted roles if the
activate_all_roles_on_loginsystem variable is enabled; otherwise, or for roles that are set as default roles otherwise. At runtime,SET ROLEactivates roles.Roles that do not exist when assigned to
mandatory_rolesbut are created later may require special treatment to be considered mandatory. For details, see Defining Mandatory Roles.SHOW GRANTSdisplays mandatory roles according to the rules described in Section 13.7.7.21, “SHOW GRANTS Statement”. -
Property Value Command-Line Format --max-allowed-packet=#System Variable max_allowed_packetScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 67108864Minimum Value 1024Maximum Value 1073741824The maximum size of one packet or any generated/intermediate string, or any parameter sent by the
mysql_stmt_send_long_data()C API function. The default is 64MB.The packet message buffer is initialized to
net_buffer_lengthbytes, but can grow up tomax_allowed_packetbytes when needed. This value by default is small, to catch large (possibly incorrect) packets.You must increase this value if you are using large
BLOBcolumns or long strings. It should be as big as the largestBLOByou want to use. The protocol limit formax_allowed_packetis 1GB. The value should be a multiple of 1024; nonmultiples are rounded down to the nearest multiple.When you change the message buffer size by changing the value of the
max_allowed_packetvariable, you should also change the buffer size on the client side if your client program permits it. The defaultmax_allowed_packetvalue built in to the client library is 1GB, but individual client programs might override this. For example, mysql and mysqldump have defaults of 16MB and 24MB, respectively. They also enable you to change the client-side value by settingmax_allowed_packeton the command line or in an option file.The session value of this variable is read only. The client can receive up to as many bytes as the session value. However, the server will not send to the client more bytes than the current global
max_allowed_packetvalue. (The global value could be less than the session value if the global value is changed after the client connects.) -
Property Value Command-Line Format --max-connect-errors=#System Variable max_connect_errorsScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 100Minimum Value 1Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295After
max_connect_errorssuccessive connection requests from a host are interrupted without a successful connection, the server blocks that host from further connections. If a connection from a host is established successfully within fewer thanmax_connect_errorsattempts after a previous connection was interrupted, the error count for the host is cleared to zero. However, once a host is blocked, flushing the host cache is the only way to unblock it. To flush the host cache, execute aFLUSH HOSTSstatement, aTRUNCATE TABLEstatement that truncates the Performance Schemahost_cachetable, or a mysqladmin flush-hosts command.For more information about how the host cache works, see Section 5.1.12.3, “DNS Lookups and the Host Cache”.
-
Property Value Command-Line Format --max-connections=#System Variable max_connectionsScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 151Minimum Value 1Maximum Value 100000The maximum permitted number of simultaneous client connections. For more information, see Section 5.1.12.1, “Connection Interfaces”.
-
Property Value Command-Line Format --max-delayed-threads=#Deprecated Yes System Variable max_delayed_threadsScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 20Minimum Value 0Maximum Value 16384This system variable is deprecated (because
DELAYEDinserts are not supported), and will be removed in a future release. -
Property Value Command-Line Format --max-digest-length=#System Variable max_digest_lengthScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 1024Minimum Value 0Maximum Value 1048576The maximum number of bytes of memory reserved per session for computation of normalized statement digests. Once that amount of space is used during digest computation, truncation occurs: no further tokens from a parsed statement are collected or figure into its digest value. Statements that differ only after that many bytes of parsed tokens produce the same normalized statement digest and are considered identical if compared or if aggregated for digest statistics.
Decreasing the
max_digest_lengthvalue reduces memory use but causes the digest value of more statements to become indistinguishable if they differ only at the end. Increasing the value permits longer statements to be distinguished but increases memory use, particularly for workloads that involve large numbers of simultaneous sessions (the server allocatesmax_digest_lengthbytes per session).The parser uses this system variable as a limit on the maximum length of normalized statement digests that it computes. The Performance Schema, if it tracks statement digests, makes a copy of the digest value, using the
performance_schema_max_digest_length. system variable as a limit on the maximum length of digests that it stores. Consequently, ifperformance_schema_max_digest_lengthis less thanmax_digest_length, digest values stored in the Performance Schema are truncated relative to the original digest values.For more information about statement digesting, see Section 26.10, “Performance Schema Statement Digests and Sampling”.
-
Property Value Command-Line Format --max-error-count=#System Variable max_error_countScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 1024Minimum Value 0Maximum Value 65535The maximum number of error, warning, and information messages to be stored for display by the
SHOW ERRORSandSHOW WARNINGSstatements. This is the same as the number of condition areas in the diagnostics area, and thus the number of conditions that can be inspected byGET DIAGNOSTICS. -
Property Value Command-Line Format --max-execution-time=#System Variable max_execution_timeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 0The execution timeout for
SELECTstatements, in milliseconds. If the value is 0, timeouts are not enabled.max_execution_timeapplies as follows:The global
max_execution_timevalue provides the default for the session value for new connections. The session value applies toSELECTexecutions executed within the session that include noMAX_EXECUTION_TIME(optimizer hint or for whichN)Nis 0.max_execution_timeapplies to read-onlySELECTstatements. Statements that are not read only are those that invoke a stored function that modifies data as a side effect.max_execution_timeis ignored forSELECTstatements in stored programs.
-
Property Value Command-Line Format --max-heap-table-size=#System Variable max_heap_table_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 16777216Minimum Value 16384Maximum Value (64-bit platforms) 1844674407370954752Maximum Value (32-bit platforms) 4294967295This variable sets the maximum size to which user-created
MEMORYtables are permitted to grow. The value of the variable is used to calculateMEMORYtableMAX_ROWSvalues. Setting this variable has no effect on any existingMEMORYtable, unless the table is re-created with a statement such asCREATE TABLEor altered withALTER TABLEorTRUNCATE TABLE. A server restart also sets the maximum size of existingMEMORYtables to the globalmax_heap_table_sizevalue.This variable is also used in conjunction with
tmp_table_sizeto limit the size of internal in-memory tables. See Section 8.4.4, “Internal Temporary Table Use in MySQL”.max_heap_table_sizeis not replicated. See Section 17.5.1.21, “Replication and MEMORY Tables”, and Section 17.5.1.38, “Replication and Variables”, for more information. -
Property Value Deprecated Yes System Variable max_insert_delayed_threadsScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer This variable is a synonym for
max_delayed_threads.This system variable is deprecated (because
DELAYEDinserts are not supported), and will be removed in a future release. -
Property Value Command-Line Format --max-join-size=#System Variable max_join_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 18446744073709551615Minimum Value 1Maximum Value 18446744073709551615Do not permit statements that probably need to examine more than
max_join_sizerows (for single-table statements) or row combinations (for multiple-table statements) or that are likely to do more thanmax_join_sizedisk seeks. By setting this value, you can catch statements where keys are not used properly and that would probably take a long time. Set it if your users tend to perform joins that lack aWHEREclause, that take a long time, or that return millions of rows. For more information, see Using Safe-Updates Mode (--safe-updates).Setting this variable to a value other than
DEFAULTresets the value ofsql_big_selectsto0. If you set thesql_big_selectsvalue again, themax_join_sizevariable is ignored. -
Property Value Command-Line Format --max-length-for-sort-data=#Deprecated 8.0.20 System Variable max_length_for_sort_dataScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 4096Minimum Value 4Maximum Value 8388608This variable is deprecated as of MySQL 8.0.20 due to optimizer changes that make it obsolete and of no effect. Previously, it acted as the cutoff on the size of index values that determines which
filesortalgorithm to use. See Section 8.2.1.16, “ORDER BY Optimization”. -
Property Value Command-Line Format --max-points-in-geometry=#System Variable max_points_in_geometryScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 65536Minimum Value 3Maximum Value 1048576The maximum value of the
points_per_circleargument to theST_Buffer_Strategy()function. -
Property Value Command-Line Format --max-prepared-stmt-count=#System Variable max_prepared_stmt_countScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 16382Minimum Value 0Maximum Value (≥ 8.0.18) 4194304Maximum Value (≤ 8.0.17) 1048576This variable limits the total number of prepared statements in the server. It can be used in environments where there is the potential for denial-of-service attacks based on running the server out of memory by preparing huge numbers of statements. If the value is set lower than the current number of prepared statements, existing statements are not affected and can be used, but no new statements can be prepared until the current number drops below the limit. Setting the value to 0 disables prepared statements.
-
Property Value Command-Line Format --max-seeks-for-key=#System Variable max_seeks_for_keyScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value (64-bit platforms) 18446744073709551615Default Value (32-bit platforms) 4294967295Minimum Value 1Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295Limit the assumed maximum number of seeks when looking up rows based on a key. The MySQL optimizer assumes that no more than this number of key seeks are required when searching for matching rows in a table by scanning an index, regardless of the actual cardinality of the index (see Section 13.7.7.22, “SHOW INDEX Statement”). By setting this to a low value (say, 100), you can force MySQL to prefer indexes instead of table scans.
-
Property Value Command-Line Format --max-sort-length=#System Variable max_sort_lengthScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 1024Minimum Value 4Maximum Value 8388608The number of bytes to use when sorting data values. The server uses only the first
max_sort_lengthbytes of each value and ignores the rest. Consequently, values that differ only after the firstmax_sort_lengthbytes compare as equal forGROUP BY,ORDER BY, andDISTINCToperations.Increasing the value of
max_sort_lengthmay require increasing the value ofsort_buffer_sizeas well. For details, see Section 8.2.1.16, “ORDER BY Optimization” -
Property Value Command-Line Format --max-sp-recursion-depth[=#]System Variable max_sp_recursion_depthScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Maximum Value 255The number of times that any given stored procedure may be called recursively. The default value for this option is 0, which completely disables recursion in stored procedures. The maximum value is 255.
Stored procedure recursion increases the demand on thread stack space. If you increase the value of
max_sp_recursion_depth, it may be necessary to increase thread stack size by increasing the value ofthread_stackat server startup. -
Property Value Command-Line Format --max-user-connections=#System Variable max_user_connectionsScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 4294967295The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means “no limit.”
This variable has a global value that can be set at server startup or runtime. It also has a read-only session value that indicates the effective simultaneous-connection limit that applies to the account associated with the current session. The session value is initialized as follows:
If the user account has a nonzero
MAX_USER_CONNECTIONSresource limit, the sessionmax_user_connectionsvalue is set to that limit.Otherwise, the session
max_user_connectionsvalue is set to the global value.
Account resource limits are specified using the
CREATE USERorALTER USERstatement. See Section 6.2.20, “Setting Account Resource Limits”. -
Property Value Command-Line Format --max-write-lock-count=#System Variable max_write_lock_countScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value (64-bit platforms) 18446744073709551615Default Value (32-bit platforms) 4294967295Minimum Value 1Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295After this many write locks, permit some pending read lock requests to be processed in between. Write lock requests have higher priority than read lock requests. However, if
max_write_lock_countis set to some low value (say, 10), read lock requests may be preferred over pending write lock requests if the read lock requests have already been passed over in favor of 10 write lock requests. Normally this behavior does not occur becausemax_write_lock_countby default has a very large value. -
Property Value Command-Line Format --mecab-rc-file=file_nameSystem Variable mecab_rc_fileScope Global Dynamic No SET_VARHint AppliesNo Type File name The
mecab_rc_fileoption is used when setting up the MeCab full-text parser.The
mecab_rc_fileoption defines the path to themecabrcconfiguration file, which is the configuration file for MeCab. The option is read-only and can only be set at startup. Themecabrcconfiguration file is required to initialize MeCab.For information about the MeCab full-text parser, see Section 12.9.9, “MeCab Full-Text Parser Plugin”.
For information about options that can be specified in the MeCab
mecabrcconfiguration file, refer to the MeCab Documentation on the Google Developers site. -
Property Value Command-Line Format --metadata-locks-cache-size=#Deprecated Yes (removed in 8.0.13) System Variable metadata_locks_cache_sizeScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 1024Minimum Value 1Maximum Value 1048576This system variable was removed in MySQL 8.0.13.
-
Property Value Command-Line Format --metadata-locks-hash-instances=#Deprecated Yes (removed in 8.0.13) System Variable metadata_locks_hash_instancesScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 8Minimum Value 1Maximum Value 1024This system variable was removed in MySQL 8.0.13.
-
Property Value Command-Line Format --min-examined-row-limit=#System Variable min_examined_row_limitScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295Queries that examine fewer than this number of rows are not logged to the slow query log.
-
Property Value Command-Line Format --myisam-data-pointer-size=#System Variable myisam_data_pointer_sizeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 6Minimum Value 2Maximum Value 7The default pointer size in bytes, to be used by
CREATE TABLEforMyISAMtables when noMAX_ROWSoption is specified. This variable cannot be less than 2 or larger than 7. The default value is 6. See Section B.4.2.11, “The table is full”. -
Property Value Command-Line Format --myisam-max-sort-file-size=#System Variable myisam_max_sort_file_sizeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value (64-bit platforms) 9223372036854775807Default Value (32-bit platforms) 2147483648The maximum size of the temporary file that MySQL is permitted to use while re-creating a
MyISAMindex (duringREPAIR TABLE,ALTER TABLE, orLOAD DATA). If the file size would be larger than this value, the index is created using the key cache instead, which is slower. The value is given in bytes.If
MyISAMindex files exceed this size and disk space is available, increasing the value may help performance. The space must be available in the file system containing the directory where the original index file is located. -
Property Value Command-Line Format --myisam-mmap-size=#System Variable myisam_mmap_sizeScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value (64-bit platforms) 18446744073709551615Default Value (32-bit platforms) 4294967295Minimum Value 7Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295The maximum amount of memory to use for memory mapping compressed
MyISAMfiles. If many compressedMyISAMtables are used, the value can be decreased to reduce the likelihood of memory-swapping problems. -
Property Value Command-Line Format --myisam-recover-options[=list]System Variable myisam_recover_optionsScope Global Dynamic No SET_VARHint AppliesNo Type Enumeration Default Value OFFValid Values OFFDEFAULTBACKUPFORCEQUICKSet the
MyISAMstorage engine recovery mode. The variable value is any combination of the values ofOFF,DEFAULT,BACKUP,FORCE, orQUICK. If you specify multiple values, separate them by commas. Specifying the variable with no value at server startup is the same as specifyingDEFAULT, and specifying with an explicit value of""disables recovery (same as a value ofOFF). If recovery is enabled, each time mysqld opens aMyISAMtable, it checks whether the table is marked as crashed or was not closed properly. (The last option works only if you are running with external locking disabled.) If this is the case, mysqld runs a check on the table. If the table was corrupted, mysqld attempts to repair it.The following options affect how the repair works.
Option Description OFFNo recovery. DEFAULTRecovery without backup, forcing, or quick checking. BACKUPIf the data file was changed during recovery, save a backup of the file astbl_name.MYD.tbl_name-datetime.BAKFORCERun recovery even if we would lose more than one row from the .MYDfile.QUICKDo not check the rows in the table if there are not any delete blocks. Before the server automatically repairs a table, it writes a note about the repair to the error log. If you want to be able to recover from most problems without user intervention, you should use the options
BACKUP,FORCE. This forces a repair of a table even if some rows would be deleted, but it keeps the old data file as a backup so that you can later examine what happened. -
Property Value Command-Line Format --myisam-repair-threads=#System Variable myisam_repair_threadsScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 1Minimum Value 1Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295If this value is greater than 1,
MyISAMtable indexes are created in parallel (each index in its own thread) during theRepair by sortingprocess. The default value is 1.NoteMultithreaded repair is still beta-quality code.
-
Property Value Command-Line Format --myisam-sort-buffer-size=#System Variable myisam_sort_buffer_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 8388608Minimum Value 4096Maximum Value (Other, 64-bit platforms) 18446744073709551615Maximum Value (Other, 32-bit platforms) 4294967295Maximum Value (Windows, 64-bit platforms) 18446744073709551615Maximum Value (Windows, 32-bit platforms) 4294967295The size of the buffer that is allocated when sorting
MyISAMindexes during aREPAIR TABLEor when creating indexes withCREATE INDEXorALTER TABLE. -
Property Value Command-Line Format --myisam-stats-method=nameSystem Variable myisam_stats_methodScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value nulls_unequalValid Values nulls_equalnulls_unequalnulls_ignoredHow the server treats
NULLvalues when collecting statistics about the distribution of index values forMyISAMtables. This variable has three possible values,nulls_equal,nulls_unequal, andnulls_ignored. Fornulls_equal, allNULLindex values are considered equal and form a single value group that has a size equal to the number ofNULLvalues. Fornulls_unequal,NULLvalues are considered unequal, and eachNULLforms a distinct value group of size 1. Fornulls_ignored,NULLvalues are ignored.The method that is used for generating table statistics influences how the optimizer chooses indexes for query execution, as described in Section 8.3.8, “InnoDB and MyISAM Index Statistics Collection”.
-
Property Value Command-Line Format --myisam-use-mmap[={OFF|ON}]System Variable myisam_use_mmapScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFUse memory mapping for reading and writing
MyISAMtables. mysql_native_password_proxy_usersProperty Value Command-Line Format --mysql-native-password-proxy-users[={OFF|ON}]System Variable mysql_native_password_proxy_usersScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFThis variable controls whether the
mysql_native_passwordbuilt-in authentication plugin supports proxy users. It has no effect unless thecheck_proxy_userssystem variable is enabled. For information about user proxying, see Section 6.2.18, “Proxy Users”.-
Property Value Command-Line Format --named-pipe[={OFF|ON}]System Variable named_pipeScope Global Dynamic No SET_VARHint AppliesNo Platform Specific Windows Type Boolean Default Value OFF(Windows only.) Indicates whether the server supports connections over named pipes.
-
Property Value Command-Line Format --named-pipe-full-access-group=valueIntroduced 8.0.14 System Variable named_pipe_full_access_groupScope Global Dynamic No SET_VARHint AppliesNo Platform Specific Windows Type String Default Value *everyone*Valid Values *everyone*empty string(Windows only.) The access control granted to clients on the named pipe created by the MySQL server is set to the minimum necessary for successful communication when the
named_pipesystem variable is enabled to support named-pipe connections. Newer MySQL client software can open named pipe connections without any additional configuration, however, older client software may still require full access to open a named pipe connection.This variable sets the name of a Windows local group whose members are granted sufficient access by the MySQL server to use older named-pipe clients. Initially, the value is set to
'*everyone*'by default, which permits users of the Everyone group on Windows to continue using older clients until the older clients are upgraded. In contrast, setting the value to an empty string means that no Windows user will be granted full access to the named pipe. The default value'*everyone*'provides a language-independent way of referring to the Everyone group on Windows.Ideally, a new Windows local group name (for example,
mysql_old_client_users) should be created in Windows and then used to replace the default value for this variable when access to older client software is absolutely necessary. In this case, limit the membership of the group to as few users as possible, removing users from the group when their client software is upgraded. A non-member of the group who attempts to open a connection to MySQL with the older named-pipe client is denied access until the user is added to the group by a Windows administrator, and then the user logs out and logs in (required by Windows). -
Property Value Command-Line Format --net-buffer-length=#System Variable net_buffer_lengthScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 16384Minimum Value 1024Maximum Value 1048576Each client thread is associated with a connection buffer and result buffer. Both begin with a size given by
net_buffer_lengthbut are dynamically enlarged up tomax_allowed_packetbytes as needed. The result buffer shrinks tonet_buffer_lengthafter each SQL statement.This variable should not normally be changed, but if you have very little memory, you can set it to the expected length of statements sent by clients. If statements exceed this length, the connection buffer is automatically enlarged. The maximum value to which
net_buffer_lengthcan be set is 1MB.The session value of this variable is read only.
-
Property Value Command-Line Format --net-read-timeout=#System Variable net_read_timeoutScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 30Minimum Value 1The number of seconds to wait for more data from a connection before aborting the read. When the server is reading from the client,
net_read_timeoutis the timeout value controlling when to abort. When the server is writing to the client,net_write_timeoutis the timeout value controlling when to abort. See alsoslave_net_timeout. -
Property Value Command-Line Format --net-retry-count=#System Variable net_retry_countScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 10Minimum Value 1Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295If a read or write on a communication port is interrupted, retry this many times before giving up. This value should be set quite high on FreeBSD because internal interrupts are sent to all threads.
-
Property Value Command-Line Format --net-write-timeout=#System Variable net_write_timeoutScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 60Minimum Value 1The number of seconds to wait for a block to be written to a connection before aborting the write. See also
net_read_timeout. -
Property Value Command-Line Format --new[={OFF|ON}]System Variable newScope Global, Session Dynamic Yes SET_VARHint AppliesNo Disabled by skip-newType Boolean Default Value OFFThis variable was used in MySQL 4.0 to turn on some 4.1 behaviors, and is retained for backward compatibility. Its value is always
OFF.In NDB Cluster, setting this variable to
ONmakes it possible to employ partitioning types other thanKEYorLINEAR KEYwithNDBtables. This feature is experimental only, and not supported in production. For additional information, see User-defined partitioning and the NDB storage engine (NDB Cluster). -
Property Value Command-Line Format --ngram-token-size=#System Variable ngram_token_sizeScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 2Minimum Value 1Maximum Value 10Defines the n-gram token size for the n-gram full-text parser. The
ngram_token_sizeoption is read-only and can only be modified at startup. The default value is 2 (bigram). The maximum value is 10.For more information about how to configure this variable, see Section 12.9.8, “ngram Full-Text Parser”.
-
Property Value Command-Line Format --offline-mode[={OFF|ON}]System Variable offline_modeScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFWhether the server is in “offline mode”, which has these characteristics:
Connected client users who do not have the
CONNECTION_ADMINprivilege (or the deprecatedSUPERprivilege) are disconnected on the next request, with an appropriate error. Disconnection includes terminating running statements and releasing locks. Such clients also cannot initiate new connections, and receive an appropriate error.Connected client users who have the
CONNECTION_ADMINorSUPERprivilege are not disconnected, and can initiate new connections to manage the server.Replication slave threads are permitted to keep applying data to the server.
Only users who have the
SYSTEM_VARIABLES_ADMINorSUPERprivilege can control offline mode. To put a server in offline mode, change the value of theoffline_modesystem variable fromOFFtoON. To resume normal operations, changeoffline_modefromONtoOFF. In offline mode, clients that are refused access receive anER_SERVER_OFFLINE_MODEerror. -
Property Value Command-Line Format --old[={OFF|ON}]System Variable oldScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value OFFoldis a compatibility variable. It is disabled by default, but can be enabled at startup to revert the server to behaviors present in older versions.When
oldis enabled, it changes the default scope of index hints to that used prior to MySQL 5.1.17. That is, index hints with noFORclause apply only to how indexes are used for row retrieval and not to resolution ofORDER BYorGROUP BYclauses. (See Section 8.9.4, “Index Hints”.) Take care about enabling this in a replication setup. With statement-based binary logging, having different modes for the master and slaves might lead to replication errors. -
Property Value Command-Line Format --old-alter-table[={OFF|ON}]System Variable old_alter_tableScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFWhen this variable is enabled, the server does not use the optimized method of processing an
ALTER TABLEoperation. It reverts to using a temporary table, copying over the data, and then renaming the temporary table to the original, as used by MySQL 5.0 and earlier. For more information on the operation ofALTER TABLE, see Section 13.1.9, “ALTER TABLE Statement”.ALTER TABLE ... DROP PARTITIONwithold_alter_table=ONrebuilds the partitioned table and attempts to move data from the dropped partition to another partition with a compatiblePARTITION ... VALUESdefinition. Data that cannot be moved to another partition is deleted. In earlier releases,ALTER TABLE ... DROP PARTITIONwithold_alter_table=ONdeletes data stored in the partition and drops the partition. -
Property Value Command-Line Format --open-files-limit=#System Variable open_files_limitScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 5000, with possible adjustmentMinimum Value 0Maximum Value platform dependentThe number of file descriptors available to mysqld from the operating system. mysqld reserves descriptors with
setrlimit(), using the value requested at startup by setting this variable directly or by using the--open-files-limitoption to mysqld_safe. If mysqld produces the errorToo many open files, try increasing theopen_files_limitvalue. Internally, the maximum value for this variable is the maximum unsigned integer value, but the actual maximum is platform dependent.The value of
open_files_limitat runtime indicates the number of file descriptors actually permitted to mysqld by the operating system, which might differ from the value requested at startup. If the number of file descriptors requested during startup cannot be allocated, mysqld writes a warning to the error log.The effective
open_files_limitvalue is based on the value specified at system startup (if any) and the values ofmax_connectionsandtable_open_cache, using these formulas:10 + max_connections + (table_open_cache * 2)max_connections * 5Operating system limit if that limit is positive but not Infinity
If operating system limit is Infinity:
open_files_limitvalue if specified at startup, 5000 if not
The server attempts to obtain the number of file descriptors using the maximum of those values, capped to the maximum unsigned integer value. If that many descriptors cannot be obtained, the server attempts to obtain as many as the system will permit.
The effective value is 0 on systems where MySQL cannot change the number of open files.
On Unix, the value cannot be set greater than ulimit -n.
-
Property Value Command-Line Format --optimizer-prune-level=#System Variable optimizer_prune_levelScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 1Minimum Value 0Maximum Value 1Controls the heuristics applied during query optimization to prune less-promising partial plans from the optimizer search space. A value of 0 disables heuristics so that the optimizer performs an exhaustive search. A value of 1 causes the optimizer to prune plans based on the number of rows retrieved by intermediate plans.
-
Property Value Command-Line Format --optimizer-search-depth=#System Variable optimizer_search_depthScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 62Minimum Value 0Maximum Value 62The maximum depth of search performed by the query optimizer. Values larger than the number of relations in a query result in better query plans, but take longer to generate an execution plan for a query. Values smaller than the number of relations in a query return an execution plan quicker, but the resulting plan may be far from being optimal. If set to 0, the system automatically picks a reasonable value.
-
Property Value Command-Line Format --optimizer-switch=valueSystem Variable optimizer_switchScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Set Valid Values (≥ 8.0.21) batched_key_access={on|off}block_nested_loop={on|off}condition_fanout_filter={on|off}derived_merge={on|off}duplicateweedout={on|off}engine_condition_pushdown={on|off}firstmatch={on|off}hash_join={on|off}index_condition_pushdown={on|off}index_merge={on|off}index_merge_intersection={on|off}index_merge_sort_union={on|off}index_merge_union={on|off}loosescan={on|off}materialization={on|off}mrr={on|off}mrr_cost_based={on|off}prefer_ordering_index={on|off}semijoin={on|off}skip_scan={on|off}subquery_materialization_cost_based={on|off}use_index_extensions={on|off}use_invisible_indexes={on|off}Valid Values (≥ 8.0.18) batched_key_access={on|off}block_nested_loop={on|off}condition_fanout_filter={on|off}derived_merge={on|off}duplicateweedout={on|off}engine_condition_pushdown={on|off}firstmatch={on|off}hash_join={on|off}index_condition_pushdown={on|off}index_merge={on|off}index_merge_intersection={on|off}index_merge_sort_union={on|off}index_merge_union={on|off}loosescan={on|off}materialization={on|off}mrr={on|off}mrr_cost_based={on|off}semijoin={on|off}skip_scan={on|off}subquery_materialization_cost_based={on|off}use_index_extensions={on|off}use_invisible_indexes={on|off}Valid Values (≥ 8.0.13) batched_key_access={on|off}block_nested_loop={on|off}condition_fanout_filter={on|off}derived_merge={on|off}duplicateweedout={on|off}engine_condition_pushdown={on|off}firstmatch={on|off}index_condition_pushdown={on|off}index_merge={on|off}index_merge_intersection={on|off}index_merge_sort_union={on|off}index_merge_union={on|off}loosescan={on|off}materialization={on|off}mrr={on|off}mrr_cost_based={on|off}semijoin={on|off}skip_scan={on|off}subquery_materialization_cost_based={on|off}use_index_extensions={on|off}use_invisible_indexes={on|off}Valid Values (≤ 8.0.12) batched_key_access={on|off}block_nested_loop={on|off}condition_fanout_filter={on|off}derived_merge={on|off}duplicateweedout={on|off}engine_condition_pushdown={on|off}firstmatch={on|off}index_condition_pushdown={on|off}index_merge={on|off}index_merge_intersection={on|off}index_merge_sort_union={on|off}index_merge_union={on|off}loosescan={on|off}materialization={on|off}mrr={on|off}mrr_cost_based={on|off}semijoin={on|off}subquery_materialization_cost_based={on|off}use_index_extensions={on|off}use_invisible_indexes={on|off}The
optimizer_switchsystem variable enables control over optimizer behavior. The value of this variable is a set of flags, each of which has a value ofonoroffto indicate whether the corresponding optimizer behavior is enabled or disabled. This variable has global and session values and can be changed at runtime. The global default can be set at server startup.To see the current set of optimizer flags, select the variable value:
mysql> SELECT @@optimizer_switch\G *************************** 1. row *************************** @@optimizer_switch: index_merge=on,index_merge_union=on, index_merge_sort_union=on,index_merge_intersection=on, engine_condition_pushdown=on,index_condition_pushdown=on, mrr=on,mrr_cost_based=on,block_nested_loop=on, batched_key_access=off,materialization=on,semijoin=on, loosescan=on,firstmatch=on,duplicateweedout=on, subquery_materialization_cost_based=on, use_index_extensions=on,condition_fanout_filter=on, derived_merge=on,use_invisible_indexes=off,skip_scan=on, hash_join=on,subquery_to_derived=off, prefer_ordering_index=onFor more information about the syntax of this variable and the optimizer behaviors that it controls, see Section 8.9.2, “Switchable Optimizations”.
-
Property Value Command-Line Format --optimizer-trace=valueSystem Variable optimizer_traceScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String This variable controls optimizer tracing. For details, see MySQL Internals: Tracing the Optimizer.
-
Property Value Command-Line Format --optimizer-trace-features=valueSystem Variable optimizer_trace_featuresScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String This variable enables or disables selected optimizer tracing features. For details, see MySQL Internals: Tracing the Optimizer.
-
Property Value Command-Line Format --optimizer-trace-limit=#System Variable optimizer_trace_limitScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 1The maximum number of optimizer traces to display. For details, see MySQL Internals: Tracing the Optimizer.
-
Property Value Command-Line Format --optimizer-trace-max-mem-size=#System Variable optimizer_trace_max_mem_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 1048576The maximum cumulative size of stored optimizer traces. For details, see MySQL Internals: Tracing the Optimizer.
-
Property Value Command-Line Format --optimizer-trace-offset=#System Variable optimizer_trace_offsetScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value -1The offset of optimizer traces to display. For details, see MySQL Internals: Tracing the Optimizer.
performance_schema_xxxPerformance Schema system variables are listed in Section 26.15, “Performance Schema System Variables”. These variables may be used to configure Performance Schema operation.
-
Property Value Command-Line Format --parser-max-mem-size=#System Variable parser_max_mem_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value (64-bit platforms) 18446744073709551615Default Value (32-bit platforms) 4294967295Minimum Value 10000000Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295The maximum amount of memory available to the parser. The default value places no limit on memory available. The value can be reduced to protect against out-of-memory situations caused by parsing long or complex SQL statements.
-
Property Value Command-Line Format --partial-revokes[={OFF|ON}]Introduced 8.0.16 System Variable partial_revokesScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFF(if partial revokes do not exist)ON(if partial revokes exist)Enabling this variable makes it possible to revoke privileges partially. Specifically, for users who have privileges at the global level,
partial_revokesenables privileges for specific schemas to be revoked while leaving the privileges in place for other schemas. For example, a user who has the globalUPDATEprivilege can be restricted from exercising this privilege on themysqlsystem schema. (Or, stated another way, the user is enabled to exercise theUPDATEprivilege on all schemas except themysqlschema.) In this sense, the user's globalUPDATEprivilege is partially revoked.Once enabled,
partial_revokescannot be disabled if any account has privilege restrictions. If any such account exists, disablingpartial_revokesfails:For attempts to disable
partial_revokesat startup, the server logs an error message and enablespartial_revokes.For attempts to disable
partial_revokesat runtime, an error occurs and thepartial_revokesvalue remains unchanged.
To disable
partial_revokesin this case, first modify each account that has partially revoked privileges, either by re-granting the privileges or by removing the account.For more information, including instructions for removing partial revokes, see Section 6.2.12, “Privilege Restriction Using Partial Revokes”.
-
Property Value Command-Line Format --password-history=#System Variable password_historyScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 4294967295This variable defines the global policy for controlling reuse of previous passwords based on required minimum number of password changes. For an account password used previously, this variable indicates the number of subsequent account password changes that must occur before the password can be reused. If the value is 0 (the default), there is no reuse restriction based on number of password changes.
Changes to this variable apply immediately to all accounts defined with the
PASSWORD HISTORY DEFAULToption.The global number-of-changes password reuse policy can be overridden as desired for individual accounts using the
PASSWORD HISTORYoption of theCREATE USERandALTER USERstatements. See Section 6.2.15, “Password Management”. -
Property Value Command-Line Format --password-require-current[={OFF|ON}]Introduced 8.0.13 System Variable password_require_currentScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFThis variable defines the global policy for controlling whether attempts to change an account password must specify the current password to be replaced.
Changes to this variable apply immediately to all accounts defined with the
PASSWORD REQUIRE CURRENT DEFAULToption.The global verification-required policy can be overridden as desired for individual accounts using the
PASSWORD REQUIREoption of theCREATE USERandALTER USERstatements. See Section 6.2.15, “Password Management”. -
Property Value Command-Line Format --password-reuse-interval=#System Variable password_reuse_intervalScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 4294967295This variable defines the global policy for controlling reuse of previous passwords based on time elapsed. For an account password used previously, this variable indicates the number of days that must pass before the password can be reused. If the value is 0 (the default), there is no reuse restriction based on time elapsed.
Changes to this variable apply immediately to all accounts defined with the
PASSWORD REUSE INTERVAL DEFAULToption.The global time-elapsed password reuse policy can be overridden as desired for individual accounts using the
PASSWORD REUSE INTERVALoption of theCREATE USERandALTER USERstatements. See Section 6.2.15, “Password Management”. -
Property Value Command-Line Format --persisted-globals-load[={OFF|ON}]System Variable persisted_globals_loadScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value ONWhether to load persisted configuration settings from the
mysqld-auto.cnffile in the data directory. The server normally processes this file at startup after all other option files (see Section 4.2.2.2, “Using Option Files”). Disablingpersisted_globals_loadcauses the server startup sequence to skipmysqld-auto.cnf.To modify the contents of
mysqld-auto.cnf, use theSET PERSIST,SET PERSIST_ONLY, andRESET PERSISTstatements. See Section 5.1.9.3, “Persisted System Variables”. persist_only_admin_x509_subjectProperty Value Command-Line Format --persist-only-admin-x509-subject=stringIntroduced 8.0.14 System Variable persist_only_admin_x509_subjectScope Global Dynamic No SET_VARHint AppliesNo Type String Default Value empty stringSET PERSISTandSET PERSIST_ONLYenable system variables to be persisted to themysqld-auto.cnfoption file in the data directory (see Section 13.7.6.1, “SET Syntax for Variable Assignment”). Persisting system variables enables runtime configuration changes that affect subsequent server restarts, which is convenient for remote administration not requiring direct access to MySQL server host option files. However, some system variables are nonpersistible or acan be persisted only under certain restrictive conditions.The
persist_only_admin_x509_subjectsystem variable specifies the SSL certificate X.509 Subject value that users must have to be able to persist system variables that are persist-restricted. The default value is the empty string, which disables the Subject check so that persist-restricted system variables cannot be persisted by any user.If
persist_only_admin_x509_subjectis nonempty, users who connect to the server using an encrypted connection and supply an SSL certificate with the designated Subject value then can useSET PERSIST_ONLYto persist persist-restricted system variables. For information about persist-restricted system variables and instructions for configuring MySQL to enablepersist_only_admin_x509_subject, see Section 5.1.9.4, “Nonpersistible and Persist-Restricted System Variables”.-
Property Value Command-Line Format --pid-file=file_nameSystem Variable pid_fileScope Global Dynamic No SET_VARHint AppliesNo Type File name The path name of the file in which the server writes its process ID. The server creates the file in the data directory unless an absolute path name is given to specify a different directory. If you specify this variable, you must specify a value. If you do not specify this variable, MySQL uses a default value of
, wherehost_name.pidhost_nameis the name of the host machine.The process ID file is used by other programs such as mysqld_safe to determine the server's process ID. On Windows, this variable also affects the default error log file name. See Section 5.4.2, “The Error Log”.
-
Property Value Command-Line Format --plugin-dir=dir_nameSystem Variable plugin_dirScope Global Dynamic No SET_VARHint AppliesNo Type Directory name Default Value BASEDIR/lib/pluginThe path name of the plugin directory.
If the plugin directory is writable by the server, it may be possible for a user to write executable code to a file in the directory using
SELECT ... INTO DUMPFILE. This can be prevented by makingplugin_dirread only to the server or by settingsecure_file_privto a directory whereSELECTwrites can be made safely. -
Property Value Command-Line Format --port=port_numSystem Variable portScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 3306Minimum Value 0Maximum Value 65535The number of the port on which the server listens for TCP/IP connections. This variable can be set with the
--portoption. -
Property Value Command-Line Format --preload-buffer-size=#System Variable preload_buffer_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 32768Minimum Value 1024Maximum Value 1073741824The size of the buffer that is allocated when preloading indexes.
-
Property Value Command-Line Format --print-identified-with-as-hex[={OFF|ON}]Introduced 8.0.17 System Variable print_identified_with_as_hexScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFPassword hash values displayed in the
IDENTIFIED WITHclause of output fromSHOW CREATE USERmay contain unprintable characters that have adverse effects on terminal displays and in other environments. Enablingprint_identified_with_as_hexcausesSHOW CREATE USERto display such hash values as hexadecimal strings rather than as regular string literals. Hash values that do not contain unprintable characters still display as regular string literals, even with this variable enabled. If set to 0 or
OFF(the default), statement profiling is disabled. If set to 1 orON, statement profiling is enabled and theSHOW PROFILEandSHOW PROFILESstatements provide access to profiling information. See Section 13.7.7.31, “SHOW PROFILES Statement”.This variable is deprecated and will be removed in a future MySQL release.
The number of statements for which to maintain profiling information if
profilingis enabled. The default value is 15. The maximum value is 100. Setting the value to 0 effectively disables profiling. See Section 13.7.7.31, “SHOW PROFILES Statement”.This variable is deprecated and will be removed in a future MySQL release.
protocol_compression_algorithmsProperty Value Command-Line Format --protocol-compression-algorithms=valueIntroduced 8.0.18 System Variable protocol_compression_algorithmsScope Global Dynamic Yes SET_VARHint AppliesNo Type Set Default Value zlib,zstd,uncompressedValid Values zlibzstduncompressedThe compression algorithms that the server permits for incoming connections. These include connections by client programs and by servers participating in master/slave replication or Group Replication. Compression does not apply to connections for
FEDERATEDtables.protocol_compression_algorithmsdoes not control connection compression for X Protocol. See Section 20.5.5, “Connection Compression with X Plugin” for information on how this operates.The variable value is a list of one or more comma-separated compression algorithm names, in any order, chosen from the following items (not case-sensitive):
zlib: Permit connections that use thezlibcompression algorithm.zstd: Permit connections that use thezstdcompression algorithm (zstd 1.3).uncompressed: Permit uncompressed connections. If this algorithm name is not included in theprotocol_compression_algorithmsvalue, the server does not permit uncompressed connections. It permits only compressed connections that use whichever other algorithms are specified in the value, and there is no fallback to uncompressed connections.
The default value of
zlib,zstd,uncompressedindicates that the server permits all compression algorithms.For more information, see Section 4.2.7, “Connection Compression Control”.
-
Property Value System Variable protocol_versionScope Global Dynamic No SET_VARHint AppliesNo Type Integer The version of the client/server protocol used by the MySQL server.
-
Property Value System Variable proxy_userScope Session Dynamic No SET_VARHint AppliesNo Type String If the current client is a proxy for another user, this variable is the proxy user account name. Otherwise, this variable is
NULL. See Section 6.2.18, “Proxy Users”. -
Property Value System Variable pseudo_slave_modeScope Session Dynamic Yes SET_VARHint AppliesNo Type Integer This system variable is for internal server use.
pseudo_slave_modeassists with the correct handling of transactions that originated on older or newer servers than the server currently processing them. mysqlbinlog sets the value ofpseudo_slave_modeto true before executing any SQL statements.Setting the session value of this system variable is a restricted operation. The session user must have either the
REPLICATION_APPLIERprivilege (see Section 17.3.3, “Replication Privilege Checks”), or privileges sufficient to set restricted session variables (see Section 5.1.9.1, “System Variable Privileges”). However, note that the variable is not intended for users to set; it is set automatically by the replication infrastructure.pseudo_slave_modehas the following effects on the handling of prepared XA transactions, which can be attached to or detached from the handling session (by default, the session that issuesXA START):If true, and the handling session has executed an internal-use
BINLOGstatement, XA transactions are automatically detached from the session as soon as the first part of the transaction up toXA PREPAREfinishes, so they can be committed or rolled back by any session that has theXA_RECOVER_ADMINprivilege.If false, XA transactions remain attached to the handling session as long as that session is alive, during which time no other session can commit the transaction. The prepared transaction is only detached if the session disconnects or the server restarts.
pseudo_slave_modehas the following effects on theoriginal_commit_timestampreplication delay timestamp and theoriginal_server_versionsystem variable:If true, transactions that do not explicitly set
original_commit_timestampororiginal_server_versionare assumed to originate on another, unknown server, so the value 0, meaning unknown, is assigned to both the timestamp and the system variable.If false, transactions that do not explicitly set
original_commit_timestampororiginal_server_versionare assumed to originate on the current server, so the current timestamp and the current server's version are assigned to the timestamp and the system variable.
In MySQL 8.0.14 and later,
pseudo_slave_modehas the following effects on the handling of a statement that sets one or more unsupported (removed or unknown) SQL modes:If true, the server ignores the unsupported mode and raises a warning.
If false, the server rejects the statement with
ER_UNSUPPORTED_SQL_MODE.
-
Property Value System Variable pseudo_thread_idScope Session Dynamic Yes SET_VARHint AppliesNo Type Integer This variable is for internal server use.
As of MySQL 8.0.14, setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
-
Property Value Command-Line Format --query-alloc-block-size=#System Variable query_alloc_block_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 8192Minimum Value 1024Maximum Value 4294967295Block Size 1024The allocation size of memory blocks that are allocated for objects created during statement parsing and execution. If you have problems with memory fragmentation, it might help to increase this parameter.
-
Property Value Command-Line Format --query-prealloc-size=#System Variable query_prealloc_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 8192Minimum Value 8192Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295Block Size 1024The size of the persistent buffer used for statement parsing and execution. This buffer is not freed between statements. If you are running complex queries, a larger
query_prealloc_sizevalue might be helpful in improving performance, because it can reduce the need for the server to perform memory allocation during query execution operations. -
Property Value System Variable rand_seed1Scope Session Dynamic Yes SET_VARHint AppliesNo Type Integer The
rand_seed1andrand_seed2variables exist as session variables only, and can be set but not read. The variables—but not their values—are shown in the output ofSHOW VARIABLES.The purpose of these variables is to support replication of the
RAND()function. For statements that invokeRAND(), the master passes two values to the slave, where they are used to seed the random number generator. The slave uses these values to set the session variablesrand_seed1andrand_seed2so thatRAND()on the slave generates the same value as on the master. See the description for
rand_seed1.-
Property Value Command-Line Format --range-alloc-block-size=#System Variable range_alloc_block_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 4096Minimum Value 4096Maximum Value (64-bit platforms) 18446744073709547520Maximum Value 4294967295Block Size 1024The size of blocks that are allocated when doing range optimization.
-
Property Value Command-Line Format --range-optimizer-max-mem-size=#System Variable range_optimizer_max_mem_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 8388608Minimum Value 0Maximum Value 18446744073709551615The limit on memory consumption for the range optimizer. A value of 0 means “no limit.” If an execution plan considered by the optimizer uses the range access method but the optimizer estimates that the amount of memory needed for this method would exceed the limit, it abandons the plan and considers other plans. For more information, see Limiting Memory Use for Range Optimization.
-
Property Value System Variable rbr_exec_modeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value STRICTValid Values IDEMPOTENTSTRICTFor internal use by mysqlbinlog. This variable switches the server between
IDEMPOTENTmode andSTRICTmode.IDEMPOTENTmode causes suppression of duplicate-key and no-key-found errors inBINLOGstatements generated by mysqlbinlog. This mode is useful when replaying a row-based binary log on a server that causes conflicts with existing data. mysqlbinlog sets this mode when you specify the--idempotentoption by writing the following to the output:SET SESSION RBR_EXEC_MODE=IDEMPOTENT;As of MySQL 8.0.18, setting the session value of this system variable is no longer a restricted operation.
-
Property Value Command-Line Format --read-buffer-size=#System Variable read_buffer_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 131072Minimum Value 8192Maximum Value 2147479552Each thread that does a sequential scan for a
MyISAMtable allocates a buffer of this size (in bytes) for each table it scans. If you do many sequential scans, you might want to increase this value, which defaults to 131072. The value of this variable should be a multiple of 4KB. If it is set to a value that is not a multiple of 4KB, its value will be rounded down to the nearest multiple of 4KB.This option is also used in the following context for all storage engines:
For caching the indexes in a temporary file (not a temporary table), when sorting rows for
ORDER BY.For bulk insert into partitions.
For caching results of nested queries.
read_buffer_sizeis also used in one other storage engine-specific way: to determine the memory block size forMEMORYtables.For more information about memory use during different operations, see Section 8.12.3.1, “How MySQL Uses Memory”.
-
Property Value Command-Line Format --read-only[={OFF|ON}]System Variable read_onlyScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFIf the
read_onlysystem variable is enabled, the server permits no client updates except from users who have theCONNECTION_ADMINprivilege (or the deprecatedSUPERprivilege). This variable is disabled by default.The server also supports a
super_read_onlysystem variable (disabled by default), which has these effects:If
super_read_onlyis enabled, the server prohibits client updates, even from users who have theCONNECTION_ADMINorSUPERprivilege.Setting
super_read_onlytoONimplicitly forcesread_onlytoON.Setting
read_onlytoOFFimplicitly forcessuper_read_onlytoOFF.
Even with
read_onlyenabled, the server permits these operations:Updates performed by slave threads, if the server is a replication slave. In replication setups, it can be useful to enable
read_onlyon slave servers to ensure that slaves accept updates only from the master server and not from clients.Writes to the system table
mysql.gtid_executed, which stores GTIDs for executed transactions that are not present in the current binary log file.Use of
ANALYZE TABLEorOPTIMIZE TABLEstatements. The purpose of read-only mode is to prevent changes to table structure or contents. Analysis and optimization do not qualify as such changes. This means, for example, that consistency checks on read-only replication slaves can be performed with mysqlcheck --all-databases --analyze.Operations on
TEMPORARYtables.Inserts into the log tables (
mysql.general_logandmysql.slow_log); see Section 5.4.1, “Selecting General Query Log and Slow Query Log Output Destinations”.Updates to Performance Schema tables, such as
UPDATEorTRUNCATE TABLEoperations.
Changes to
read_onlyon a master server are not replicated to slave servers. The value can be set on a slave server independent of the setting on the master.The following conditions apply to attempts to enable
read_only(including implicit attempts resulting from enablingsuper_read_only):The attempt fails and an error occurs if you have any explicit locks (acquired with
LOCK TABLES) or have a pending transaction.The attempt blocks while other clients have any ongoing statement, active
LOCK TABLES WRITE, or ongoing commit, until the locks are released and the statements and transactions end. While the attempt to enableread_onlyis pending, requests by other clients for table locks or to begin transactions also block untilread_onlyhas been set.The attempt blocks if there are active transactions that hold metadata locks, until those transactions end.
read_onlycan be enabled while you hold a global read lock (acquired withFLUSH TABLES WITH READ LOCK) because that does not involve table locks.
-
Property Value Command-Line Format --read-rnd-buffer-size=#System Variable read_rnd_buffer_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 262144Minimum Value 1Maximum Value 2147483647This variable is used for reads from
MyISAMtables, and, for any storage engine, for Multi-Range Read optimization.When reading rows from a
MyISAMtable in sorted order following a key-sorting operation, the rows are read through this buffer to avoid disk seeks. See Section 8.2.1.16, “ORDER BY Optimization”. Setting the variable to a large value can improveORDER BYperformance by a lot. However, this is a buffer allocated for each client, so you should not set the global variable to a large value. Instead, change the session variable only from within those clients that need to run large queries.For more information about memory use during different operations, see Section 8.12.3.1, “How MySQL Uses Memory”. For information about Multi-Range Read optimization, see Section 8.2.1.11, “Multi-Range Read Optimization”.
-
Property Value Command-Line Format --regexp-stack-limit=#System Variable regexp_stack_limitScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 8000000Minimum Value 0Maximum Value 2147483647The maximum available memory in bytes for the internal stack used for regular expression matching operations performed by
REGEXP_LIKE()and similar functions (see Section 12.7.2, “Regular Expressions”). -
Property Value Command-Line Format --regexp-time-limit=#System Variable regexp_time_limitScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 32Minimum Value 0Maximum Value 2147483647The time limit for regular expression matching operations performed by
REGEXP_LIKE()and similar functions (see Section 12.7.2, “Regular Expressions”). This limit is expressed as the maximum permitted number of steps performed by the match engine, and thus affects execution time only indirectly. Typically, it is on the order of milliseconds. -
Property Value Introduced 8.0.19 System Variable require_row_formatScope Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFThis variable is for internal server use by replication and mysqlbinlog. It restricts DML events executed in the session to events encoded in row-based binary logging format only, and temporary tables cannot be created. Queries that do not respect the restrictions fail.
Setting the session value of this system variable to
ONrequires no privileges. Setting the session value of this system variable toOFFis a restricted operation, and the session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”. -
Property Value Command-Line Format --require-secure-transport[={OFF|ON}]System Variable require_secure_transportScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFWhether client connections to the server are required to use some form of secure transport. When this variable is enabled, the server permits only TCP/IP connections that use SSL, or connections that use a socket file (on Unix) or shared memory (on Windows). The server rejects nonsecure connection attempts, which fail with an
ER_SECURE_TRANSPORT_REQUIREDerror.This capability supplements per-account SSL requirements, which take precedence. For example, if an account is defined with
REQUIRE SSL, enablingrequire_secure_transportdoes not make it possible to use the account to connect using a Unix socket file.It is possible for a server to have no secure transports available. For example, a server on Windows supports no secure transports if started without specifying any SSL certificate or key files and with the
shared_memorysystem variable disabled. Under these conditions, attempts to enablerequire_secure_transportat startup cause the server to write a message to the error log and exit. Attempts to enable the variable at runtime fail with anER_NO_SECURE_TRANSPORTS_CONFIGUREDerror. -
Property Value System Variable resultset_metadataScope Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value FULLValid Values FULLNONEFor connections for which metadata transfer is optional, the client sets the
resultset_metadatasystem variable to control whether the server returns result set metadata. Permitted values areFULL(return all metadata; this is the default) andNONE(return no metadata).For connections that are not metadata-optional, setting
resultset_metadatatoNONEproduces an error.For details about managing result set metadata transfer, see Section 28.7.26, “C API Optional Result Set Metadata”.
secondary_engine_cost_thresholdProperty Value Introduced 8.0.16 System Variable secondary_engine_cost_thresholdScope Session Dynamic Yes SET_VARHint AppliesYes Type Numeric Default Value 100000.000000Minimum Value 0Maximum Value DBL_MAX (maximum double value)For future use.
-
Property Value Command-Line Format --schema-definition-cache=#System Variable schema_definition_cacheScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 256Minimum Value 256Maximum Value 524288Defines a limit for the number of schema definition objects, both used and unused, that can be kept in the dictionary object cache.
Unused schema definition objects are only kept in the dictionary object cache when the number in use is less than the capacity defined by
schema_definition_cache.A setting of
0means that schema definition objects are only kept in the dictionary object cache while they are in use.For more information, see Section 14.4, “Dictionary Object Cache”.
-
Property Value Command-Line Format --secure-file-priv=dir_nameSystem Variable secure_file_privScope Global Dynamic No SET_VARHint AppliesNo Type String Default Value platform specificValid Values empty stringdirnameNULLThis variable is used to limit the effect of data import and export operations, such as those performed by the
LOAD DATAandSELECT ... INTO OUTFILEstatements and theLOAD_FILE()function. These operations are permitted only to users who have theFILEprivilege.secure_file_privmay be set as follows:If empty, the variable has no effect. This is not a secure setting.
If set to the name of a directory, the server limits import and export operations to work only with files in that directory. The directory must exist; the server will not create it.
If set to
NULL, the server disables import and export operations.
The default value is platform specific and depends on the value of the
INSTALL_LAYOUTCMake option, as shown in the following table. To specify the defaultsecure_file_privvalue explicitly if you are building from source, use theINSTALL_SECURE_FILE_PRIVDIRCMake option.INSTALL_LAYOUTValueDefault secure_file_privValueSTANDALONEempty DEB,RPM,SVR4/var/lib/mysql-filesOtherwise mysql-filesunder theCMAKE_INSTALL_PREFIXvalueThe server checks the value of
secure_file_privat startup and writes a warning to the error log if the value is insecure. A non-NULLvalue is considered insecure if it is empty, or the value is the data directory or a subdirectory of it, or a directory that is accessible by all users. Ifsecure_file_privis set to a nonexistent path, the server writes an error message to the error log and exits. -
Property Value Command-Line Format --session-track-gtids=valueSystem Variable session_track_gtidsScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value OFFValid Values OFFOWN_GTIDALL_GTIDSControls whether the server tracks GTIDs within the current session and returns them to the client. Depending on the variable value, at the end of executing each transaction, the server GTIDs are captured by the tracker and returned to the client. These
session_track_gtidsvalues are permitted:OFF: The tracker collects no GTIDs. This is the default.OWN_GTID: The tracker collects GTIDs generated by successfully committed read/write transactions.ALL_GTIDS: The tracker collects all GTIDs in thegtid_executedsystem variable at the time the current transaction commits, regardless of whether the transaction is read/write or read only.
session_track_gtidscannot be set within transactional context.For more information about session state tracking, see Section 5.1.17, “Server Tracking of Client Session State Changes”.
-
Property Value Command-Line Format --session-track-schema[={OFF|ON}]System Variable session_track_schemaScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONControls whether the server tracks when the default schema (database) is set within the current session and notifies the client to make the schema name available.
If the schema name tracker is enabled, name notification occurs each time the default schema is set, even if the new schema name is the same as the old.
For more information about session state tracking, see Section 5.1.17, “Server Tracking of Client Session State Changes”.
-
Property Value Command-Line Format --session-track-state-change[={OFF|ON}]System Variable session_track_state_changeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFControls whether the server tracks changes to the state of the current session and notifies the client when state changes occur. Changes can be reported for these attributes of client session state:
The default schema (database).
Session-specific values for system variables.
User-defined variables.
Temporary tables.
Prepared statements.
If the session state tracker is enabled, notification occurs for each change that involves tracked session attributes, even if the new attribute values are the same as the old. For example, setting a user-defined variable to its current value results in a notification.
The
session_track_state_changevariable controls only notification of when changes occur, not what the changes are. For example, state-change notifications occur when the default schema is set or tracked session system variables are assigned, but the notification does not include the schema name or variable values. To receive notification of the schema name or session system variable values, use thesession_track_schemaorsession_track_system_variablessystem variable, respectively.NoteAssigning a value to
session_track_state_changeitself is not considered a state change and is not reported as such. However, if its name listed in the value ofsession_track_system_variables, any assignments to it do result in notification of the new value.For more information about session state tracking, see Section 5.1.17, “Server Tracking of Client Session State Changes”.
session_track_system_variablesProperty Value Command-Line Format --session-track-system-variables=#System Variable session_track_system_variablesScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type String Default Value time_zone, autocommit, character_set_client, character_set_results, character_set_connectionControls whether the server tracks assignments to session system variables and notifies the client of the name and value of each assigned variable. The variable value is a comma-separated list of variables for which to track assignments. By default, notification is enabled for
time_zone,autocommit,character_set_client,character_set_results, andcharacter_set_connection. (The latter three variables are those affected bySET NAMES.)The special value
*causes the server to track assignments to all session variables. If given, this value must be specified by itself without specific system variable names.To disable notification of session variable assignments, set
session_track_system_variablesto the empty string.If session system variable tracking is enabled, notification occurs for all assignments to tracked session variables, even if the new values are the same as the old.
For more information about session state tracking, see Section 5.1.17, “Server Tracking of Client Session State Changes”.
session_track_transaction_infoProperty Value Command-Line Format --session-track-transaction-info=valueSystem Variable session_track_transaction_infoScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value OFFValid Values OFFSTATECHARACTERISTICSControls whether the server tracks the state and characteristics of transactions within the current session and notifies the client to make this information available. These
session_track_transaction_infovalues are permitted:OFF: Disable transaction state tracking. This is the default.STATE: Enable transaction state tracking without characteristics tracking. State tracking enables the client to determine whether a transaction is in progress and whether it could be moved to a different session without being rolled back.CHARACTERISTICS: Enable transaction state tracking, including characteristics tracking. Characteristics tracking enables the client to determine how to restart a transaction in another session so that it has the same characteristics as in the original session. The following characteristics are relevant for this purpose:ISOLATION LEVEL READ ONLY READ WRITE WITH CONSISTENT SNAPSHOT
For a client to safely relocate a transaction to another session, it must track not only transaction state but also transaction characteristics. In addition, the client must track the
transaction_isolationandtransaction_read_onlysystem variables to correctly determine the session defaults. (To track these variables, list them in the value of thesession_track_system_variablessystem variable.)For more information about session state tracking, see Section 5.1.17, “Server Tracking of Client Session State Changes”.
sha256_password_auto_generate_rsa_keysProperty Value Command-Line Format --sha256-password-auto-generate-rsa-keys[={OFF|ON}]System Variable sha256_password_auto_generate_rsa_keysScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value ONThe server uses this variable to determine whether to autogenerate RSA private/public key-pair files in the data directory if they do not already exist.
At startup, the server automatically generates RSA private/public key-pair files in the data directory if all of these conditions are true: The
sha256_password_auto_generate_rsa_keysorcaching_sha2_password_auto_generate_rsa_keyssystem variable is enabled; no RSA options are specified; the RSA files are missing from the data directory. These key-pair files enable secure password exchange using RSA over unencrypted connections for accounts authenticated by thesha256_passwordorcaching_sha2_passwordplugin; see Section 6.4.1.3, “SHA-256 Pluggable Authentication”, and Section 6.4.1.2, “Caching SHA-2 Pluggable Authentication”.For more information about RSA file autogeneration, including file names and characteristics, see Section 6.3.3.1, “Creating SSL and RSA Certificates and Keys using MySQL”
The
auto_generate_certssystem variable is related but controls autogeneration of SSL certificate and key files needed for secure connections using SSL.sha256_password_private_key_pathProperty Value Command-Line Format --sha256-password-private-key-path=file_nameSystem Variable sha256_password_private_key_pathScope Global Dynamic No SET_VARHint AppliesNo Type File name Default Value private_key.pemThe value of this variable is the path name of the RSA private key file for the
sha256_passwordauthentication plugin. If the file is named as a relative path, it is interpreted relative to the server data directory. The file must be in PEM format.ImportantBecause this file stores a private key, its access mode should be restricted so that only the MySQL server can read it.
For information about
sha256_password, see Section 6.4.1.3, “SHA-256 Pluggable Authentication”.-
Property Value Command-Line Format --sha256-password-proxy-users[={OFF|ON}]System Variable sha256_password_proxy_usersScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFThis variable controls whether the
sha256_passwordbuilt-in authentication plugin supports proxy users. It has no effect unless thecheck_proxy_userssystem variable is enabled. For information about user proxying, see Section 6.2.18, “Proxy Users”. sha256_password_public_key_pathProperty Value Command-Line Format --sha256-password-public-key-path=file_nameSystem Variable sha256_password_public_key_pathScope Global Dynamic No SET_VARHint AppliesNo Type File name Default Value public_key.pemThe value of this variable is the path name of the RSA public key file for the
sha256_passwordauthentication plugin. If the file is named as a relative path, it is interpreted relative to the server data directory. The file must be in PEM format. Because this file stores a public key, copies can be freely distributed to client users. (Clients that explicitly specify a public key when connecting to the server using RSA password encryption must use the same public key as that used by the server.)For information about
sha256_password, including information about how clients specify the RSA public key, see Section 6.4.1.3, “SHA-256 Pluggable Authentication”.-
Property Value Command-Line Format --shared-memory[={OFF|ON}]System Variable shared_memoryScope Global Dynamic No SET_VARHint AppliesNo Platform Specific Windows Type Boolean Default Value OFF(Windows only.) Whether the server permits shared-memory connections.
-
Property Value Command-Line Format --shared-memory-base-name=nameSystem Variable shared_memory_base_nameScope Global Dynamic No SET_VARHint AppliesNo Platform Specific Windows Type String Default Value MYSQL(Windows only.) The name of shared memory to use for shared-memory connections. This is useful when running multiple MySQL instances on a single physical machine. The default name is
MYSQL. The name is case-sensitive.This variable applies only if the server is started with the
shared_memorysystem variable enabled to support shared-memory connections. show_create_table_skip_secondary_engineProperty Value Command-Line Format --show-create-table-skip-secondary-engine[={OFF|ON}]Introduced 8.0.18 System Variable show_create_table_skip_secondary_engineScope Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value OFFEnabling
show_create_table_skip_secondary_enginecauses theSECONDARY ENGINEclause to be excluded fromSHOW CREATE TABLEoutput, and fromCREATE TABLEstatements dumped by the mysqldump utility.mysqldump provides the
--show-create-skip-secondary-engineoption. When specified, it enables theshow_create_table_skip_secondary_enginesystem variable for the duration of the dump operation.Attempting a mysqldump operation with the
--show-create-skip-secondary-engineoption on a release prior to MySQL 8.0.18 that does not support theshow_create_table_skip_secondary_enginevariable causes an error.-
Property Value Command-Line Format --show-create-table-verbosity[={OFF|ON}]System Variable show_create_table_verbosityScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFSHOW CREATE TABLEnormally does not show theROW_FORMATtable option if the row format is the default format. Enabling this variable causesSHOW CREATE TABLEto displayROW_FORMATregardless of whether it is the default format. -
Property Value Command-Line Format --show-old-temporals[={OFF|ON}]Deprecated Yes System Variable show_old_temporalsScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFWhether
SHOW CREATE TABLEoutput includes comments to flag temporal columns found to be in pre-5.6.4 format (TIME,DATETIME, andTIMESTAMPcolumns without support for fractional seconds precision). This variable is disabled by default. If enabled,SHOW CREATE TABLEoutput looks like this:CREATE TABLE `mytbl` ( `ts` timestamp /* 5.5 binary format */ NOT NULL DEFAULT CURRENT_TIMESTAMP, `dt` datetime /* 5.5 binary format */ DEFAULT NULL, `t` time /* 5.5 binary format */ DEFAULT NULL ) DEFAULT CHARSET=utf8mb4Output for the
COLUMN_TYPEcolumn of theINFORMATION_SCHEMA.COLUMNStable is affected similarly.This variable is deprecated and will be removed in a future MySQL release.
-
Property Value Command-Line Format --skip-external-locking[={OFF|ON}]System Variable skip_external_lockingScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value ONThis is
OFFif mysqld uses external locking (system locking),ONif external locking is disabled. This affects onlyMyISAMtable access.This variable is set by the
--external-lockingor--skip-external-lockingoption. External locking is disabled by default.External locking affects only
MyISAMtable access. For more information, including conditions under which it can and cannot be used, see Section 8.11.5, “External Locking”. -
Property Value Command-Line Format --skip-name-resolve[={OFF|ON}]System Variable skip_name_resolveScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value OFFWhether to resolve host names when checking client connections. If this variable is
OFF, mysqld resolves host names when checking client connections. If it isON, mysqld uses only IP numbers; in this case, allHostcolumn values in the grant tables must be IP addresses. See Section 5.1.12.3, “DNS Lookups and the Host Cache”.Depending on the network configuration of your system and the
Hostvalues for your accounts, clients may need to connect using an explicit--hostoption, such as--host=127.0.0.1or--host=::1.An attempt to connect to the host
127.0.0.1normally resolves to thelocalhostaccount. However, this fails if the server is run withskip_name_resolveenabled. If you plan to do that, make sure an account exists that can accept a connection. For example, to be able to connect asrootusing--host=127.0.0.1or--host=::1, create these accounts:CREATE USER 'root'@'127.0.0.1' IDENTIFIED BY 'root-password'; CREATE USER 'root'@'::1' IDENTIFIED BY 'root-password'; -
Property Value Command-Line Format --skip-networking[={OFF|ON}]System Variable skip_networkingScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value OFFThis variable controls whether the server permits TCP/IP connections. By default, it is disabled (permit TCP connections). If enabled, the server permits only local (non-TCP/IP) connections and all interaction with mysqld must be made using named pipes or shared memory (on Windows) or Unix socket files (on Unix). This option is highly recommended for systems where only local clients are permitted. See Section 5.1.12.3, “DNS Lookups and the Host Cache”.
Because starting the server with
--skip-grant-tablesdisables authentication checks, the server also disables remote connections in that case by enablingskip_networking. -
Property Value Command-Line Format --skip-show-databaseSystem Variable skip_show_databaseScope Global Dynamic No SET_VARHint AppliesNo This prevents people from using the
SHOW DATABASESstatement if they do not have theSHOW DATABASESprivilege. This can improve security if you have concerns about users being able to see databases belonging to other users. Its effect depends on theSHOW DATABASESprivilege: If the variable value isON, theSHOW DATABASESstatement is permitted only to users who have theSHOW DATABASESprivilege, and the statement displays all database names. If the value isOFF,SHOW DATABASESis permitted to all users, but displays the names of only those databases for which the user has theSHOW DATABASESor other privilege.CautionBecause any static global privilege is considered a privilege for all databases, any static global privilege enables a user to see all database names with
SHOW DATABASESor by examining theSCHEMATAtable ofINFORMATION_SCHEMA, except databases that have been restricted at the database level by partial revokes. -
Property Value Command-Line Format --slow-launch-time=#System Variable slow_launch_timeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 2If creating a thread takes longer than this many seconds, the server increments the
Slow_launch_threadsstatus variable. -
Property Value Command-Line Format --slow-query-log[={OFF|ON}]System Variable slow_query_logScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFWhether the slow query log is enabled. The value can be 0 (or
OFF) to disable the log or 1 (orON) to enable the log. The destination for log output is controlled by thelog_outputsystem variable; if that value isNONE, no log entries are written even if the log is enabled.“Slow” is determined by the value of the
long_query_timevariable. See Section 5.4.5, “The Slow Query Log”. -
Property Value Command-Line Format --slow-query-log-file=file_nameSystem Variable slow_query_log_fileScope Global Dynamic Yes SET_VARHint AppliesNo Type File name Default Value host_name-slow.logThe name of the slow query log file. The default value is
, but the initial value can be changed with thehost_name-slow.log--slow_query_log_fileoption. -
Property Value Command-Line Format --socket={file_name|pipe_name}System Variable socketScope Global Dynamic No SET_VARHint AppliesNo Type String Default Value (Other) /tmp/mysql.sockDefault Value (Windows) MySQLOn Unix platforms, this variable is the name of the socket file that is used for local client connections. The default is
/tmp/mysql.sock. (For some distribution formats, the directory might be different, such as/var/lib/mysqlfor RPMs.)On Windows, this variable is the name of the named pipe that is used for local client connections. The default value is
MySQL(not case-sensitive). -
Property Value Command-Line Format --sort-buffer-size=#System Variable sort_buffer_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 262144Minimum Value 32768Maximum Value (Other, 64-bit platforms) 18446744073709551615Maximum Value (Other, 32-bit platforms) 4294967295Maximum Value (Windows) 4294967295Each session that must perform a sort allocates a buffer of this size.
sort_buffer_sizeis not specific to any storage engine and applies in a general manner for optimization. At minimum thesort_buffer_sizevalue must be large enough to accommodate fifteen tuples in the sort buffer. Also, increasing the value ofmax_sort_lengthmay require increasing the value ofsort_buffer_size. For more information, see Section 8.2.1.16, “ORDER BY Optimization”If you see many
Sort_merge_passesper second inSHOW GLOBAL STATUSoutput, you can consider increasing thesort_buffer_sizevalue to speed upORDER BYorGROUP BYoperations that cannot be improved with query optimization or improved indexing.The optimizer tries to work out how much space is needed but can allocate more, up to the limit. Setting it larger than required globally will slow down most queries that sort. It is best to increase it as a session setting, and only for the sessions that need a larger size. On Linux, there are thresholds of 256KB and 2MB where larger values may significantly slow down memory allocation, so you should consider staying below one of those values. Experiment to find the best value for your workload. See Section B.4.3.5, “Where MySQL Stores Temporary Files”.
The maximum permissible setting for
sort_buffer_sizeis 4GB−1. Larger values are permitted for 64-bit platforms (except 64-bit Windows, for which large values are truncated to 4GB−1 with a warning). -
Property Value System Variable sql_auto_is_nullScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value OFFIf this variable is enabled, then after a statement that successfully inserts an automatically generated
AUTO_INCREMENTvalue, you can find that value by issuing a statement of the following form:SELECT * FROM tbl_name WHERE auto_col IS NULLIf the statement returns a row, the value returned is the same as if you invoked the
LAST_INSERT_ID()function. For details, including the return value after a multiple-row insert, see Section 12.15, “Information Functions”. If noAUTO_INCREMENTvalue was successfully inserted, theSELECTstatement returns no row.The behavior of retrieving an
AUTO_INCREMENTvalue by using anIS NULLcomparison is used by some ODBC programs, such as Access. See Obtaining Auto-Increment Values. This behavior can be disabled by settingsql_auto_is_nulltoOFF.Prior to MySQL 8.0.16, the transformation of
WHEREtoauto_colIS NULLWHEREwas performed only when the statement was executed, so that the value ofauto_col= LAST_INSERT_ID()sql_auto_is_nullduring execution determined whether the query was transformed. In MySQL 8.0.16 and later, the transformation is performed during statement preparation.The default value of
sql_auto_is_nullisOFF. -
Property Value System Variable sql_big_selectsScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value ONIf set to
OFF, MySQL abortsSELECTstatements that are likely to take a very long time to execute (that is, statements for which the optimizer estimates that the number of examined rows exceeds the value ofmax_join_size). This is useful when an inadvisableWHEREstatement has been issued. The default value for a new connection isON, which permits allSELECTstatements.If you set the
max_join_sizesystem variable to a value other thanDEFAULT,sql_big_selectsis set toOFF. -
Property Value System Variable sql_buffer_resultScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value OFFIf enabled,
sql_buffer_resultforces results fromSELECTstatements to be put into temporary tables. This helps MySQL free the table locks early and can be beneficial in cases where it takes a long time to send results to the client. The default value isOFF. -
Property Value System Variable sql_log_offScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFValid Values OFF(enable logging)ON(disable logging)This variable controls whether logging to the general query log is disabled for the current session (assuming that the general query log itself is enabled). The default value is
OFF(that is, enable logging). To disable or enable general query logging for the current session, set the sessionsql_log_offvariable toONorOFF.Setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
-
Property Value Command-Line Format --sql-mode=nameSystem Variable sql_modeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Set Default Value ONLY_FULL_GROUP_BY STRICT_TRANS_TABLES NO_ZERO_IN_DATE NO_ZERO_DATE ERROR_FOR_DIVISION_BY_ZERO NO_ENGINE_SUBSTITUTIONValid Values ALLOW_INVALID_DATESANSI_QUOTESERROR_FOR_DIVISION_BY_ZEROHIGH_NOT_PRECEDENCEIGNORE_SPACENO_AUTO_VALUE_ON_ZERONO_BACKSLASH_ESCAPESNO_DIR_IN_CREATENO_ENGINE_SUBSTITUTIONNO_UNSIGNED_SUBTRACTIONNO_ZERO_DATENO_ZERO_IN_DATEONLY_FULL_GROUP_BYPAD_CHAR_TO_FULL_LENGTHPIPES_AS_CONCATREAL_AS_FLOATSTRICT_ALL_TABLESSTRICT_TRANS_TABLESTIME_TRUNCATE_FRACTIONALThe current server SQL mode, which can be set dynamically. For details, see Section 5.1.11, “Server SQL Modes”.
NoteMySQL installation programs may configure the SQL mode during the installation process.
If the SQL mode differs from the default or from what you expect, check for a setting in an option file that the server reads at startup.
-
Property Value System Variable sql_notesScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONIf enabled (the default), diagnostics of
Notelevel incrementwarning_countand the server records them. If disabled,Notediagnostics do not incrementwarning_countand the server does not record them. mysqldump includes output to disable this variable so that reloading the dump file does not produce warnings for events that do not affect the integrity of the reload operation. -
Property Value System Variable sql_quote_show_createScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONIf enabled (the default), the server quotes identifiers for
SHOW CREATE TABLEandSHOW CREATE DATABASEstatements. If disabled, quoting is disabled. This option is enabled by default so that replication works for identifiers that require quoting. See Section 13.7.7.10, “SHOW CREATE TABLE Statement”, and Section 13.7.7.6, “SHOW CREATE DATABASE Statement”. -
Property Value Command-Line Format --sql-require-primary-key[={OFF|ON}]Introduced 8.0.13 System Variable sql_require_primary_keyScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value OFFWhether statements that create new tables or alter the structure of existing tables enforce the requirement that tables have a primary key.
Setting the session value of this system variable is a restricted operation. The session user must have privileges sufficient to set restricted session variables. See Section 5.1.9.1, “System Variable Privileges”.
Enabling this variable helps avoid performance problems in row-based replication that can occur when tables have no primary key. Suppose that a table has no primary key and an update or delete modifies multiple rows. On the master server, this operation can be performed using a single table scan but, when replicated using row-based replication, results in a table scan for each row to be modified on the slave. With a primary key, these table scans do not occur.
sql_require_primary_keyapplies to both base tables andTEMPORARYtables, and changes to its value are replicated to slave servers. As of MySQL 8.0.18, it applies only to storage engines that can participate in replication.When enabled,
sql_require_primary_keyhas these effects:Attempts to create a new table with no primary key fail with an error. This includes
CREATE TABLE ... LIKE. It also includesCREATE TABLE ... SELECT, unless theCREATE TABLEpart includes a primary key definition.Attempts to drop the primary key from an existing table fail with an error, with the exception that dropping the primary key and adding a primary key in the same
ALTER TABLEstatement is permitted.Dropping the primary key fails even if the table also contains a
UNIQUE NOT NULLindex.Attempts to import a table with no primary key fail with an error.
The
REQUIRE_TABLE_PRIMARY_KEY_CHECKoption of theCHANGE MASTER TOstatement enables a replication slave to select its own policy for primary key checks. When the option is set toONfor a replication channel, the slave always uses the valueONfor thesql_require_primary_keysystem variable in replication operations, requiring a primary key. When the option is set toOFF, the slave always uses the valueOFFfor thesql_require_primary_keysystem variable in replication operations, so that a primary key is never required, even if the master required one. When theREQUIRE_TABLE_PRIMARY_KEY_CHECKoption is set toSTREAM, which is the default, the slave uses whatever value is replicated from the master for each transaction. With theSTREAMsetting for theREQUIRE_TABLE_PRIMARY_KEY_CHECKoption, if privilege checks are in use for the replication channel, thePRIVILEGE_CHECKS_USERaccount needs privileges sufficient to set restricted session variables, so that it can set the session value for thesql_require_primary_keysystem variable. With theONorOFFsettings, the account does not need these privileges. For more information, see Section 17.3.3, “Replication Privilege Checks”. -
Property Value System Variable sql_safe_updatesScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value OFFIf this variable is enabled,
UPDATEandDELETEstatements that do not use a key in theWHEREclause or aLIMITclause produce an error. This makes it possible to catchUPDATEandDELETEstatements where keys are not used properly and that would probably change or delete a large number of rows. The default value isOFF.For the mysql client,
sql_safe_updatescan be enabled by using the--safe-updatesoption. For more information, see Using Safe-Updates Mode (--safe-updates). -
Property Value System Variable sql_select_limitScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer The maximum number of rows to return from
SELECTstatements. For more information, see Using Safe-Updates Mode (--safe-updates).The default value for a new connection is the maximum number of rows that the server permits per table. Typical default values are (232)−1 or (264)−1. If you have changed the limit, the default value can be restored by assigning a value of
DEFAULT.If a
SELECThas aLIMITclause, theLIMITtakes precedence over the value ofsql_select_limit. -
Property Value System Variable sql_warningsScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFThis variable controls whether single-row
INSERTstatements produce an information string if warnings occur. The default isOFF. Set the value toONto produce an information string. -
Property Value Command-Line Format --ssl-ca=file_nameSystem Variable ssl_caScope Global Dynamic (≥ 8.0.16) Yes Dynamic (≤ 8.0.15) No SET_VARHint AppliesNo Type File name Default Value NULLThe path name of the Certificate Authority (CA) certificate file in PEM format. The file contains a list of trusted SSL Certificate Authorities.
As of MySQL 8.0.16, this variable is dynamic and can be modified at runtime to affect the TSL context the server uses for new connections. See Server-Side Runtime Configuration and Monitoring for Encrypted Connections. Prior to MySQL 8.0.16, this variable can be set only at server startup.
-
Property Value Command-Line Format --ssl-capath=dir_nameSystem Variable ssl_capathScope Global Dynamic (≥ 8.0.16) Yes Dynamic (≤ 8.0.15) No SET_VARHint AppliesNo Type Directory name Default Value NULLThe path name of the directory that contains trusted SSL Certificate Authority (CA) certificate files in PEM format.
As of MySQL 8.0.16, this variable is dynamic and can be modified at runtime to affect the TSL context the server uses for new connections. See Server-Side Runtime Configuration and Monitoring for Encrypted Connections. Prior to MySQL 8.0.16, this variable can be set only at server startup.
-
Property Value Command-Line Format --ssl-cert=file_nameSystem Variable ssl_certScope Global Dynamic (≥ 8.0.16) Yes Dynamic (≤ 8.0.15) No SET_VARHint AppliesNo Type File name Default Value NULLThe path name of the server SSL public key certificate file in PEM format.
If the server is started with
ssl_certset to a certificate that uses any restricted cipher or cipher category, the server starts with support for encrypted connections disabled. For information about cipher restrictions, see Connection Cipher Configuration.As of MySQL 8.0.16, this variable is dynamic and can be modified at runtime to affect the TSL context the server uses for new connections. See Server-Side Runtime Configuration and Monitoring for Encrypted Connections. Prior to MySQL 8.0.16, this variable can be set only at server startup.
-
Property Value Command-Line Format --ssl-cipher=nameSystem Variable ssl_cipherScope Global Dynamic (≥ 8.0.16) Yes Dynamic (≤ 8.0.15) No SET_VARHint AppliesNo Type String Default Value NULLThe list of permissible encryption ciphers for connections that use TLS protocols up through TLSv1.2. If no cipher in the list is supported, encrypted connections that use these TLS protocols will not work.
For greatest portability, the cipher list should be a list of one or more cipher names, separated by colons. Examples:
[mysqld] ssl_cipher="AES128-SHA" ssl_cipher="DHE-RSA-AES128-GCM-SHA256:AES128-SHA"OpenSSL supports the syntax for specifying ciphers described in the OpenSSL documentation at https://www.openssl.org/docs/manmaster/man1/ciphers.html.
For information about which encryption ciphers MySQL supports, see Section 6.3.2, “Encrypted Connection TLS Protocols and Ciphers”.
As of MySQL 8.0.16, this variable is dynamic and can be modified at runtime to affect the TSL context the server uses for new connections. See Server-Side Runtime Configuration and Monitoring for Encrypted Connections. Prior to MySQL 8.0.16, this variable can be set only at server startup.
-
Property Value Command-Line Format --ssl-crl=file_nameSystem Variable ssl_crlScope Global Dynamic (≥ 8.0.16) Yes Dynamic (≤ 8.0.15) No SET_VARHint AppliesNo Type File name Default Value NULLThe path name of the file containing certificate revocation lists in PEM format.
As of MySQL 8.0.16, this variable is dynamic and can be modified at runtime to affect the TSL context the server uses for new connections. See Server-Side Runtime Configuration and Monitoring for Encrypted Connections. Prior to MySQL 8.0.16, this variable can be set only at server startup.
-
Property Value Command-Line Format --ssl-crlpath=dir_nameSystem Variable ssl_crlpathScope Global Dynamic (≥ 8.0.16) Yes Dynamic (≤ 8.0.15) No SET_VARHint AppliesNo Type Directory name Default Value NULLThe path of the directory that contains certificate revocation-list files in PEM format.
As of MySQL 8.0.16, this variable is dynamic and can be modified at runtime to affect the TSL context the server uses for new connections. See Server-Side Runtime Configuration and Monitoring for Encrypted Connections. Prior to MySQL 8.0.16, this variable can be set only at server startup.
-
Property Value Command-Line Format --ssl-fips-mode={OFF|ON|STRICT}System Variable ssl_fips_modeScope Global Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value OFFValid Values OFF(or 0)ON(or 1)STRICT(or 2)Controls whether to enable FIPS mode on the server side. The
ssl_fips_modesystem variable differs from otherssl_system variables in that it is not used to control whether the server permits encrypted connections, but rather to affect which cryptographic operations are permitted. See Section 6.6, “FIPS Support”.xxxThese
ssl_fips_modevalues are permitted:OFF(or 0): Disable FIPS mode.ON(or 1): Enable FIPS mode.STRICT(or 2): Enable “strict” FIPS mode.
NoteIf the OpenSSL FIPS Object Module is not available, the only permitted value for
ssl_fips_modeisOFF. In this case, settingssl_fips_modetoONorSTRICTat startup causes the server to produce an error message and exit. -
Property Value Command-Line Format --ssl-key=file_nameSystem Variable ssl_keyScope Global Dynamic (≥ 8.0.16) Yes Dynamic (≤ 8.0.15) No SET_VARHint AppliesNo Type File name Default Value NULLThe path name of the server SSL private key file in PEM format. For better security, use a certificate with an RSA key size of at least 2048 bits.
If the key file is protected by a passphrase, the server prompts the user for the passphrase. The password must be given interactively; it cannot be stored in a file. If the passphrase is incorrect, the program continues as if it could not read the key.
As of MySQL 8.0.16, this variable is dynamic and can be modified at runtime to affect the TSL context the server uses for new connections. See Server-Side Runtime Configuration and Monitoring for Encrypted Connections. Prior to MySQL 8.0.16, this variable can be set only at server startup.
-
Property Value Command-Line Format --stored-program-cache=#System Variable stored_program_cacheScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 256Minimum Value 16Maximum Value 524288Sets a soft upper limit for the number of cached stored routines per connection. The value of this variable is specified in terms of the number of stored routines held in each of the two caches maintained by the MySQL Server for, respectively, stored procedures and stored functions.
Whenever a stored routine is executed this cache size is checked before the first or top-level statement in the routine is parsed; if the number of routines of the same type (stored procedures or stored functions according to which is being executed) exceeds the limit specified by this variable, the corresponding cache is flushed and memory previously allocated for cached objects is freed. This allows the cache to be flushed safely, even when there are dependencies between stored routines.
The stored procedure and stored function caches exists in parallel with the stored program definition cache partition of the dictionary object cache. The stored procedure and stored function caches are per connection, while the stored program definition cache is shared. The existence of objects in the stored procedure and stored function caches have no dependence on the existence of objects in the stored program definition cache, and vice versa. For more information, see Section 14.4, “Dictionary Object Cache”.
stored_program_definition_cacheProperty Value Command-Line Format --stored-program-definition-cache=#System Variable stored_program_definition_cacheScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 256Minimum Value 256Maximum Value 524288Defines a limit for the number of stored program definition objects, both used and unused, that can be kept in the dictionary object cache.
Unused stored program definition objects are only kept in the dictionary object cache when the number in use is less than the capacity defined by
stored_program_definition_cache.A setting of 0 means that stored program definition objects are only kept in the dictionary object cache while they are in use.
The stored program definition cache partition exists in parallel with the stored procedure and stored function caches that are configured using the
stored_program_cacheoption.The
stored_program_cacheoption sets a soft upper limit for the number of cached stored procedures or functions per connection, and the limit is checked each time a connection executes a stored procedure or function. The stored program definition cache partition, on the other hand, is a shared cache that stores stored program definition objects for other purposes. The existence of objects in the stored program definition cache partition has no dependence on the existence of objects in the stored procedure cache or stored function cache, and vice versa.For related information, see Section 14.4, “Dictionary Object Cache”.
-
Property Value Command-Line Format --super-read-only[={OFF|ON}]System Variable super_read_onlyScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFIf the
read_onlysystem variable is enabled, the server permits no client updates except from users who have theCONNECTION_ADMINprivilege (or the deprecatedSUPERprivilege). If thesuper_read_onlysystem variable is also enabled, the server prohibits client updates even from users who haveCONNECTION_ADMINorSUPER. See the description of theread_onlysystem variable for a description of read-only mode and information about howread_onlyandsuper_read_onlyinteract.Client updates prevented when
super_read_onlyis enabled include operations that do not necessarily appear to be updates, such asCREATE FUNCTION(to install a UDF),INSTALL PLUGIN, andINSTALL COMPONENT. These operations are prohibited because they involve changes to tables in themysqlsystem schema.Changes to
super_read_onlyon a master server are not replicated to slave servers. The value can be set on a slave server independent of the setting on the master. -
Property Value Command-Line Format --syseventlog.facility=valueIntroduced 8.0.13 System Variable syseventlog.facilityScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value daemonThe facility for error log output written to
syslog(what type of program is sending the message). This variable is unavailable unless thelog_sink_syseventlogerror log component is installed. See Section 5.4.2.7, “Error Logging to the System Log”.The permitted values can vary per operating system; consult your system
syslogdocumentation.This variable does not exist on Windows.
-
Property Value Command-Line Format --syseventlog.include-pid[={OFF|ON}]Introduced 8.0.13 System Variable syseventlog.include_pidScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONWhether to include the server process ID in each line of error log output written to
syslog. This variable is unavailable unless thelog_sink_syseventlogerror log component is installed. See Section 5.4.2.7, “Error Logging to the System Log”.This variable does not exist on Windows.
-
Property Value Command-Line Format --syseventlog.tag=tagIntroduced 8.0.13 System Variable syseventlog.tagScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value empty stringThe tag to be added to the server identifier in error log output written to
syslogor the Windows Event Log. This variable is unavailable unless thelog_sink_syseventlogerror log component is installed. See Section 5.4.2.7, “Error Logging to the System Log”.By default, no tag is set, so the server identifier is simply
MySQLon Windows, andmysqldon other platforms. If a tag value oftagis specified, it is appended to the server identifier with a leading hyphen, resulting in asyslogidentifier ofmysqld-(ortagMySQL-on Windows).tagOn Windows, to use a tag that does not already exist, the server must be run from an account with Administrator privileges, to permit creation of a registry entry for the tag. Elevated privileges are not required if the tag already exists.
-
Property Value System Variable system_time_zoneScope Global Dynamic No SET_VARHint AppliesNo Type String The server system time zone. When the server begins executing, it inherits a time zone setting from the machine defaults, possibly modified by the environment of the account used for running the server or the startup script. The value is used to set
system_time_zone. Typically the time zone is specified by theTZenvironment variable. It also can be specified using the--timezoneoption of the mysqld_safe script.The
system_time_zonevariable differs fromtime_zone. Although they might have the same value, the latter variable is used to initialize the time zone for each client that connects. See Section 5.1.14, “MySQL Server Time Zone Support”. -
Property Value Command-Line Format --table-definition-cache=#System Variable table_definition_cacheScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value -1(signifies autosizing; do not assign this literal value)Minimum Value 400Maximum Value 524288The number of table definitions that can be stored in the definition cache. If you use a large number of tables, you can create a large table definition cache to speed up opening of tables. The table definition cache takes less space and does not use file descriptors, unlike the normal table cache. The minimum value is 400. The default value is based on the following formula, capped to a limit of 2000:
MIN(400 + table_open_cache / 2, 2000)For
InnoDB,table_definition_cacheacts as a soft limit for the number of open table instances in theInnoDBdata dictionary cache. If the number of open table instances exceeds thetable_definition_cachesetting, the LRU mechanism begins to mark table instances for eviction and eventually removes them from the data dictionary cache. The limit helps address situations in which significant amounts of memory would be used to cache rarely used table instances until the next server restart. The number of table instances with cached metadata could be higher than the limit defined bytable_definition_cache, because parent and child table instances with foreign key relationships are not placed on the LRU list and are not subject to eviction from memory.Additionally,
table_definition_cachedefines a soft limit for the number ofInnoDBfile-per-table tablespaces that can be open at one time, which is also controlled byinnodb_open_files. If bothtable_definition_cacheandinnodb_open_filesare set, the highest setting is used. If neither variable is set,table_definition_cache, which has a higher default value, is used. If the number of open tablespace file handles exceeds the limit defined bytable_definition_cacheorinnodb_open_files, the LRU mechanism searches the tablespace file LRU list for files that are fully flushed and are not currently being extended. This process is performed each time a new tablespace is opened. If there are no “inactive” tablespaces, no tablespace files are closed.The table definition cache exists in parallel with the table definition cache partition of the dictionary object cache. Both caches store table definitions but serve different parts of the MySQL server. Objects in one cache have no dependence on the existence objects in the other. For more information, see Section 14.4, “Dictionary Object Cache”.
table_encryption_privilege_checkProperty Value Command-Line Format --table-encryption-privilege-check[={OFF|ON}]Introduced 8.0.16 System Variable table_encryption_privilege_checkScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFControls the
TABLE_ENCRYPTION_ADMINprivilege check that occurs when creating or altering a schema or general tablespace with encryption that differs from thedefault_table_encryptionsetting, or when creating or altering a table with an encryption setting that differs from the default schema encryption. The check is disabled by default.Setting
table_encryption_privilege_checkat runtime requires theSUPERprivilege.table_encryption_privilege_checksupportsSET PERSISTandSET PERSIST_ONLYsyntax. See Section 5.1.9.3, “Persisted System Variables”.For more information, see Defining an Encryption Default for Schemas and General Tablespaces.
-
Property Value Command-Line Format --table-open-cache=#System Variable table_open_cacheScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 4000Minimum Value 1Maximum Value 524288The number of open tables for all threads. Increasing this value increases the number of file descriptors that mysqld requires. You can check whether you need to increase the table cache by checking the
Opened_tablesstatus variable. See Section 5.1.10, “Server Status Variables”. If the value ofOpened_tablesis large and you do not useFLUSH TABLESoften (which just forces all tables to be closed and reopened), then you should increase the value of thetable_open_cachevariable. For more information about the table cache, see Section 8.4.3.1, “How MySQL Opens and Closes Tables”. -
Property Value Command-Line Format --table-open-cache-instances=#System Variable table_open_cache_instancesScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 16Minimum Value 1Maximum Value 64The number of open tables cache instances. To improve scalability by reducing contention among sessions, the open tables cache can be partitioned into several smaller cache instances of size
table_open_cache/table_open_cache_instances. A session needs to lock only one instance to access it for DML statements. This segments cache access among instances, permitting higher performance for operations that use the cache when there are many sessions accessing tables. (DDL statements still require a lock on the entire cache, but such statements are much less frequent than DML statements.)A value of 8 or 16 is recommended on systems that routinely use 16 or more cores.
-
Property Value Command-Line Format --tablespace-definition-cache=#System Variable tablespace_definition_cacheScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 256Minimum Value 256Maximum Value 524288Defines a limit for the number of tablespace definition objects, both used and unused, that can be kept in the dictionary object cache.
Unused tablespace definition objects are only kept in the dictionary object cache when the number in use is less than the capacity defined by
tablespace_definition_cache.A setting of
0means that tablespace definition objects are only kept in the dictionary object cache while they are in use.For more information, see Section 14.4, “Dictionary Object Cache”.
-
Property Value Command-Line Format --temptable-max-ram=#System Variable temptable_max_ramScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 1073741824Minimum Value 2097152Maximum Value 2^64-1Defines the maximum amount of memory that can be occupied by the
TempTablestorage engine before it starts storing data on disk. The default value is 1073741824 bytes (1GiB). For more information, see Section 8.4.4, “Internal Temporary Table Use in MySQL”. -
Property Value Command-Line Format --temptable-use-mmap[={OFF|ON}]Introduced 8.0.16 System Variable temptable_use_mmapScope Global Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value ONDefines whether the TempTable storage engine allocates space for internal in-memory temporary tables as memory-mapped temporary files when the amount of memory occupied by the TempTable storage engine exceeds the limit defined by the
temptable_max_ramvariable. Whentemptable_use_mmapis disabled, the TempTable storage engine usesInnoDBon-disk internal temporary tables instead. For more information, see Section 8.4.4, “Internal Temporary Table Use in MySQL”. -
Property Value Command-Line Format --thread-cache-size=#System Variable thread_cache_sizeScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value -1(signifies autosizing; do not assign this literal value)Minimum Value 0Maximum Value 16384How many threads the server should cache for reuse. When a client disconnects, the client's threads are put in the cache if there are fewer than
thread_cache_sizethreads there. Requests for threads are satisfied by reusing threads taken from the cache if possible, and only when the cache is empty is a new thread created. This variable can be increased to improve performance if you have a lot of new connections. Normally, this does not provide a notable performance improvement if you have a good thread implementation. However, if your server sees hundreds of connections per second you should normally setthread_cache_sizehigh enough so that most new connections use cached threads. By examining the difference between theConnectionsandThreads_createdstatus variables, you can see how efficient the thread cache is. For details, see Section 5.1.10, “Server Status Variables”.The default value is based on the following formula, capped to a limit of 100:
8 + (max_connections / 100) -
Property Value Command-Line Format --thread-handling=nameSystem Variable thread_handlingScope Global Dynamic No SET_VARHint AppliesNo Type Enumeration Default Value one-thread-per-connectionValid Values no-threadsone-thread-per-connectionloaded-dynamicallyThe thread-handling model used by the server for connection threads. The permissible values are
no-threads(the server uses a single thread to handle one connection) andone-thread-per-connection(the server uses one thread to handle each client connection).no-threadsis useful for debugging under Linux; see Section 29.5, “Debugging and Porting MySQL”. -
Property Value Command-Line Format --thread-pool-algorithm=#System Variable thread_pool_algorithmScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 1This variable controls which algorithm the thread pool plugin uses:
A value of 0 (the default) uses a conservative low-concurrency algorithm which is most well tested and is known to produce very good results.
A value of 1 increases the concurrency and uses a more aggressive algorithm which at times has been known to perform 5–10% better on optimal thread counts, but has degrading performance as the number of connections increases. Its use should be considered as experimental and not supported.
This variable is available only if the thread pool plugin is enabled. See Section 5.6.3, “MySQL Enterprise Thread Pool”
thread_pool_high_priority_connectionProperty Value Command-Line Format --thread-pool-high-priority-connection=#System Variable thread_pool_high_priority_connectionScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 1This variable affects queuing of new statements prior to execution. If the value is 0 (false, the default), statement queuing uses both the low-priority and high-priority queues. If the value is 1 (true), queued statements always go to the high-priority queue.
This variable is available only if the thread pool plugin is enabled. See Section 5.6.3, “MySQL Enterprise Thread Pool”
thread_pool_max_active_query_threadsProperty Value Command-Line Format --thread-pool-max-active-query-threadsIntroduced 8.0.19 System Variable thread_pool_max_active_query_threadsScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 512The maximum permissible number of active (running) query threads per group. If the value is 0, the thread pool plugin uses up to as many threads as are available.
thread_pool_max_unused_threadsProperty Value Command-Line Format --thread-pool-max-unused-threads=#System Variable thread_pool_max_unused_threadsScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 0Minimum Value 0Maximum Value 4096The maximum permitted number of unused threads in the thread pool. This variable makes it possible to limit the amount of memory used by sleeping threads.
A value of 0 (the default) means no limit on the number of sleeping threads. A value of
NwhereNis greater than 0 means 1 consumer thread andN−1 reserve threads. In this case, if a thread is ready to sleep but the number of sleeping threads is already at the maximum, the thread exits rather than going to sleep.A sleeping thread is either sleeping as a consumer thread or a reserve thread. The thread pool permits one thread to be the consumer thread when sleeping. If a thread goes to sleep and there is no existing consumer thread, it will sleep as a consumer thread. When a thread must be woken up, a consumer thread is selected if there is one. A reserve thread is selected only when there is no consumer thread to wake up.
This variable is available only if the thread pool plugin is enabled. See Section 5.6.3, “MySQL Enterprise Thread Pool”
-
Property Value Command-Line Format --thread-pool-prio-kickup-timer=#System Variable thread_pool_prio_kickup_timerScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 1000Minimum Value 0Maximum Value 4294967294This variable affects statements waiting for execution in the low-priority queue. The value is the number of milliseconds before a waiting statement is moved to the high-priority queue. The default is 1000 (1 second). The range of values is 0 to 232 − 2.
This variable is available only if the thread pool plugin is enabled. See Section 5.6.3, “MySQL Enterprise Thread Pool”
-
Property Value Command-Line Format --thread-pool-size=#System Variable thread_pool_sizeScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value 16Minimum Value 1Maximum Value (≥ 8.0.19) 512Maximum Value (≤ 8.0.18) 64The number of thread groups in the thread pool. This is the most important parameter controlling thread pool performance. It affects how many statements can execute simultaneously. The default value is 16, with a range from 1 to 64 of permissible values. If a value outside this range is specified, the thread pool plugin does not load and the server writes a message to the error log.
This variable is available only if the thread pool plugin is enabled. See Section 5.6.3, “MySQL Enterprise Thread Pool”
-
Property Value Command-Line Format --thread-pool-stall-limit=#System Variable thread_pool_stall_limitScope Global Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 6Minimum Value 4Maximum Value 600This variable affects executing statements. The value is the amount of time a statement has to finish after starting to execute before it becomes defined as stalled, at which point the thread pool permits the thread group to begin executing another statement. The value is measured in 10 millisecond units, so a value of 6 (the default) means 60ms. The range of values is 4 to 600 (40ms to 6s). Short wait values permit threads to start more quickly. Short values are also better for avoiding deadlock situations. Long wait values are useful for workloads that include long-running statements, to avoid starting too many new statements while the current ones execute.
This variable is available only if the thread pool plugin is enabled. See Section 5.6.3, “MySQL Enterprise Thread Pool”
-
Property Value Command-Line Format --thread-stack=#System Variable thread_stackScope Global Dynamic No SET_VARHint AppliesNo Type Integer Default Value (64-bit platforms) 286720Default Value (32-bit platforms) 221184Minimum Value 131072Maximum Value (64-bit platforms) 18446744073709551615Maximum Value (32-bit platforms) 4294967295Block Size 1024The stack size for each thread. The default is large enough for normal operation. If the thread stack size is too small, it limits the complexity of the SQL statements that the server can handle, the recursion depth of stored procedures, and other memory-consuming actions.
-
Property Value System Variable time_zoneScope Global, Session Dynamic Yes SET_VARHint Applies (≥ 8.0.17)Yes SET_VARHint Applies (≤ 8.0.16)No Type String Default Value SYSTEMMinimum Value (≥ 8.0.19) -14:00Minimum Value (≤ 8.0.18) -12:59Maximum Value (≥ 8.0.19) +14:00Maximum Value (≤ 8.0.18) +13:00The current time zone. This variable is used to initialize the time zone for each client that connects. By default, the initial value of this is
'SYSTEM'(which means, “use the value ofsystem_time_zone”). The value can be specified explicitly at server startup with the--default-time-zoneoption. See Section 5.1.14, “MySQL Server Time Zone Support”.NoteIf set to
SYSTEM, every MySQL function call that requires a time zone calculation makes a system library call to determine the current system time zone. This call may be protected by a global mutex, resulting in contention. -
Property Value System Variable timestampScope Session Dynamic Yes SET_VARHint AppliesYes Type Numeric Default Value UNIX_TIMESTAMP()Minimum Value 1Maximum Value 2147483647Set the time for this client. This is used to get the original timestamp if you use the binary log to restore rows.
timestamp_valueshould be a Unix epoch timestamp (a value like that returned byUNIX_TIMESTAMP(), not a value in'format) orYYYY-MM-DD hh:mm:ss'DEFAULT.Setting
timestampto a constant value causes it to retain that value until it is changed again. SettingtimestamptoDEFAULTcauses its value to be the current date and time as of the time it is accessed.timestampis aDOUBLErather thanBIGINTbecause its value includes a microseconds part. The maximum value corresponds to'2038-01-19 03:14:07'UTC, the same as for theTIMESTAMPdata type.SET timestampaffects the value returned byNOW()but not bySYSDATE(). This means that timestamp settings in the binary log have no effect on invocations ofSYSDATE(). The server can be started with the--sysdate-is-nowoption to causeSYSDATE()to be an alias forNOW(), in which caseSET timestampaffects both functions. -
Property Value Command-Line Format --tls-ciphersuites=ciphersuite_listIntroduced 8.0.16 System Variable tls_ciphersuitesScope Global Dynamic Yes SET_VARHint AppliesNo Type String Default Value NULLWhich ciphersuites the server permits for encrypted connections that use TLSv1.3. The value is a list of zero or more colon-separated ciphersuite names.
The ciphersuites that can be named for this variable depend on the SSL library used to compile MySQL. If this variable is not set, its default value is
NULL, which means that the server permits the default set of ciphersuites. If the variable is set to the empty string, no ciphersuites are enabled and encrypted connections cannot be established. For more information, see Section 6.3.2, “Encrypted Connection TLS Protocols and Ciphers”. -
Property Value Command-Line Format --tls-version=protocol_listSystem Variable tls_versionScope Global Dynamic (≥ 8.0.16) Yes Dynamic (≤ 8.0.15) No SET_VARHint AppliesNo Type String Default Value (≥ 8.0.16) TLSv1,TLSv1.1,TLSv1.2,TLSv1.3(OpenSSL 1.1.1 and higher)TLSv1,TLSv1.1,TLSv1.2(otherwise)Default Value (≤ 8.0.15) TLSv1,TLSv1.1,TLSv1.2Which protocols the server permits for encrypted connections. The value is a list of one or more comma-separated protocol names. The protocols that can be named for this variable depend on the SSL library used to compile MySQL. Permitted protocols should be chosen such as not to leave “holes” in the list. For details, see Section 6.3.2, “Encrypted Connection TLS Protocols and Ciphers”.
As of MySQL 8.0.16, this variable is dynamic and can be modified at runtime to affect the TSL context the server uses for new connections. See Server-Side Runtime Configuration and Monitoring for Encrypted Connections. Prior to MySQL 8.0.16, this variable can be set only at server startup.
-
Property Value Command-Line Format --tmp-table-size=#System Variable tmp_table_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Integer Default Value 16777216Minimum Value 1024Maximum Value 18446744073709551615The maximum size of internal in-memory temporary tables. This variable does not apply to user-created
MEMORYtables.The actual limit is the smaller of
tmp_table_sizeandmax_heap_table_size. When an in-memory temporary table exceeds the limit, MySQL automatically converts it to an on-disk temporary table.Increase the value of
tmp_table_size(andmax_heap_table_sizeif necessary) if you do many advancedGROUP BYqueries and you have lots of memory.You can compare the number of internal on-disk temporary tables created to the total number of internal temporary tables created by comparing
Created_tmp_disk_tablesandCreated_tmp_tablesvalues.See also Section 8.4.4, “Internal Temporary Table Use in MySQL”.
-
Property Value Command-Line Format --tmpdir=dir_nameSystem Variable tmpdirScope Global Dynamic No SET_VARHint AppliesNo Type Directory name The path of the directory to use for creating temporary files. It might be useful if your default
/tmpdirectory resides on a partition that is too small to hold temporary tables. This variable can be set to a list of several paths that are used in round-robin fashion. Paths should be separated by colon characters (:) on Unix and semicolon characters (;) on Windows.tmpdircan be a non-permanent location, such as a directory on a memory-based file system or a directory that is cleared when the server host restarts. If the MySQL server is acting as a replication slave, and you are using a non-permanent location fortmpdir, consider setting a different temporary directory for the slave using theslave_load_tmpdirvariable. For a replication slave, the temporary files used to replicateLOAD DATAstatements are stored in this directory, so with a permanent location they can survive machine restarts, although replication can now continue after a restart if the temporary files have been removed.For more information about the storage location of temporary files, see Section B.4.3.5, “Where MySQL Stores Temporary Files”.
-
Property Value Command-Line Format --transaction-alloc-block-size=#System Variable transaction_alloc_block_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 8192Minimum Value 1024Maximum Value 131072Block Size 1024The amount in bytes by which to increase a per-transaction memory pool which needs memory. See the description of
transaction_prealloc_size. -
Property Value Command-Line Format --transaction-isolation=nameSystem Variable transaction_isolationScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Enumeration Default Value REPEATABLE-READValid Values READ-UNCOMMITTEDREAD-COMMITTEDREPEATABLE-READSERIALIZABLEThe transaction isolation level. The default is
REPEATABLE-READ.The transaction isolation level has three scopes: global, session, and next transaction. This three-scope implementation leads to some nonstandard isolation-level assignment semantics, as described later.
To set the global transaction isolation level at startup, use the
--transaction-isolationserver option.At runtime, the isolation level can be set directly using the
SETstatement to assign a value to thetransaction_isolationsystem variable, or indirectly using theSET TRANSACTIONstatement. If you settransaction_isolationdirectly to an isolation level name that contains a space, the name should be enclosed within quotation marks, with the space replaced by a dash. For example, use thisSETstatement to set the global value:SET GLOBAL transaction_isolation = 'READ-COMMITTED';Setting the global
transaction_isolationvalue sets the isolation level for all subsequent sessions. Existing sessions are unaffected.To set the session or next-level
transaction_isolationvalue, use theSETstatement. For most session system variables, these statements are equivalent ways to set the value:SET @@SESSION.var_name = value; SET SESSION var_name = value; SET var_name = value; SET @@var_name = value;As mentioned previously, the transaction isolation level has a next-transaction scope, in addition to the global and session scopes. To enable the next-transaction scope to be set,
SETsyntax for assigning session system variable values has nonstandard semantics fortransaction_isolation:To set the session isolation level, use any of these syntaxes:
SET @@SESSION.transaction_isolation = value; SET SESSION transaction_isolation = value; SET transaction_isolation = value;For each of those syntaxes, these semantics apply:
Sets the isolation level for all subsequent transactions performed within the session.
Permitted within transactions, but does not affect the current ongoing transaction.
If executed between transactions, overrides any preceding statement that sets the next-transaction isolation level.
Corresponds to
SET SESSION TRANSACTION ISOLATION LEVEL(with theSESSIONkeyword).
To set the next-transaction isolation level, use this syntax:
SET @@transaction_isolation = value;For that syntax, these semantics apply:
Sets the isolation level only for the next single transaction performed within the session.
Subsequent transactions revert to the session isolation level.
Not permitted within transactions.
Corresponds to
SET TRANSACTION ISOLATION LEVEL(without theSESSIONkeyword).
For more information about
SET TRANSACTIONand its relationship to thetransaction_isolationsystem variable, see Section 13.3.7, “SET TRANSACTION Statement”. -
Property Value Command-Line Format --transaction-prealloc-size=#System Variable transaction_prealloc_sizeScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 4096Minimum Value 1024Maximum Value 131072Block Size 1024There is a per-transaction memory pool from which various transaction-related allocations take memory. The initial size of the pool in bytes is
transaction_prealloc_size. For every allocation that cannot be satisfied from the pool because it has insufficient memory available, the pool is increased bytransaction_alloc_block_sizebytes. When the transaction ends, the pool is truncated totransaction_prealloc_sizebytes.By making
transaction_prealloc_sizesufficiently large to contain all statements within a single transaction, you can avoid manymalloc()calls. -
Property Value Command-Line Format --transaction-read-only[={OFF|ON}]System Variable transaction_read_onlyScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Boolean Default Value OFFThe transaction access mode. The value can be
OFF(read/write; the default) orON(read only).The transaction access mode has three scopes: global, session, and next transaction. This three-scope implementation leads to some nonstandard access-mode assignment semantics, as described later.
To set the global transaction access mode at startup, use the
--transaction-read-onlyserver option.At runtime, the access mode can be set directly using the
SETstatement to assign a value to thetransaction_read_onlysystem variable, or indirectly using theSET TRANSACTIONstatement. For example, use thisSETstatement to set the global value:SET GLOBAL transaction_read_only = ON;Setting the global
transaction_read_onlyvalue sets the access mode for all subsequent sessions. Existing sessions are unaffected.To set the session or next-level
transaction_read_onlyvalue, use theSETstatement. For most session system variables, these statements are equivalent ways to set the value:SET @@SESSION.var_name = value; SET SESSION var_name = value; SET var_name = value; SET @@var_name = value;As mentioned previously, the transaction access mode has a next-transaction scope, in addition to the global and session scopes. To enable the next-transaction scope to be set,
SETsyntax for assigning session system variable values has nonstandard semantics fortransaction_read_only,To set the session access mode, use any of these syntaxes:
SET @@SESSION.transaction_read_only = value; SET SESSION transaction_read_only = value; SET transaction_read_only = value;For each of those syntaxes, these semantics apply:
Sets the access mode for all subsequent transactions performed within the session.
Permitted within transactions, but does not affect the current ongoing transaction.
If executed between transactions, overrides any preceding statement that sets the next-transaction access mode.
Corresponds to
SET SESSION TRANSACTION {READ WRITE | READ ONLY}(with theSESSIONkeyword).
To set the next-transaction access mode, use this syntax:
SET @@transaction_read_only = value;For that syntax, these semantics apply:
Sets the access mode only for the next single transaction performed within the session.
Subsequent transactions revert to the session access mode.
Not permitted within transactions.
Corresponds to
SET TRANSACTION {READ WRITE | READ ONLY}(without theSESSIONkeyword).
For more information about
SET TRANSACTIONand its relationship to thetransaction_read_onlysystem variable, see Section 13.3.7, “SET TRANSACTION Statement”. -
Property Value System Variable unique_checksScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value ONIf set to 1 (the default), uniqueness checks for secondary indexes in
InnoDBtables are performed. If set to 0, storage engines are permitted to assume that duplicate keys are not present in input data. If you know for certain that your data does not contain uniqueness violations, you can set this to 0 to speed up large table imports toInnoDB.Setting this variable to 0 does not require storage engines to ignore duplicate keys. An engine is still permitted to check for them and issue duplicate-key errors if it detects them.
-
Property Value Command-Line Format --updatable-views-with-limit[={OFF|ON}]System Variable updatable_views_with_limitScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value 1This variable controls whether updates to a view can be made when the view does not contain all columns of the primary key defined in the underlying table, if the update statement contains a
LIMITclause. (Such updates often are generated by GUI tools.) An update is anUPDATEorDELETEstatement. Primary key here means aPRIMARY KEY, or aUNIQUEindex in which no column can containNULL.The variable can have two values:
1orYES: Issue a warning only (not an error message). This is the default value.0orNO: Prohibit the update.
-
Property Value Introduced 8.0.13 System Variable use_secondary_engineScope Session Dynamic Yes SET_VARHint AppliesYes Type Enumeration Default Value ONValid Values OFFONFORCEDFor future use.
validate_password.xxxThe
validate_passwordcomponent implements a set of system variables having names of the formvalidate_password.. These variables affect password testing by that component; see Section 6.4.3.2, “Password Validation Options and Variables”.xxx-
Property Value Command-Line Format --validate-user-plugins[={OFF|ON}]System Variable validate_user_pluginsScope Global Dynamic No SET_VARHint AppliesNo Type Boolean Default Value ONIf this variable is enabled (the default), the server checks each user account and produces a warning if conditions are found that would make the account unusable:
The account requires an authentication plugin that is not loaded.
The account requires the
sha256_passwordorcaching_sha2_passwordauthentication plugin but the server was started with neither SSL nor RSA enabled as required by the plugin.
Enabling
validate_user_pluginsslows down server initialization andFLUSH PRIVILEGES. If you do not require the additional checking, you can disable this variable at startup to avoid the performance decrement. The version number for the server. The value might also include a suffix indicating server build or configuration information.
-debugindicates that the server was built with debugging support enabled.-
Property Value System Variable version_commentScope Global Dynamic No SET_VARHint AppliesNo Type String The CMake configuration program has a
COMPILATION_COMMENT_SERVERoption that permits a comment to be specified when building MySQL. This variable contains the value of that comment. (Prior to MySQL 8.0.14,version_commentis set by theCOMPILATION_COMMENToption.) See Section 2.9.7, “MySQL Source-Configuration Options”. -
Property Value System Variable version_compile_machineScope Global Dynamic No SET_VARHint AppliesNo Type String The type of the server binary.
-
Property Value System Variable version_compile_osScope Global Dynamic No SET_VARHint AppliesNo Type String The type of operating system on which MySQL was built.
-
Property Value System Variable version_compile_zlibScope Global Dynamic No SET_VARHint AppliesNo Type String The version of the compiled-in
zliblibrary. -
Property Value Command-Line Format --wait-timeout=#System Variable wait_timeoutScope Global, Session Dynamic Yes SET_VARHint AppliesNo Type Integer Default Value 28800Minimum Value 1Maximum Value (Other) 31536000Maximum Value (Windows) 2147483The number of seconds the server waits for activity on a noninteractive connection before closing it.
On thread startup, the session
wait_timeoutvalue is initialized from the globalwait_timeoutvalue or from the globalinteractive_timeoutvalue, depending on the type of client (as defined by theCLIENT_INTERACTIVEconnect option tomysql_real_connect()). See alsointeractive_timeout. The number of errors, warnings, and notes that resulted from the last statement that generated messages. This variable is read only. See Section 13.7.7.40, “SHOW WARNINGS Statement”.
-
Property Value Command-Line Format --windowing-use-high-precision[={OFF|ON}]System Variable windowing_use_high_precisionScope Global, Session Dynamic Yes SET_VARHint AppliesYes Type Boolean Default Value ONWhether to compute window operations without loss of precision. See Section 8.2.1.21, “Window Function Optimization”.