All pages
Powered by GitBook
1 of 51

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

System and Status Variables

Optimize MariaDB Server with system variables, configuring various parameters to fine-tune performance, manage resources, and adapt the database to your specific workload requirements.

Big Query Settings

MariaDB 5.3 and beyond have a number of features that are targeted at big queries and so are disabled by default.

This page describes recommended settings for IO-bound queries that shovel through lots of records.

First, turn on Batched Key Access:

# Turn on disk-ordered reads
optimizer_switch='mrr=on'
optimizer_switch='mrr_cost_based=off'

# Turn on Batched Key Access (BKA)
join_cache_level = 6

Give BKA buffer space to operate on. Ideally, it should have enough space to fit all the data examined by the query.

# Size limit for the whole join
join_buffer_space_limit = 300M

# Limit for each individual table
join_buffer_size = 100M

Turn on index_merge/sort-intersection:

optimizer_switch='index_merge_sort_intersection=on'

If your queries examine big fraction of the tables (somewhere more than ~ 30%), turn on :

# Turn on both Hash Join and Batched Key Access
join_cache_level = 8

This page is licensed: CC BY-SA / Gnu FDL

System and Status Variables Added By Major Release

Discover system and status variables added by major MariaDB Server releases. This section helps you track new configuration options and monitoring metrics introduced in different versions.

System and Status Variables Added By Major Unmaintained Release

Discover system and status variables added by major unmaintained MariaDB Server releases. This section provides insights into parameters from older versions, useful for understanding historical config

Handling Too Many Connections

Systems that get too busy can return the too_many_connections error.

When the number of threads_connected exceeds the max_connections server variable, it's time to make a change. Viewing the threads_connected status variable shows only the current number of connections, but it's more useful to see what the value has peaked at, and this is shown by the max_used_connections status variable.

This error may be a symptom of slow queries and other bottlenecks, but if the system is running smoothly this can be addressed by increasing the value of max_connections.

This page is licensed: CC BY-SA / Gnu FDL

OQGRAPH System and Status Variables

This page documents system and status variables related to the . See and for complete list of all system and status variables.

System Variables

oqgraph_allow_create_integer_latch

Optimizing key_buffer_size

is a variable which determines the size of the index buffers held in memory, which affects the speed of index reads. Note that Aria tables by default make use of an alternative setting, .

A good rule of thumb for servers consisting particularly of MyISAM tables is for about 25% or more of the available server memory to be dedicated to the key buffer.

A good way to determine whether to adjust the value is to compare the value, which is the total value of requests to read an index, and the values, the total number of requests that had to be read from disk.

The ratio of key_reads to key_read_requests should be as low as possible, 1:100 is the highest acceptable, 1:1000 is better, and 1:10 is terrible.

The effective maximum size might be lower than what is set, depending on the server's available physical RAM and the per-process limit determined by the operating system.

If you don't make use of MyISAM tables at all, you can set this to a very low value, such as 64K.

This page is licensed: CC BY-SA / Gnu FDL

Sample my.cnf Files

Place holder for sample my.cnf files, customized for different memory size and storage engines. In addition, we'd like to hear from you what works for you, so the knowledge can be crowd-sourced and shared.

This page is licensed: CC BY-SA / Gnu FDL

key_buffer_size
MyISAM
aria-pagecache-buffer-size
key_read_requests
key_reads
  • Description: Created when the OQGRAPH storage engine is installed, if set to 1 (0 is default), permits the latch field to be an integer (see OQGRAPH Overview). This deprecated feature was removed in .

  • Scope: Global

  • Dynamic: Yes

  • Data Type: boolean

  • Default Value: 0

  • Removed: .

Status Variables

Oqgraph_boost_version

  • Description: OQGRAPH boost version.

  • Scope: Global, Session

  • Data Type: string

Oqgraph_compat_mode

  • Description: Whether or not legacy tables with integer latches are supported.

  • Scope: Global, Session

  • Data Type: string

Oqgraph_verbose_debug

  • Description: Whether or not verbose debugging is enabled. If it is, performance may be adversely impacted

  • Scope: Global, Session

  • Data Type: string

This page is licensed: CC BY-SA / Gnu FDL

OQGRAPH storage engine
Server Status Variables
Server System Variables

Setting Innodb Buffer Pool Size Dynamically

Resizing the buffer pool is performed in chunks determined by the size of the innodb_buffer_pool_chunk_size variable.

The resize operation waits until all active transactions and operations are completed, and new transactions and operations that need to access the buffer pool must wait until the resize is complete (although when decreasing the size, access is permitted when defragmenting and withdrawing pages).

Nested transactions may fail if started after the buffer pool resize has begun.

The new buffer pool size must be a multiple of innodb_buffer_pool_chunk_size * innodb_buffer_pool_instances (note that innodb_buffer_pool_instances is ignored from , and removed in MariaDB 10.6, as the buffer pool is no longer split into multiple instances). If you attempt to set a different figure, the value is automatically adjusted to a multiple of at least the attempted size. Note that adjusting the innodb_buffer_pool_chunk_size setting can result in a change in the buffer pool size.

The number of chunks as calculated by innodb_buffer_pool_size / innodb_buffer_pool_chunk_size should not exceed 1000 in order to avoid performance issues.

A background thread performs the resizing operation. The Innodb_buffer_pool_resize_status status variable shows the progress of the resizing operation, for example:

SHOW STATUS LIKE 'Innodb_buffer_pool_resize_status';
+----------------------------------+----------------------------------+
| Variable_name                    | Value                            |
+----------------------------------+----------------------------------+
| Innodb_buffer_pool_resize_status | Resizing also other hash tables. |
+----------------------------------+----------------------------------+

or

Progress is also logged in the .

This page is licensed: CC BY-SA / Gnu FDL

MariaDB Optimization for MySQL Users

MariaDB contains many new options and optimizations which, for compatibility or other reasons, are not enabled in the default install. Enabling them helps you gain extra performance from the same hardware when upgrading from MySQL to MariaDB. This article contains information on options and settings which you should enable, or at least look in to, when making the switch.

aria-pagecache-buffer-size=##

If you are using a log of on-disk temporary tables, increase the above to as much as you can afford. See Aria Storage Engine for more details.

key-cache-segments=8

If you use/have a lot of MyISAM files, increase the above to 4 or 8. See Segmented Key Cache and for more information.

thread-handling=pool-of-threads

Threadpool is a great way to increase performance in situations where queries are relatively short and the load is CPU bound (e.g. OLTP workloads). To enable it, add the above to your my.cnf file. See Threadpool in 5.5 for more information.

This page is licensed: CC BY-SA / Gnu FDL

System Variables Added in MariaDB 12.0

This is a list of system variables that have been added in the MariaDB 12.0 series.

Variable
Added

See Also

This page is licensed: CC BY-SA / Gnu FDL

System Variables Added in MariaDB 11.6

This is a list of system variables that have been added in the series.

Variable
Added

See Also

This page is licensed: CC BY-SA / Gnu FDL

System Variables Added in MariaDB 10.9

This is a list of system variables that have been added in the series.

Variable
Added

See Also

This page is licensed: CC BY-SA / Gnu FDL

Status Variables Added in MariaDB 10.4

This is a list of status variables that were added in the series.

Variable
Added

See Also

This page is licensed: CC BY-SA / Gnu FDL

System Variables Added in MariaDB 11.8

Variable
Added

For system variables added since the previous long-term release, MariaDB 11.4, see:

This page is licensed: CC BY-SA / Gnu FDL

Status Variables Added in MariaDB 11.4

This is a list of status variables that were added in the MariaDB 11.4 series.

Variable
Added

For status variables added since the previous long-term release, MariaDB 10.11, see:

See Also

This page is licensed: CC BY-SA / Gnu FDL

Spider Status Variables

The following status variables are associated with the . See for a complete list of status variables that can be viewed with .

See also the .

Spider_direct_aggregate

  • Description: Number of times direct aggregate has happened in spider. That is, in a partitioned spider table, instead of scanning individual rows in remote tables corresponding to partitions for aggregation functions like

System Variables Added in MariaDB 11.1

This is a list of that have been added in the series.

Variable
Added

System Variables Added in MariaDB 11.5

This is a list of that have been added in the series.

Variable
Added

System Variables Added in MariaDB 10.8

This is a list of that have been added in the series.

Variable
Added

For system variables that have been removed or deprecated, see .

System Variables Added in MariaDB 11.3

This is a list of that have been added in the series.

Variable
Added

Status Variables Added in MariaDB 11.0

This is a list of that were added in the series.

Variable
Added

See Also

Status Variables Added in MariaDB 10.6

This is a list of that were added in the series.

Variable
Added

replicate_same_server_id

MariaDB 12.0.1

show_slave_auth_info

MariaDB 12.0.1

ssl_passphrase

MariaDB 12.0.1

System Variables Added in MariaDB 11.8
analyze_max_length
MariaDB 12.0.2
create_tmp_table_binlog_formats
MariaDB 12.0.1
master_info_file
MariaDB 12.0.1
max_open_cursors
MariaDB 12.0.1
System Variables Added in MariaDB 11.7
System Variables Added in MariaDB 11.6
System Variables Added in MariaDB 11.5
analyze_max_length
MariaDB 11.8.3
innodb_buffer_pool_size_auto_min
MariaDB 11.8.2
innodb_buffer_pool_size_max
MariaDB 11.8.2
innodb_log_checkpoint_now
MariaDB 11.8.2
Status Variables Added in MariaDB 11.0
System variables added in MariaDB 11.4
binlog_gtid_index_hit
MariaDB 11.4.0
binlog_gtid_index_miss
MariaDB 11.4.0
See Also
  • System variables added in MariaDB 10.6

  • Status variables added in MariaDB 10.5

  • Status variables added in MariaDB 10.4

This page is licensed: CC BY-SA / Gnu FDL

Innodb_buffer_pool_pages_lru_freed

MariaDB 10.6.0

resultset_metadata_skipped

MariaDB 10.6.0

status variables
MariaDB 10.6
SUM
and
COUNT
, spider forwards aggregate queries to these tables directly and aggregate the results.
  • Scope: Global, Session

  • Data Type: numeric

  • Spider_direct_delete

    • Description:

    • Scope: Global, Session

    • Data Type: numeric

    • Introduced:

    Spider_direct_order_limit

    • Description:

    • Scope: Global, Session

    • Data Type: numeric

    Spider_direct_update

    • Description:

    • Scope: Global, Session

    • Data Type: numeric

    • Introduced:

    Spider_mon_table_cache_version

    • Description: The version of the spider monitoring table cache, always less than or equal to Spider_mon_table_cache_version_req. If the inequality is strict, then the cache is refreshed when the spider udf spider_ping_table is called. When the cache is refreshed, the value of Spider_mon_table_cache_version is brought up to be the same value as Spider_mon_table_cache_version_req.

    • Scope: Global, Session

    • Initial value: 0

    • Data Type: numeric

    Spider_mon_table_cache_version_req

    • Description: The required version of the spider monitoring table cache. A call to the spider udf spider_flush_table_mon_cache will cause its value to be incremented by one, thus ensuring a refresh of the cache will happen when needed.

    • Scope: Global, Session

    • Initial value: 1

    • Data Type: numeric

    Spider_parallel_search

    • Description:

    • Scope: Global, Session

    • Data Type: numeric

    • Introduced:

    This page is licensed: CC BY-SA / Gnu FDL

    Spider storage engine
    Server Status Variables
    SHOW STATUS
    Full list of MariaDB options, system and status variables

    See Also

    • System Variables Added in MariaDB 11.0

    This page is licensed: CC BY-SA / Gnu FDL

    innodb_alter_copy_bulk

    innodb_log_spin_wait_delay

    innodb_log_write_ahead_size

    MariaDB 10.11.9

    innodb_snapshot_isolation

    system variables

    See Also

    • Status Variables Added in MariaDB 11.5

    • System Variables Added in MariaDB 11.4

    This page is licensed: CC BY-SA / Gnu FDL

    innodb_alter_copy_bulk

    innodb_log_spin_wait_delay

    innodb_log_write_ahead_size

    max_tmp_session_space_usage

    system variables

    See Also
    • System Variables Added in MariaDB 10.6

    This page is licensed: CC BY-SA / Gnu FDL

    binlog_alter_two_phase

    innodb_log_file_buffering

    system variables
    Upgrading from MariaDB 10.7 to MariaDB 10.8
    See Also
    • System Variables Added in MariaDB 11.2

    This page is licensed: CC BY-SA / Gnu FDL

    innodb_truncate_temporary_tablespace_now

    redirect_url

    system variables

    System variables added in MariaDB 11.0

    This page is licensed: CC BY-SA / Gnu FDL

    max_used_connections_time

    status variables
    SHOW STATUS LIKE 'Innodb_buffer_pool_resize_status';
    +----------------------------------+----------------------------------------------------+
    | Variable_name                    | Value                                              |
    +----------------------------------+----------------------------------------------------+
    | Innodb_buffer_pool_resize_status | Completed resizing buffer pool at 161103 16:26:54. |
    +----------------------------------+----------------------------------------------------+
    error log

    System Variables Added in MariaDB 10.4
    Status Variables Added in MariaDB 10.5
    Status Variables Added in MariaDB 10.3
    Status Variables Added in MariaDB 10.2
    Aborted_connects_preauth
    Com_backup
    Com_backup_lock
    Feature_application_time_periods
    System Variables Added in MariaDB 11.5
    innodb_log_file_mmap
    optimizer_join_limit_pref_ratio
    server_uid
    System Variables Added in MariaDB 10.8
    System Variables Added in MariaDB 10.6
    rocksdb_log_dir

    System Variables Added in MariaDB 10.6

    This is a list of system variables that have been added in the MariaDB 10.6 series. The list does not include variables that are not part of the default release.

    Variable
    Added

    For system variables that have been removed or deprecated, see .

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    Status Variables Added in MariaDB 11.5

    This is a list of status variables that were added in the series.

    Variable
    Added

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    System Variables Added in MariaDB 11.7

    This is a list of system variables that have been added in the series.

    Variable
    Added

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    Status Variables Added in MariaDB 10.2

    This is a list of status variables that were added in the series.

    Variable
    Added

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    Segmented Key Cache

    About Segmented Key Cache

    A segmented key cache is a collection of structures for regular key caches called key cache segments. Segmented key caches mitigate one of the major problems of the simple key cache: thread contention for key cache lock (mutex). With regular key caches, every call of a key cache interface function must acquire this lock. So threads compete for this lock even in the case when they have acquired shared locks for the file and the pages they want to read from are in the key cache buffers.

    When working with a segmented key cache any key cache interface function that needs only one page has to acquire the key cache lock only for the segment the page is assigned to. This makes the chances for threads not having to compete for the same key cache lock better.

    Any page from a file can be placed into a buffer of only one segment. The number of the segment is calculated from the file number and the position of the page in the file, and it's always the same for the page. Pages are evenly distributed among segments.

    Semisynchronous Replication Plugin Status Variables

    This page documents status variables related to the (which has been merged into the main server from ). See for a complete list of status variables that can be viewed with .

    See also the .

    Rpl_semi_sync_master_clients

    System Variables Added in MariaDB 11.2

    This is a list of that have been added in the series.

    Variable
    Added

    System Variables Added in MariaDB 5.5

    This is a list of that were added in the series.

    The list excludes variables related to non-default storage engines and plugins that can be added to :

    Variable
    Added

    System Variables Added in MariaDB 10.10

    This is a list of that have been added in the series.

    Variable
    Added
    The idea and the original code of the segmented key cache was provided by Fredrik Nylander from Stardoll.com. The code was extensively reworked, improved, and eventually merged into MariaDB by Igor Babaev from Monty Program (now MariaDB Corporation).

    You can find some benchmark results comparing various settings on the page.

    Segmented Key Cache Syntax

    New global variable: key_cache_segments. This variable sets the number of segments in a key cache. Valid values for this variable are whole numbers between 0 and 64. If the number of segments is set to a number greater than 64 the number of segments will be truncated to 64 and a warning will be issued. A value of 0 means the key cache is a regular (i.e. non-segmented) key cache. This is the default. If key_cache_segments is1 (or higher) then the new key cache segmentation code is used. In practice there is no practical use of a single-segment segmented key cache except for testing purposes, and settingkey_cache_segments = 1 should be slower than any other option and should not be used in production.

    Other global variables used when working with regular key caches also apply to segmented key caches: key_buffer_size,key_cache_age_threshold, key_cache_block_size, and key_cache_division_limit.

    Segmented Key Cache Statistics

    Statistics about the key cache can be found by looking at the KEY_CACHES table in the INFORMATION_SCHEMA database. Columns in this table are:

    Column Name
    Description

    KEY_CACHE_NAME

    The name of the key cache

    SEGMENTS

    total number of segments (set to NULL for regular key caches)

    SEGMENT_NUMBER

    segment number (set to NULL for any regular key caches and for rows containing aggregation statistics for segmented key caches)

    FULL_SIZE

    memory for cache buffers/auxiliary structures

    BLOCK_SIZE

    size of the blocks

    USED_BLOCKS

    number of currently used blocks

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    MyISAM
    Description: Number of semisynchronous slaves.
  • Data Type: numeric

  • Rpl_semi_sync_master_get_ack

    • Description: Number of acknowledgements received by the master from slaves.

    • Data Type: numeric

    Rpl_semi_sync_master_net_avg_wait_time

    • Description: Average time the master waited for a slave to reply, in microseconds.

    • Data Type: numeric

    Rpl_semi_sync_master_net_wait_time

    • Description: Total time the master waited for slave replies, in microseconds.

    • Data Type: numeric

    Rpl_semi_sync_master_net_waits

    • Description: Total number of times the master waited for slave replies.

    • Data Type: numeric

    Rpl_semi_sync_master_no_times

    • Description: Number of times the master turned off semisynchronous replication. The global value can be flushed by FLUSH STATUS.

    • Data Type: numeric

    Rpl_semi_sync_master_no_tx

    • Description: Number of commits that have not been successfully acknowledged by a slave. The global value can be flushed by FLUSH STATUS.

    • Data Type: numeric

    Rpl_semi_sync_master_request_ack

    • Description: Number of acknowledgement requests sent to slaves.

    • Data Type: numeric

    Rpl_semi_sync_master_status

    • Description: Whether or not semisynchronous replication is currently operating on the master. The value will be ON if both the plugin has been enabled and a commit acknowledgment has occurred. It will be OFF if either the plugin has not been enabled, or the master is replicating asynchronously due to a commit acknowledgment timeout.

    • Data Type: boolean

    Rpl_semi_sync_master_timefunc_failures

    • Description: Number of times the master failed when calling a time function, such as gettimeofday(). The global value can be flushed by FLUSH STATUS.

    • Data Type: numeric

    Rpl_semi_sync_master_tx_avg_wait_time

    • Description: Average time the master waited for each transaction, in microseconds.

    • Data Type: numeric

    Rpl_semi_sync_master_tx_wait_time

    • Description: Total time the master waited for transactions, in microseconds.

    • Data Type: numeric

    Rpl_semi_sync_master_tx_waits

    • Description: Total number of times the master waited for transactions.

    • Data Type: numeric

    Rpl_semi_sync_master_wait_pos_backtraverse

    • Description: Total number of times the master waited for an event that had binary coordinates lower than previous events waited for. Occurs if the order in which transactions start waiting for a reply is different from the order in which their binary log events were written. The global value can be flushed by FLUSH STATUS.

    • Data Type: numeric

    Rpl_semi_sync_master_wait_sessions

    • Description: Number of sessions that are currently waiting for slave replies.

    • Data Type: numeric

    Rpl_semi_sync_master_yes_tx

    • Description: Number of commits that have been successfully acknowledged by a slave. The global value can be flushed by FLUSH STATUS.

    • Data Type: numeric

    Rpl_semi_sync_slave_status

    • Description: Whether or not semisynchronous replication is currently operating on the slave. ON if both semi-sync has been enabled for the replica (i.e. by setting the variable rpl_semi_sync_slave_enabled to TRUE) and the slave I/O thread is running.

    • Data Type: boolean

    Rpl_semi_sync_slave_send_ack

    • Description: Number of acknowledgements the slave sent to the master.

    • Data Type: numeric

    This page is licensed: CC BY-SA / Gnu FDL

    Semisynchronous Replication Plugin
    Server Status Variables
    SHOW STATUS
    Full list of MariaDB options, system and status variables

    See Also

    • System Variables Added in MariaDB 11.1

    This page is licensed: CC BY-SA / Gnu FDL

    binlog_do_db

    binlog_ignore_db

    binlog_row_event_max_size

    block_encryption_mode

    system variables

    See also

    • System Variables Added in MariaDB 10.0

    • Upgrading from MariaDB 5.3 to MariaDB 5.5

    This page is licensed: CC BY-SA / Gnu FDL

    innodb_adaptive_flushing_method

    innodb_adaptive_hash_index_partitions

    innodb_blocking_buffer_pool_restore

    system variables

    See Also

    • System Variables Added in MariaDB 10.9

    This page is licensed: CC BY-SA / Gnu FDL

    allow_suspicious_udfs

    optimizer_extra_pruning_depth

    log_slow_max_warnings

    optimizer_max_sel_args

    system variables

    innodb_snapshot_isolation

    MariaDB 10.6.18

    log_slow_max_warnings

    MariaDB 10.6.16

    note_verbosity

    MariaDB 10.6.16

    optimizer_adjust_secondary_key_costs

    MariaDB 10.6.17

    optimizer_join_limit_pref_ratio

    MariaDB 10.6.20

    optimizer_max_sel_args

    MariaDB 10.6.16

    server_uid

    MariaDB 10.6.19

    MariaDB 10.6.0

    Upgrading from MariaDB 10.5 to MariaDB 10.6
    Status Variables Added in MariaDB 10.6
    System Variables Added in MariaDB 10.5
    System Variables Added in MariaDB 10.4
    analyze_max_length
    MariaDB 10.6.23
    binlog_expire_logs_seconds
    MariaDB 10.6.0
    innodb_deadlock_report
    MariaDB 10.6.0
    innodb_read_only_compressed
    MariaDB 10.6.0

    Innodb_async_reads_total_enqueues

    Innodb_async_reads_total_count

    Innodb_async_reads_wait_slot_sec

    Innodb_async_writes_pending

    Innodb_async_writes_queue_size

    Innodb_async_writes_tasks_running

    Innodb_async_writes_total_enqueues

    Innodb_async_writes_total_count

    Innodb_async_writes_wait_slot_sec

    tmp_space_used

    System variables added in MariaDB 11.5
    max_tmp_space_used
    Innodb_async_reads_pending
    Innodb_async_reads_queue_size
    Innodb_async_reads_tasks_running

    mhnsw_default_m

    mhnsw_ef_search

    mhnsw_max_cache_size

    slave_abort_blocking_timeout

    System Variables Added in MariaDB 11.6
    binlog_large_commit_threshold
    innodb_log_file_mmap
    log_slow_always_query_time
    mhnsw_default_distance

    Innodb_buffer_pool_resize_status

    Innodb_encryption_num_key_requests

    Innodb_have_punch_hole

    Innodb_pages0read

    Innodb_scrub_log

    System variables added in MariaDB 10.2
    Status variables added in MariaDB 10.3
    Status variables added in MariaDB 10.1
    Status variables added in MariaDB 10.0
    Com_alter_user
    Com_execute_immediate
    Com_multi
    Com_show_create_user
    log_slow_max_warnings
    optimizer_max_sel_args
    server_uid
    transaction_isolation
    transaction_read_only
    max_tmp_total_space_usage
    server_uid

    System Variables Added in MariaDB 10.11

    This is a list of system variables that have been added in the MariaDB 10.11 series.

    Variable
    Added

    For system variables added since the previous long-term release, , see:

    For system variables that have been removed or deprecated, see .

    This page is licensed: CC BY-SA / Gnu FDL

    SQL Error Log System Variables and Options

    This page documents system variables and options related to the SQL_Error_Log Plugin. See Server System Variables for a complete list of system variables and instructions on setting them.

    See also the Full list of MariaDB options, system and status variables.

    Options

    sql_error_log

    • Description: Controls how the server should treat the plugin when the server starts up.

      • Valid values are:

        • OFF - Disables the plugin without removing it from the table.

    System Variables

    sql_error_log_filename

    • Description: The name (and optionally path) of the logfile containing the errors. Rotation will use a naming convention such as sql_error_log_filename.001. If no path is specified, the log file will be written to the .

    • Command line: --sql-error-log-filename=value

    • Scope: Global

    sql_error_log_rate

    • Description: The logging sampling rate. Setting to 10, for example, means that one in ten errors will be logged. If set to zero, logging is disabled. The default, 1, logs every error.

    • Command line: --sql-error-log-rate=#

    • Scope: Global

    sql_error_log_rotate

    • Description: Setting to #1forces log rotation.

    • Command line: --sql-error-log-rate[={0|1}]

    • Scope: Global

    • Dynamic: Yes

    sql_error_log_rotations

    • Description: Number of rotations before the log is removed. When rotated, the current log file is stored and a new, empty, log is created. Any rotations older than this setting are removed.

    • Command line: --sql-error-log-rotations=#

    • Scope: Global

    • Dynamic: Yes

    sql_error_log_size_limit

    • Description: The log file size limit in bytes. After reaching this size, the log file is rotated.

    • Command line: --sql-error-log-size-limit=#

    • Scope: Global

    • Dynamic: No

    sql_error_log_warnings

    • Description: If set, log warnings in addition to errors.

    • Command line: --sql-error-log-warnings={0,1}

    • Scope: Global

    • Dynamic: Yes

    sql_error_log_with_db_and_thread_info

    • Description: If enabled, it prints the database name and the thread ID in the log in addition to already existing columns.

    • Command line: --sql-error-log-with-db-and-thread-info=value

    • Scope: Global

    • Dynamic: No

    This page is licensed: CC BY-SA / Gnu FDL

    System Variables Added in MariaDB 11.4

    This is a list of system variables that have been added in the MariaDB 11.4 series.

    Variable
    Added

    For system variables added since the previous long-term release, , see:

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    System Variables Added in MariaDB 10.4

    This is a list of system variables that have been added in the series. The list does not include variables that are not part of the default release.

    Variable
    Added

    For system variables that have been removed or deprecated, see .

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    Status Variables Added in MariaDB 10.3

    This is a list of that were added in the series.

    Variable
    Added

    innodb_log_checkpoint_now

    MariaDB 10.11.12

    innodb_log_file_mmap

    MariaDB 10.11.10

    innodb_log_spin_wait_delay

    MariaDB 10.11.8

    innodb_log_write_ahead_size

    MariaDB 10.11.9

    innodb_snapshot_isolation

    MariaDB 10.11.8

    log_slow_max_warnings

    MariaDB 10.11.6

    log_slow_min_examined_row_limit

    MariaDB 10.11.0

    log_slow_query

    MariaDB 10.11.0

    log_slow_query_file

    MariaDB 10.11.1

    log_slow_query_time

    MariaDB 10.11.0

    optimizer_join_limit_pref_ratio

    MariaDB 10.11.10

    optimizer_max_sel_args

    MariaDB 10.11.6

    replicate_rewrite_db

    MariaDB 10.11.0

    server_uid

    MariaDB 10.11.9

    system_versioning_insert_history

    MariaDB 10.11.0

    MariaDB 10.6
    System Variables Added in MariaDB 10.10
    System Variables Added in MariaDB 10.9
    System Variables Added in MariaDB 10.8
    Upgrading from MariaDB 10.6 to MariaDB 10.11
    analyze_max_length
    MariaDB 10.11.14
    innodb_alter_copy_bulk
    MariaDB 10.11.9
    innodb_buffer_pool_size_auto_min
    MariaDB 10.11.12
    innodb_buffer_pool_size_max
    MariaDB 10.11.12

    binlog_legacy_event_pos

    MariaDB 11.4.0

    binlog_space_limit

    MariaDB 11.4.0

    innodb_alter_copy_bulk

    MariaDB 11.4.3

    innodb_buffer_pool_size_auto_min

    MariaDB 11.4.6

    innodb_buffer_pool_size_max

    MariaDB 11.4.6

    innodb_log_checkpoint_now

    MariaDB 11.4.6

    innodb_log_file_mmap

    MariaDB 11.4.4

    innodb_log_spin_wait_delay

    MariaDB 11.4.2

    innodb_log_write_ahead_size

    MariaDB 11.4.3

    innodb_snapshot_isolation

    MariaDB 11.4.2

    max_binlog_total_size

    MariaDB 11.4.0

    optimizer_join_limit_pref_ratio

    MariaDB 11.4.4

    server_uid

    MariaDB 11.4.3

    slave_connections_needed_for_purge

    MariaDB 11.4.0

    MariaDB 10.11
    System Variables Added in MariaDB 11.3
    System Variables Added in MariaDB 11.2
    System Variables Added in MariaDB 11.1
    System Variables Added in MariaDB 11.0
    Status Variables Added in MariaDB 11.4
    analyze_max_length
    MariaDB 11.4.8
    binlog_gtid_index
    MariaDB 11.4.0
    binlog_gtid_index_page_size
    MariaDB 11.4.0
    binlog_gtid_index_span_min
    MariaDB 11.4.0
    ON - Enables the plugin. If the plugin cannot be initialized, then the server will still continue starting up, but the plugin will be disabled.
  • FORCE - Enables the plugin. If the plugin cannot be initialized, then the server will fail to start with an error.

  • FORCE_PLUS_PERMANENT - Enables the plugin. If the plugin cannot be initialized, then the server will fail to start with an error. In addition, the plugin cannot be uninstalled with UNINSTALL SONAME or UNINSTALL PLUGIN while the server is running.

  • See Plugin Overview: Configuring Plugin Activation at Server Startup for more information.

  • Command line: --sql-error-log=value

  • Data Type: enumerated

  • Default Value: ON

  • Valid Values: OFF, ON, FORCE, FORCE_PLUS_PERMANENT

  • Dynamic: No
  • Data Type: string

  • Default Value: sql_errors.log

  • Dynamic: Yes

  • Data Type: numeric

  • Default Value: 1

  • Data Type: boolean

  • Default Value: OFF

  • Data Type: numeric

  • Default Value: 9

  • Range: 1 to 999

  • Data Type: numeric

  • Default Value: 1000000

  • Range: 100 to 9223372036854775807

  • Data Type: boolean

  • Default Value: ON

  • Introduced:

  • Data Type: boolean

  • Default Value: OFF

  • Introduced: , , , ,

  • mysql.plugins
    data directory

    See Also

    • System variables added in MariaDB 10.3

    • Status variables added in MariaDB 10.4

    • Status variables added in MariaDB 10.2

    • Status variables added in MariaDB 10.1

    This page is licensed: CC BY-SA / Gnu FDL

    Acl_package_body_grants

    Acl_package_spec_grants

    Com_alter_sequence

    Com_create_package

    status variables

    UNUSED_BLOCKS

    number of currently unused blocks

    DIRTY_BLOCKS

    number of currently dirty blocks

    READ_REQUESTS

    number of read requests

    READS

    number of actual reads from files into buffers

    WRITE_REQUESTS

    number of write requests

    WRITES

    number of actual writes from buffers into files

    innodb_encrypt_temporary_ables

    innodb_instant_alter_column_allowed

    max_password_errors

    optimizer_trace

    optimizer_trace_max_mem_size

    tcp_nodelay

    tls_version

    Upgrading from MariaDB 10.3 to MariaDB 10.4
    Status Variables Added in MariaDB 10.4
    System Variables Added in MariaDB 10.5
    System Variables Added in MariaDB 10.3
    System Variables Added in MariaDB 10.2
    analyze_sample_percentage
    default_password_lifetime
    disconnect_on_expired_password
    gtid_cleanup_batch_size
    character_set_collations
    innodb_alter_copy_bulk
    innodb_log_file_mmap
    innodb_log_spin_wait_delay
    innodb_log_write_ahead_size
    innodb_snapshot_isolation
    optimizer_join_limit_pref_ratio
    server_uid
    innodb_buffer_pool_instances
    nnodb_buffer_pool_restore_at_startup
    innodb_change_buffering_debug
    innodb_corrupt_table_action
    innodb_flush_checkpoint_debug
    innodb_force_load_corrupted
    innodb_import_table_from_xtrabackup
    innodb_large_prefix
    innodb_purge_batch_size
    innodb_purge_threads
    innodb_recovery_update_relay_log
    innodb_rollback_segments
    innodb_use_global_flush_log_at_trx_commit
    innodb_use_native_aio
    skip_grant_tables
    slave_max_statement_time

    System Variables Added in MariaDB 10.3

    This is a list of that have been added in the series. The list does not include variables that are not part of the default release.

    Variable
    Added

    For system variables that have been removed or deprecated, see Upgrading from MariaDB 10.2 to MariaDB 10.3.

    See Also

    • Status Variables Added in MariaDB 10.3

    • System Variables Added in MariaDB 10.4

    • System Variables Added in MariaDB 10.2

    • System Variables Added in MariaDB 10.1

    This page is licensed: CC BY-SA / Gnu FDL

    alter_algorithm

    bind_address

    binlog_file_cache_size

    gtid_pos_auto_engines

    system variables

    Com_create_package_body
    Com_create_sequence
    Com_drop_package
    Com_drop_package_body
    Com_drop_sequence
    Com_show_create_package
    Com_show_create_package_body
    Com_show_package_status
    Com_show_package_body_status
    Feature_json
    Feature_system_versioning
    Handler_tmp_delete
    Innodb_buffer_pool_load_incomplete
    Memory_used_initial
    Rpl_semi_sync*
    Rpl_transactions_multi_engine
    Table_open_cache_active_instances
    Table_open_cache_hits
    Table_open_cache_misses
    Table_open_cache_overflows
    Transactions_gtid_foreign_engine
    Transactions_multi_engine

    System Variables Added in MariaDB 10.2

    This is a list of system variables that have been added in the series. The list does not include variables that are not part of the default release.

    Variable
    Added

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    Status Variables Added in MariaDB 10.5

    This is a list of that were added in the series.

    Variable
    Added

    System Variables Added in MariaDB 10.5

    This is a list of that have been added in the series. The list does not include variables that are not part of the default release.

    Variable
    Added

    System Variables Added in MariaDB 12.1

    This is a list of that have been added in the series.

    Variable
    Added

    See Also

    • System variables added in MariaDB 10.5

    • Status variables added in MariaDB 10.4

    • Status variables added in MariaDB 10.3

    This page is licensed: CC BY-SA / Gnu FDL

    Innodb_adaptive_hash_hash_searches

    Innodb_adaptive_hash_non_hash_searches

    Innodb_background_log_sync

    Innodb_buffer_pool_pages_made_not_young

    status variables

    For system variables that have been removed or deprecated, see Upgrading from MariaDB 10.4 to MariaDB 10.5.

    See Also

    • Status Variables Added in MariaDB 10.5

    • System Variables Added in MariaDB 10.4

    • System Variables Added in MariaDB 10.3

    This page is licensed: CC BY-SA / Gnu FDL

    binlog_row_metadata

    innodb_instant_alter_column_allowed

    innodb_lru_flush_size

    innodb_max_purge_lag_wait

    system variables

    MariaDB 12.1.0

    caching_sha2_password_public_key_path

    MariaDB 12.1.0

    MariaDB 12.1.0

    MariaDB 12.1.0

    MariaDB 12.1.0

    See Also

    • System Variables Added in MariaDB 12.0

    This page is licensed: CC BY-SA / Gnu FDL

    analyze_max_length

    MariaDB 12.1.1

    aria_pagecache_segments

    MariaDB 12.1.0

    caching_sha2_password_auto_generate_rsa_keys

    MariaDB 12.1.0

    caching_sha2_password_digest_rounds

    MariaDB 12.1.0

    system variables
    MariaDB 12.1

    caching_sha2_password_private_key_path

    innodb_default_row_format

    innodb_encrypt_temporary_ables

    innodb_fill_factor

    innodb_flush_sync

    innodb_lock_schedule_algorithm

    innodb_log_checksums

    innodb_log_optimize_ddl

    innodb_log_write_ahead_size

    innodb_max_undo_log_size

    innodb_page_cleaners

    innodb_purge_rseg_truncate_frequency

    innodb_safe_truncate

    innodb_stats_include_delete_marked

    innodb_temp_data_file_path

    max_recursive_iterations

    read_binlog_speed_limit

    session_track_schema

    session_track_state_change

    session_track_system_variables

    session_track_transaction_info

    slave_parallel_workers

    table_open_cache_instances

    thread_pool_prio_kickup_timer

    thread_pool_priority

    tmp_disk_table_size

    tmp_memory_table_size

    Status Variables Added in MariaDB 10.2
    System Variables Added in MariaDB 10.3
    System Variables Added in MariaDB 10.1
    System Variables Added in MariaDB 10.0
    aria_recover_options
    eq_range_index_dive_limit
    innodb_adaptive_hash_index_parts
    innodb_deadlock_detect
    column_compression_threshold
    column_compression_zlib_level
    column_compression_zlib_strategy
    column_compression_zlib_wrap
    idle_readonly_transaction_timeout
    idle_transaction_timeout
    idle_write_transaction_timeout
    in_predicate_conversion_threshold
    innodb_encrypt_temporary_ables
    innodb_instant_alter_column_allowed
    log_disabled_statements
    log_slow_disabled_statements
    rpl_semi_sync_*
    secure_timestamp
    slave_transaction_retry_errors
    slave_transaction_retry_interval
    system_versioning_alter_history
    system_versioning_asof
    system_versioning_innodb_algorithm_simple
    tcp_keepalive_interval
    tcp_keepalive_probes
    tcp_keepalive_time
    version_source_revision

    Status Variables Added in MariaDB 10.0

    This is a list of status variables that were added in the series.

    The list excludes status related to the following storage engines included in :

    • Mroonga Status Variables

    • Spider Status Variables

    Variable
    Added

    See also

    This page is licensed: CC BY-SA / Gnu FDL

    System Variables Added in MariaDB 11.0

    This is a list of that have been added in the series.

    Variable
    Added

    Binlog_group_commit_trigger_count

    Binlog_group_commit_trigger_timeout

    Binlog_group_commit_trigger_lock_wait

    Com_create_role

    Com_drop_role

    Com_get_diagnostics

    Com_grant_role

    System variables added in MariaDB 10.0
    Status variables added in MariaDB 10.1

    For system variables that have been removed or deprecated, see Upgrading from MariaDB 10.11 to MariaDB 11.0.

    See Also

    • Status Variables Added in MariaDB 11.0

    • System Variables Added in MariaDB 10.11

    This page is licensed: CC BY-SA / Gnu FDL

    innodb_data_file_buffering

    innodb_data_file_write_through

    innodb_log_file_write_through

    log_slow_max_warnings

    system variables

    Innodb_buffer_pool_pages_made_young
    Innodb_buffer_pool_pages_old
    Innodb_buffer_pool_pages_LRU_flushed
    Innodb_buffered_aio_submitted
    Innodb_checkpoint_age
    Innodb_checkpoint_max_age
    Innodb_deadlocks
    Innodb_ibuf_discarded_delete_marks
    Innodb_ibuf_discarded_deletes
    Innodb_ibuf_discarded_inserts
    Innodb_ibuf_free_list
    Innodb_ibuf_merged_delete_marks
    Innodb_ibuf_merged_deletes
    Innodb_ibuf_merged_inserts
    Innodb_ibuf_merges
    Innodb_ibuf_segment_size
    Innodb_ibuf_size
    Innodb_lsn_current
    Innodb_lsn_flushed
    Innodb_lsn_last_checkpoint
    Innodb_master_thread_active_loops
    Innodb_master_thread_idle_loops
    Innodb_max_trx_id
    Innodb_mem_adaptive_hash
    Innodb_mem_dictionary
    performance_schema_index_stat_lost
    performance_schema_memory_classes_lost
    performance_schema_metadata_lock_lost
    performance_schema_nested_statement_lost
    performance_schema_prepared_statements_lost
    performance_schema_program_lost
    performance_schema_table_lock_stat_lost
    S3_pagecache_blocks_not_flushed
    S3_pagecache_blocks_unused
    S3_pagecache_blocks_used
    S3_pagecache_reads
    optimizer_max_sel_arg_weight
    performance_schema_events_transactions_history_long_size
    performance_schema_events_transactions_history_size
    performance_schema_max_index_stat
    performance_schema_max_memory_classes
    performance_schema_max_metadata_locks
    performance_schema_max_prepared_statement_instances
    performance_schema_max_program_instances
    performance_schema_max_sql_text_length
    performance_schema_max_statement_stack
    performance_schema_max_table_lock_stat
    require_secure_transport
    s3_access_key
    s3_block_size
    s3_bucket
    s3_debug
    s3_host_name
    s3_pagecache_age_threshold
    s3_pagecache_buffer_size
    s3_pagecache_division_limit
    s3_pagecache_file_hash_size
    s3_protocol_version
    s3_region
    s3_secret_key
    server_uid
    sql_if_exists
    thread_pool_dedicated_listener
    thread_pool_exact_stats
    metadata_locks_instances
    optimizer_record_context

    System Variables Added in MariaDB 10.1

    This is a list of system variables that were added in the series.

    The list excludes the following variables, related to storage engines and plugins included in :

    • Spider System Variables

    Variable
    Added

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    Status Variables Added in MariaDB 10.1

    This is a list of that were added in the series.

    The list excludes status related to the following storage engines included in :

    Variable
    Added

    Optimizing table_open_cache

    can be a useful variable to adjust to improve performance.

    Each concurrent session accessing the same table does so independently. This improves performance, although it comes at a cost of extra memory usage.

    table_open_cache indicates the maximum number of tables the server can keep open in any one table cache instance. Ideally, you'd like this set so as to re-open a table as infrequently as possible.

    However, note that this is not a hard limit. When the server needs to open a table, it evicts the least recently used closed table from the cache, and adds the new table. If all tables are used, the server adds the new table and does not evict any table. As soon as a table is not used anymore, it will be evicted from the list even if no table needs to be open, until the number of open tables will be equal to table_open_cache

    table_open_cache has defaulted to 2000 since . Before that, the default was 400.

    You can view the current setting in the my.cnf file, or by running:

    To evaluate whether you could do with a higher table_open_cache, look at the number of opened tables, in conjunction with the server uptime ( and status variables):

    See Also

    • System variables added in MariaDB 10.1

    • Status variables added in MariaDB 10.2

    • Status variables added in MariaDB 10.0

    This page is licensed: CC BY-SA / Gnu FDL

    Acl_column_grants

    Acl_database_grants

    status variables

    If the number of opened tables is increasing rapidly, you should look at increasing the table_open_cache value. Try to find a value that sees a slow, or possibly even no, increase in the number of opened tables.

    Make sure that your operating system can cope with the number of open file descriptors required by the table_open_cache setting. If table_open_cache is set too high, MariaDB may start to refuse connections as the operating system runs out of file descriptors. Also note that the MyISAM (and Aria?) storage engines need two file descriptors per open table.

    It's possible that the open_table_cache can even be reduced.

    If your number of open_tables has not yet reached the table_open_cache_size, and the server has been up a while, you can look at decreasing the value.

    The open table cache can be emptied with FLUSH TABLES or with the flush-tables or refresh mariadb-admin commands.

    Automatic Creation of New Table Open Cache Instances

    MariaDB Server can create multiple instances of the table open cache. It initially creates just a single instance. However, whenever it detects contention on the existing instances, it will automatically create a new instance. When the number of instances has been increased due to contention, it does not decrease again.

    When MariaDB Server creates a new instance, it prints a message like the following to the error log:

    The maximum number of instances is defined by the table_open_cache_instances system variable. The default value of the table_open_cache_instances system variable is 8, which is expected to handle up to 100 CPU cores. If your system is larger than this, then you may benefit from increasing the value of this system variable.

    Depending on the ratio of actual available file handles, and table_open_cache size, the max. instance count may be auto adjusted to a lower value on server startup.

    The implementation and behavior of this feature is different than the same feature in MySQL 5.6.

    This page is licensed: CC BY-SA / Gnu FDL

    table_open_cache
    Opened_tables
    Uptime

    default_tmp_storage_engine

    encrypt_binlog

    encrypt_tmp_disk_tables

    encrypt_tmp_files

    enforce_storage_engine

    explicit_defaults_for_timestamp

    innodb_background_scrub_data_check_interval

    innodb_background_scrub_data_compressed

    innodb_background_scrub_data_interval

    innodb_background_scrub_data_uncompressed

    innodb_buf_dump_status_frequency

    innodb_compression_algorithm

    innodb_default_encryption_key_id

    innodb_default_row_format

    innodb_defragment

    innodb_defragment_fill_factor

    innodb_defragment_fill_factor_n_recs

    innodb_defragment_frequency

    innodb_defragment_n_pages

    innodb_defragment_stats_accuracy

    innodb_disallow_writes

    innodb_encrypt_log

    innodb_encrypt_tables

    innodb_encryption_rotate_key_age

    innodb_encryption_rotation_iops

    innodb_encryption_threads

    innodb_fatal_semaphore_wait_threshold

    innodb_force_primary_key

    innodb_idle_flush_pct

    innodb_immediate_scrub_data_uncompressed

    innodb_instrument_semaphores

    innodb_mtflush_threads

    innodb_prefix_index_cluster_optimization

    innodb_scrub_log

    innodb_scrub_log_speed

    innodb_use_mtflush

    innodb_use_trim

    log_bin_basename

    log_bin_index

    log_tc_size

    max_digest_length

    max_session_mem_used

    max_statement_time

    mysql56_temporal_format

    relay_log_basename

    strict_password_validation

    skip_parallel_replication

    slave_parallel_mode

    slave_run_triggers_for_rbr

    version_ssl_library

    Status Variables Added in MariaDB 10.1
    System Variables Added in MariaDB 10.2
    System Variables Added in MariaDB 10.0
    aria_encrypt_tables
    Com_revoke_grant
    Com_show_explain
    Com_start_all_slaves
    Com_start_slave
    Com_stop_all_slaves
    Com_stop_slave
    Connection_errors_accept
    Connection_errors_internal
    Connection_errors_max_connections
    Connection_errors_peer_address
    Connection_errors_select
    Connection_errors_tcpwrap
    Delete_scan
    Feature_delay_key_write
    Handler_external_lock
    Handler_read_retry
    Innodb_buffer_pool_dump_status
    Innodb_buffer_pool_load_status
    Innodb_master_thread_active_loops
    Innodb_master_thread_idle_loops
    Innodb_num_open_files
    Innodb_system_rows_deleted
    Innodb_system_rows_inserted
    Innodb_system_rows_read
    Innodb_system_rows_updated
    Memory_used
    Oqgraph_boost_version
    Performance_schema_accounts_lost
    Performance_schema_hosts_lost
    Performance_schema_socket_classes_lost
    Performance_schema_socket_instances_lost
    Performance_schema_stage_classes_lost
    Performance_schema_statement_classes_lost
    Slave_skipped_errors
    Sort_priority_queue_sorts
    Update_scan
    innodb_log_spin_wait_delay
    innodb_snapshot_isolation
    optimizer_max_sel_args
    SELECT @@table_open_cache;
    +--------------------+
    | @@table_open_cache |
    +--------------------+
    |                400 |
    +--------------------+
    SHOW global status LIKE 'opened_tables';
    +---------------+--------+
    | Variable_name | Value  |
    +---------------+--------+
    | Opened_tables | 354858 |
    +---------------+--------+
    SHOW global status LIKE 'open_tables';
    +---------------+-------+
    | Variable_name | Value |
    +---------------+-------+
    | Open_tables   | 354   |
    +---------------+-------+
    [Note] Detected table cache mutex contention at instance 1: 25% waits. Additional 
      table cache instance activated. Number of instances after activation: 2.
    Acl_function_grants
    Acl_procedure_grants
    Acl_proxy_users
    Acl_role_grants
    Acl_roles
    Acl_table_grants
    Acl_users
    Master_gtid_wait_count
    Com_compound_sql
    Com_create_temporary_table
    Com_create_drop_table
    Com_show_generic
    Innodb_defragment_compression_failures
    Innodb_defragment_count
    Innodb_defragment_failures
    Innodb_encryption_rotation_estimated_iops
    Innodb_encryption_rotation_pages_flushed
    Innodb_encryption_rotation_pages_modified
    Innodb_encryption_rotation_pages_read_from_cache
    Innodb_encryption_rotation_pages_read_from_disk
    Innodb_have_bzip2
    Innodb_have_lz4
    Innodb_have_lzma
    Innodb_have_lzo
    Innodb_have_snappy
    Innodb_num_index_pages_written
    Innodb_num_non_index_pages_written
    Innodb_onlineddl_pct_progress
    Innodb_onlineddl_rowlog_pct_used
    Innodb_onlineddl_rowlog_rows
    Innodb_num_page_compressed_trim_op
    Innodb_num_page_compressed_trim_op_saved
    Innodb_num_pages_page_compressed
    Innodb_num_pages_page_compression_error
    Innodb_num_pages_page_decompressed
    Innodb_num_pages_page_decrypted
    Innodb_num_pages_page_encrypted
    Innodb_page_compression_saved
    Innodb_page_compression_trim_sect512
    Innodb_page_compression_trim_sect1024
    Innodb_page_compression_trim_sect2048
    Innodb_page_compression_trim_sect4096
    Innodb_page_compression_trim_sect8192
    Innodb_page_compression_trim_sect16384
    Innodb_page_compression_trim_sect32768
    Innodb_secondary_index_triggered_cluster_reads
    Innodb_secondary_index_triggered_cluster_reads_avoided
    Master_gtid_wait_count
    Master_gtid_wait_time
    Master_gtid_wait_timeouts
    Max_statement_time_exceeded
    wsrep_mode
    wsrep_applier_retry_count
    wsrep_status_file
    wsrep_applier_thread_count
    wsrep_rollbacker_thread_count
    wsrep_allowlist
    wsrep_certification_rules
    wsrep_trx_fragment_size
    wsrep_trx_fragment_unit
    wsrep_certification_rules
    wsrep_reject_queries
    wsrep_certification_rules
    Galera Status Variables
    Galera Status Variables
    wsrep_certification_rules
    wsrep_dirty_reads

    SSL/TLS Status Variables

    The status variables listed on this page relate to encrypting data during transfer with the Transport Layer Security (TLS) protocol. Often, the term Secure Socket Layer (SSL) is used interchangeably with TLS, although strictly speaking, the SSL protocol is a predecessor to TLS and is no longer considered secure.

    For compatibility reasons, the TLS status variables in MariaDB still use the Ssl_ prefix, but MariaDB only supports its more secure successors. For more information on SSL/TLS in MariaDB, see Secure Connections Overview.

    Some of these status values are not under the control of the server, but are reporting back settings of the underlying SSL library used by the server.

    Variables

    Ssl_accept_renegotiates

    • Description: Number of negotiations needed to establish the TLS connection. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_accepts

    • Description: Number of accepted TLS handshakes. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_callback_cache_hits

    • Description: Number of sessions retrieved from the session cache. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_cipher

    • Description: The TLS cipher currently in use.

    • Scope: Global, Session

    • Data Type: string

    Ssl_cipher_list

    • Description: List of the available TLS ciphers. This is not necessarily the list of ciphers the MariaDB server can actually accept, but rather the list of ciphers supported by the underlying SSL library in general. E.g. some of these may not be compatible with the servers SSL certificate and so can't be used to connect to that server.

    • Scope: Global, Session

    • Data Type: string

    Ssl_client_connects

    • Description: Number of TLS handshakes started in client mode. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_connect_renegotiates

    • Description: Number of negotiations needed to establish the connection to a TLS-enabled master. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_ctx_verify_depth

    • Description: Number of tested TLS certificates in the chain. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_ctx_verify_mode

    • Description: Mode used for TLS context verification.The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_default_timeout

    • Description: Default timeout for TLS, in seconds.

    • Scope: Global, Session

    • Data Type: numeric

    Ssl_finished_accepts

    • Description: Number of successful TLS sessions in server mode. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_finished_connects

    • Description: Number of successful TLS sessions in client mode. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_server_not_after

    • Description: Last valid date for the server TLS certificate.

    • Scope: Global, Session

    • Data Type: numeric

    • Introduced:

    Ssl_server_not_before

    • Description: First valid date for the server TLS certificate.

    • Scope: Global, Session

    • Data Type: numeric

    • Introduced:

    Ssl_session_cache_hits

    • Description: Number of TLS sessions found in the session cache. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_session_cache_misses

    • Description: Number of TLS sessions not found in the session cache. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_session_cache_mode

    • Description: Mode used for TLS caching by the server.

    • Scope: Global

    • Data Type: string

    Ssl_session_cache_overflows

    • Description: Number of sessions removed from the session cache because it was full. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_session_cache_size

    • Description: Size of the session cache. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_session_cache_timeouts

    • Description: Number of sessions which have timed out. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_sessions_reused

    • Description: Number of sessions reused. The global value can be flushed by .

    • Scope: Global, Session

    • Data Type: numeric

    Ssl_used_session_cache_entries

    • Description: Current number of sessions in the session cache. The global value can be flushed by .

    • Scope: Global

    • Data Type: numeric

    Ssl_verify_depth

    • Description: TLS verification depth. How many levels within the certificate signing chain the verification should cover. This is not set by the server itself but by the OpenSSL configuration, and will typically show a very large number like 18446744073709551615, basically meaning "always verify the full signing chain up to the root CA"

    • Scope: Global, Session

    • Data Type: numeric

    Ssl_verify_mode

    • Description: TLS verification mode.

    The OpenSSL verification mode flags in effect on the server side.

    The value so far is always 5 when OpenSSL encryption is in effect, and 0 when not using encryption, or when the server is compiled against WolfSSL.

    The value 5 is a combination of the SSL_VERIFY_PEER and SSL_VERIFY_CLIENT_ONCE flags, meaning that the client may send a certificate of its own connect, but will not be asked to send one again later for the duration of the encrypted connection.

    The SSL_VERIFY_FAIL_IF_NO_PEER_CERT is not used at this point to enforce that the client sends a certificate if the database user was created with REQUIRE X509, REQUIRE ISSUER or REQUIRE SUBJECT, whether a client certificate was indeed sent, and whether it fits additional REQUIRE conditions, is checked by the server itself at a later state.

    See also for a description of the OpenSSL verify mode flags.

    • Scope: Global, Session

    • Data Type: numeric

    Ssl_version

    • Description: TLS version in use by the current session, possible values are TLSv1.0, TLSv1.1, TLSv1.2 and TLSv1.3

    • Scope: Global, Session

    • Data Type: string

    See Also

    • - complete list of status variables.

    This page is licensed: CC BY-SA / Gnu FDL

    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    FLUSH STATUS
    #notes
    Server Status Variables
    Full list of MariaDB options, system and status variables

    System Variables Added in MariaDB 10.0

    This is a list of system variables that were added in the series.

    The list excludes the following variables, related to storage engines and plugins included in :

    • Connect System Variables

    • Galera System Variables

    • Mroonga System Variables

    Variable
    Added

    See Also

    This page is licensed: CC BY-SA / Gnu FDL

    aria_pagecache_file_hash_size

    binlog_commit_wait_count

    binlog_commit_wait_usec

    default_master_connection

    default_regex_flags

    gtid_binlog_pos

    Query Response Time Plugin Variables
    Spider System Variables
    Status Variables Added in MariaDB 10.0
    System Variables Added in MariaDB 10.1
    Upgrading from MariaDB 5.5 to MariaDB 10.0

    gtid_binlog_state
    gtid_current_pos
    gtid_domain_id
    gtid_ignore_duplicates
    gtid_seq_no
    gtid_slave_pos
    gtid_strict_mode
    histogram_size
    histogram_type
    innodb_adaptive_flushing_lwm
    innodb_adaptive_max_sleep_delay
    innodb_api_bk_commit_interval
    innodb_api_disable_rowlock
    innodb_api_enable_binlog
    innodb_api_enable_mdl
    innodb_api_trx_level
    innodb_buffer_pool_dump_at_shutdown
    innodb_buffer_pool_dump_now
    innodb_buffer_pool_filename
    innodb_buffer_pool_load_abort
    innodb_buffer_pool_load_at_startup
    innodb_buffer_pool_load_now
    innodb_change_buffer_max_size
    innodb_checksum_algorithm
    innodb_cleaner_lsn_age_factor
    innodb_cmp_per_index_enabled
    innodb_compression_failure_threshold_pct
    innodb_compression_level
    innodb_compression_pad_pct_max
    innodb_disable_sort_file_cache
    innodb_empty_free_list_algorithm
    innodb_flush_neighbors
    innodb_foreground_preflush
    innodb_ft_aux_table
    innodb_ft_cache_size
    innodb_ft_enable_diag_print
    innodb_ft_enable_stopword
    innodb_ft_max_token_size
    innodb_ft_min_token_size
    innodb_ft_num_word_optimize
    innodb_ft_result_cache_limit
    innodb_ft_server_stopword_table
    innodb_ft_sort_pll_degree
    innodb_ft_total_cache_size
    innodb_ft_user_stopword_table
    innodb_io_capacity_max
    innodb_log_arch_dir
    innodb_log_arch_expire_sec
    innodb_log_archive
    innodb_log_compressed_pages
    innodb_max_dirty_pages_pct_lwm
    innodb_max_purge_lag_delay
    innodb_monitor_disable
    innodb_monitor_enable
    innodb_monitor_reset
    innodb_monitor_reset_all
    innodb_online_alter_log_max_size
    innodb_optimize_fulltext_only
    innodb_random_read_ahead
    innodb_read_only
    innodb_recovery_stats
    innodb_sched_priority_cleaner
    innodb_simulate_comp_failures
    innodb_sort_buffer_size
    innodb_stats_auto_recalc
    innodb_stats_modified_counter
    innodb_stats_persistent
    innodb_stats_persistent_sample_pages
    innodb_stats_traditional
    innodb_stats_transient_sample_pages
    innodb_status_output
    innodb_status_output_locks
    innodb_sync_array_size
    innodb_undo_directory
    innodb_undo_logs
    innodb_undo_tablespaces
    key_cache_file_hash_size
    last_gtid
    oqgraph_allow_create_integer_latch
    performance_schema_accounts_size
    performance_schema_digests_size
    performance_schema_events_stages_history_long_size
    performance_schema_events_stages_history_size
    performance_schema_events_statements_history_long_size
    performance_schema_events_statements_history_size
    performance_schema_hosts_size
    performance_schema_max_digest_length
    performance_schema_max_socket_classes
    performance_schema_max_socket_instances
    performance_schema_max_stage_classes
    performance_schema_max_statement_classes
    performance_schema_session_connect_attrs_size
    performance_schema_setup_actors_size
    performance_schema_setup_objects_size
    performance_schema_users_size
    slave_ddl_exec_mode
    slave_domain_parallel_threads
    slave_parallel_max_queued
    slave_parallel_threads
    ssl_crl
    ssl_crlpath
    use_stat_tables
    version_malloc_library
    hash join
    Segmented Key Cache Performance
    Segmented Key Cache Performance
    Segmented Key Cache Performance

    InnoDB Server Status Variables

    See Server Status Variables for a complete list of status variables that can be viewed with SHOW STATUS.

    Much of the InnoDB information here can also be seen with a SHOW ENGINE INNODB STATUS statement.

    See also the Full list of MariaDB options, system and status variables.

    Innodb_adaptive_hash_cells

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    • Removed:

    Innodb_adaptive_hash_hash_searches

    • Description: Hash searches as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • Before the variable was introduced in , use the adaptive_hash_searches counter in the table instead.

    • Scope: Global

    Innodb_adaptive_hash_heap_buffers

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_adaptive_hash_non_hash_searches

    • Description: Non-hash searches as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output. From , not updated if is not enabled (the default).

      • In , , , and , this status variable is not present. Use the adaptive_hash_searches_btree counter in the table instead.

      • From , this status variable is present.

    Innodb_async_reads_pending

    • Description: Number of async read I/O operations currently in progress (from SUBMITTED to COMPLETED). See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_reads_queue_size

    • Description: Current size of the async I/O read queue. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_reads_tasks_running

    • Description: Number of async read I/O operations currently in the EXECUTING_COMPLETION_TASK state. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_reads_total_count

    • Description: Total number of async read completion tasks that have finished execution. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_reads_total_enqueues

    • Description: Total number of async read operations that were queued. Includes those still waiting and making up . See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_reads_wait_slot_sec

    • Description: Total wait time for a free I/O slot (see Waiting for IO Slots). See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_writes_pending

    • Description: Number of async write I/O operations currently in progress (from SUBMITTED to COMPLETED). See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_writes_queue_size

    • Description: Current size of the async I/O write queue. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_writes_tasks_running

    • Description: Number of async write I/O operations currently in the EXECUTING_COMPLETION_TASK state. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_writes_total_count

    • Description: Total number of async write completion tasks that have finished execution. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_writes_total_enqueues

    • Description: Total number of async write operations that were queued. Includes those still waiting and making up . See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_async_writes_wait_slot_sec

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_available_undo_logs

    • Description: Total number available InnoDB . Differs from the system variable, which specifies the number of active undo logs.

    • Scope: Global

    • Data Type: numeric

    Innodb_background_log_sync

    • Description: As shown in the BACKGROUND THREAD section of the output.

      • In , this status variable is present in XtraDB.

      • In , , , and , this status variable is not present.

      • In

    Innodb_buffer_pool_bytes_data

    • Description: Number of bytes contained in the , both dirty (modified) and clean (unmodified). See also , which can contain pages of different sizes in the case of compression.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_bytes_dirty

    • Description: Number of dirty (modified) bytes contained in the . See also , which can contain pages of different sizes in the case of compression.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_dump_status

    • Description: A text description of the progress or final status of the last Innodb buffer pool dump.

    • Scope: Global

    • Data Type: string

    • Introduced:

    Innodb_buffer_pool_load_incomplete

    • Description: Whether or not the loaded buffer pool is incomplete, for example after a shutdown or abort during innodb buffer pool load from file caused an incomplete save.

    • Scope: Global

    • Data Type: boolean

    • Introduced:

    Innodb_buffer_pool_load_status

    • Description: A text description of the progress or final status of the last Innodb buffer pool load.

    • Scope: Global

    • Data Type: string

    • Introduced:

    Innodb_buffer_pool_pages_data

    • Description: Number of pages which contain data, both dirty (modified) and clean (unmodified). See also .

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_pages_dirty

    • Description: Number of pages which contain dirty (modified) data. See also .

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_pages_flushed

    • Description: Number of pages which have been flushed.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_pages_LRU_flushed

    • Description: Flush list as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_buffer_pool_pages_LRU_freed

    • Description: Monitor the number of pages that were freed by a buffer pool LRU eviction scan, without flushing.

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_buffer_pool_pages_free

    • Description: Number of free pages.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_pages_made_not_young

    • Description: Pages not young as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_buffer_pool_pages_made_young

    • Description: Pages made young as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_buffer_pool_pages_misc

    • Description: Number of pages set aside for internal use.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_pages_old

    • Description: Old database page, as shown in the BUFFER POOL AND MEMORY section of the output.

      • In and , this status variable is present for XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_buffer_pool_pages_total

    • Description: Total number of pages.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_read_ahead

    • Description: Number of pages read into the by the read-ahead background thread.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_read_ahead_evicted

    • Description: Number of pages read into the by the read-ahead background thread that were evicted without having been accessed by queries.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_read_ahead_rnd

    • Description: Number of random read-aheads.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_read_requests

    • Description: Number of requests to read from the .

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_reads

    • Description: Number of reads that could not be satisfied by the and had to be read from disk.

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_resize_status

    • Description: Progress of the dynamic resizing operation. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_buffer_pool_wait_free

    • Description: Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at increasing .

    • Scope: Global

    • Data Type: numeric

    Innodb_buffer_pool_write_requests

    • Description: Number of requests to write to the .

    • Scope: Global

    • Data Type: numeric

    Innodb_buffered_aio_submitted

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_bulk_operations

    • Description: Number of bulk insert operations to InnoDB tables.

    • Scope: Global

    • Data Type: numeric

    • Introduced: , , , ,

    Innodb_checkpoint_age

    • Description: The amount of data written to the InnoDB redo log since the last checkpoint, as shown in the LOG section of the output. (This is equivalent to subtracting "Last checkpoint at" from "Log sequence number", cf the ). Despite the name ("age"), the value is not a duration, but really an amount of data (in bytes) !

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

    Innodb_checkpoint_max_age

    • Description: Max checkpoint age, as shown in the LOG section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_checkpoint_target_age

    • Description: Checkpoint age target, as shown in the LOG section of the output. XtraDB only. Removed in and replaced with MySQL 5.6's flushing implementation.

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_current_row_locks

    • Description: Number of current row locks on InnoDB tables as shown in the TRANSACTIONS section of the output. Renamed from in XtraDB 5.5.8-20.1.

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_data_fsyncs

    • Description: Number of InnoDB fsync (sync-to-disk) calls. fsync call frequency can be influenced by the configuration option.

    • Scope: Global

    • Data Type: numeric

    Innodb_data_pending_fsyncs

    • Description: Number of pending InnoDB fsync (sync-to-disk) calls. fsync call frequency can be influenced by the configuration option.

    • Scope: Global

    • Data Type: numeric

    Innodb_data_pending_reads

    • Description: Number of pending InnoDB reads.

    • Scope: Global

    • Data Type: numeric

    Innodb_data_pending_writes

    • Description: Number of pending InnoDB writes.

    • Scope: Global

    • Data Type: numeric

    Innodb_data_read

    • Description: Number of InnoDB bytes read since server startup (not to be confused with ).

    • Scope: Global

    • Data Type: numeric

    Innodb_data_reads

    • Description: Number of InnoDB read operations (not to be confused with ).

    • Scope: Global

    • Data Type: numeric

    Innodb_data_writes

    • Description: Number of InnoDB write operations.

    • Scope: Global

    • Data Type: numeric

    Innodb_data_written

    • Description: Number of InnoDB bytes written since server startup. From , no longer includes writes to the redo log file ib_logfile0, which continue to be counted by . An error in counting was introduced in until , , , , and () in which writes via the doublewrite buffer started to be counted incorrectly, without multiplying them by innodb_page_size. A workaround for the error could be the following formulae: real_data_written = Innodb_data_written + (innodb_page_size - 1) * Innodb_dblwr_pages_writteninnodb_written = real_data_written + Innodb_os_log_written

    • Scope: Global

    • Data Type:

    Innodb_dblwr_pages_written

    • Description: Number of pages written to the .

    • Scope: Global

    • Data Type: numeric

    Innodb_dblwr_writes

    • Description: Number of writes to the .

    • Scope: Global

    • Data Type: numeric

    Innodb_deadlocks

    • Description: Total number of InnoDB deadlocks. Deadlocks occur when at least two transactions are waiting for the other to finish, creating a circular dependency. InnoDB usually detects these quickly, returning an error.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

    Innodb_defragment_compression_failures

    • Description: Number of defragment re-compression failures. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_defragment_count

    • Description: Number of defragment operations. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_defragment_failures

    • Description: Number of defragment failures. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_dict_tables

    • Description: Number of entries in the XtraDB data dictionary cache. This Percona XtraDB variable was removed in MariaDB 10/XtraDB 5.6 as it was replaced with MySQL 5.6's implementation.

    • Scope: Global

    • Data Type: numeric

    • Introduced: XtraDB 5.0.77-b13

    Innodb_encryption_n_merge_blocks_decrypted

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced: , ,

    Innodb_encryption_n_merge_blocks_encrypted

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced: , ,

    Innodb_encryption_n_rowlog_blocks_decrypted

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced: , ,

    Innodb_encryption_n_rowlog_blocks_encrypted

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced: , ,

    Innodb_encryption_n_temp_blocks_decrypted

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced: , ,

    Innodb_encryption_n_temp_blocks_encrypted

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced: , ,

    Innodb_encryption_num_key_requests

    • Description: Was not present in .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_encryption_rotation_estimated_iops

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_encryption_rotation_pages_flushed

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_encryption_rotation_pages_modified

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_encryption_rotation_pages_read_from_cache

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_encryption_rotation_pages_read_from_disk

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_have_atomic_builtins

    • Description: Whether the server has been built with atomic instructions, provided by the CPU ensuring that critical low-level operations can't be interrupted. XtraDB only.

    • Scope: Global

    • Data Type: boolean

    Innodb_have_bzip2

    • Description: Whether the server has the bzip2 compression method available. See .

    • Scope: Global

    • Data Type: boolean

    • Introduced:

    Innodb_have_lz4

    • Description: Whether the server has the lz4 compression method available. See .

    • Scope: Global

    • Data Type: boolean

    • Introduced:

    Innodb_have_lzma

    • Description: Whether the server has the lzma compression method available. See .

    • Scope: Global

    • Data Type: boolean

    • Introduced:

    Innodb_have_lzo

    • Description: Whether the server has the lzo compression method available. See .

    • Scope: Global

    • Data Type: boolean

    • Introduced:

    Innodb_have_punch_hole

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_have_snappy

    • Description: Whether the server has the snappy compression method available. See .

    • Scope: Global

    • Data Type: boolean

    • Introduced:

    Innodb_history_list_length

    • Description: History list length as shown in the TRANSACTIONS section of the output. XtraDB only until introduced in .

    • Scope: Global

    • Data Type: numeric

    • Introduced: (XtraDB-only),

    Innodb_ibuf_discarded_delete_marks

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_discarded_deletes

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_discarded_inserts

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_free_list

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_merged_delete_marks

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_merged_deletes

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_merged_inserts

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_merges

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_segment_size

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_ibuf_size

    • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_instant_alter_column

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_log_waits

    • Description: Number of times InnoDB was forced to wait for log writes to be flushed due to the log buffer being too small.

    • Scope: Global

    • Data Type: numeric

    Innodb_log_write_requests

    • Description: Number of requests to write to the InnoDB redo log.

    • Scope: Global

    • Data Type: numeric

    Innodb_log_writes

    • Description: Number of writes to the InnoDB redo log.

    • Scope: Global

    • Data Type: numeric

    Innodb_lsn_current

    • Description: Log sequence number as shown in the LOG section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_lsn_flushed

    • Description: Flushed up to log sequence number as shown in the LOG section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_lsn_last_checkpoint

    • Description: Log sequence number last checkpoint as shown in the LOG section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_master_thread_1_second_loops

    • Description: As shown in the BACKGROUND THREAD section of the output.

      • In , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_master_thread_10_second_loops

    • Description: As shown in the BACKGROUND THREAD section of the output.

      • In , this status variable is present in XtraDB.

      • In and later, this status variable is not present

    • Scope: Global

    Innodb_master_thread_active_loops

    • Description: As shown in the BACKGROUND THREAD section of the output.

      • In , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In , this status variable was reintroduced.

    Innodb_master_thread_background_loops

    • Description: As shown in the BACKGROUND THREAD section of the output.

      • In , this status variable is present in XtraDB.

      • In and later, this status variable is not present

    • Scope: Global

    Innodb_master_thread_idle_loops

    • Description: As shown in the BACKGROUND THREAD section of the output.

      • In , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In , this status variable was reintroduced.

    Innodb_master_thread_main_flush_loops

    • Description: As shown in the BACKGROUND THREAD section of the output.

      • In , this status variable is present in XtraDB.

      • In and later, this status variable is not present

    • Scope: Global

    Innodb_master_thread_sleeps

    • Description: As shown in the BACKGROUND THREAD section of the output. XtraDB only.

      • In , this status variable is present in XtraDB.

      • In , , , and , this status variable is not present. Use the innodb_master_thread_sleeps counter in the table instead.

    Innodb_max_trx_id

    • Description: As shown in the TRANSACTIONS section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In , this status variable was reintroduced.

    Innodb_mem_adaptive_hash

    • Description: As shown in the BUFFER POOL AND MEMORY section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_mem_dictionary

    • Description: As shown in the BUFFER POOL AND MEMORY section of the output.

      • In and , this status variable is present in XtraDB.

      • In , , and , this status variable is not present.

      • In

    Innodb_mem_total

    • Description: As shown in the BUFFER POOL AND MEMORY section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_mutex_os_waits

    • Description: Mutex OS waits as shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_mutex_spin_rounds

    • Description: Mutex spin rounds as shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_mutex_spin_waits

    • Description: Mutex spin waits as shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_num_index_pages_written

    • Description:

    • Scope:

    • Data Type: numeric

    • Introduced:

    Innodb_num_non_index_pages_written

    • Description:

    • Scope:

    • Data Type: numeric

    • Introduced:

    Innodb_num_open_files

    • Description: Number of open files held by InnoDB. InnoDB only.

    • Scope: Global

    • Data Type: numeric

    Innodb_num_page_compressed_trim_op

    • Description: Number of trim operations performed.

    • Scope: Global

    • Data Type: numeric

    Innodb_num_page_compressed_trim_op_saved

    • Description: Number of trim operations not done because of an earlier trim.

    • Scope: Global

    • Data Type: numeric

    Innodb_num_pages_decrypted

    • Description: Number of pages page decrypted. See .

    • Scope: Global

    • Data Type: numeric

    Innodb_num_pages_encrypted

    • Description: Number of pages page encrypted. See .

    • Scope: Global

    • Data Type: numeric

    Innodb_num_pages_page_compressed

    • Description: Number of pages that are page compressed.

    • Scope: Global

    • Data Type: numeric

    Innodb_num_pages_page_compression_error

    • Description: Number of compression errors.

    • Scope: Global

    • Data Type: numeric

    Innodb_num_pages_page_decompressed

    • Description: Number of pages compressed with page compression that are decompressed.

    • Scope: Global

    • Data Type: numeric

    Innodb_num_pages_page_encryption_error

    • Description: Number of page encryption errors. See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_oldest_view_low_limit_trx_id

    • Description: As shown in the TRANSACTIONS section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_onlineddl_pct_progress

    • Description: Shows the progress of in-place alter table. It might be not so accurate because in-place alter is highly dependent on disk and buffer pool status. See .

    • Scope: Global

    • Data Type: numeric

    Innodb_onlineddl_rowlog_pct_used

    • Description: Shows row log buffer usage in 5-digit integer (10000 means 100.00%). See .

    • Scope: Global

    • Data Type: numeric

    Innodb_onlineddl_rowlog_rows

    • Description: Number of rows stored in the row log buffer. See .

    • Scope: Global

    • Data Type: numeric

    Innodb_os_log_fsyncs

    • Description: Number of InnoDB log fsync (sync-to-disk) requests.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_os_log_pending_fsyncs

    • Description: Number of pending InnoDB log fsync (sync-to-disk) requests.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_os_log_pending_writes

    • Description: Number of pending InnoDB log writes.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_os_log_written

    • Description: Number of bytes written to the InnoDB log.

    • Scope: Global

    • Data Type: numeric

    Innodb_page_compression_saved

    • Description: Number of bytes saved by page compression.

    • Scope:

    • Data Type:

    Innodb_page_compression_trim_sect512

    • Description: Number of TRIM operations performed for the page-compression/NVM Compression workload for the 512 byte block-size.

    • Scope:

    • Data Type: numeric

    • Introduced: , Fusion-io

    Innodb_page_compression_trim_sect1024

    • Description: Number of TRIM operations performed for the page-compression/NVM Compression workload for the 1K block-size.

    • Scope:

    • Data Type: numeric

    • Introduced: , Fusion-io

    Innodb_page_compression_trim_sect2048

    • Description: Number of TRIM operations performed for the page-compression/NVM Compression workload for the 2K block-size.

    • Scope:

    • Data Type: numeric

    • Introduced: , Fusion-io

    Innodb_page_compression_trim_sect4096

    • Description: Number of TRIM operations performed for the page-compression/NVM Compression workload for the 4K block-size.

    • Scope:

    • Data Type: numeric

    • Introduced: , Fusion-io

    Innodb_page_compression_trim_sect8192

    • Description: Number of TRIM operations performed for the page-compression/NVM Compression workload for the 8K block-size.

    • Scope:

    • Data Type: numeric

    • Introduced:, Fusion-io

    Innodb_page_compression_trim_sect16384

    • Description: Number of TRIM operations performed for the page-compression/NVM Compression workload for the 16K block-size.

    • Scope:

    • Data Type: numeric

    • Introduced: , Fusion-io

    Innodb_page_compression_trim_sect32768

    • Description: Number of TRIM operations performed for the page-compression/NVM Compression workload for the 32K block-size.

    • Scope:

    • Data Type: numeric

    • Introduced: , Fusion-io

    Innodb_page_size

    • Description: Page size used by InnoDB. Defaults to 16KB, can be compiled with a different value.

    • Scope: Global

    • Data Type: numeric

    Innodb_pages_created

    • Description: Number of InnoDB pages created.

    • Scope: Global

    • Data Type: numeric

    Innodb_pages_read

    • Description: Number of InnoDB pages read.

    • Scope: Global

    • Data Type: numeric

    Innodb_pages0_read

    • Description: Counter for keeping track of reads of the first page of InnoDB data files, because the original implementation of data-at-rest-encryption for InnoDB introduced new code paths for reading the pages. Removed in as the extra reads of the first page were removed, and the encryption subsystem will be initialized whenever we first read the first page of each data file, in fil_node_open_file().

    • Scope: Global

    • Data Type: numeric

    Innodb_pages_written

    • Description: Number of InnoDB pages written.

    • Scope: Global

    • Data Type: numeric

    Innodb_purge_trx_id

    • Description: Purge transaction id as shown in the TRANSACTIONS section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_purge_undo_no

    • Description: As shown in the TRANSACTIONS section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_read_views_memory

    • Description: As shown in the BUFFER POOL AND MEMORY section of the output. Shows the total of memory in bytes allocated for the InnoDB read view.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_row_lock_current_waits

    • Description: Number of pending row lock waits on InnoDB tables.

    • Scope: Global

    • Data Type: numeric

    Innodb_row_lock_numbers

    • Description: Number of current row locks on InnoDB tables as shown in the TRANSACTIONS section of the output. Renamed to in XtraDB 5.5.10-20.1.

    • Scope: Global

    • Data Type: numeric

    • Introduced: / XtraDB 5.5.8-20

    Innodb_row_lock_time

    • Description: Total time in milliseconds spent getting InnoDB row locks.

    • Scope: Global

    • Data Type: numeric

    Innodb_row_lock_time_avg

    • Description: Average time in milliseconds spent getting an InnoDB row lock.

    • Scope: Global

    • Data Type: numeric

    Innodb_row_lock_time_max

    • Description: Maximum time in milliseconds spent getting an InnoDB row lock.

    • Scope: Global

    • Data Type: numeric

    Innodb_row_lock_waits

    • Description: Number of times InnoDB had to wait before getting a row lock.

    • Scope: Global

    • Data Type: numeric

    Innodb_rows_deleted

    • Description: Number of rows deleted from InnoDB tables that where not system tables. Almost equivalent to which does include system tables.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_rows_inserted

    • Description: Number of rows inserted into InnoDB tables that where not system tables. No direct equivalent in status variables.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_rows_read

    • Description: Number of rows read from InnoDB tables that where not system tables. Almost equivalent to the sum of status variables which do include system tables.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_rows_updated

    • Description: Number of rows updated in InnoDB tables that where not system tables. Almost equivalent to which does include system tables.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_s_lock_os_waits

    • Description: As shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_s_lock_spin_rounds

    • Description: As shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_s_lock_spin_waits

    • Description: As shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_scrub_background_page_reorganizations

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_scrub_background_page_split_failures_missing_index

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_scrub_background_page_split_failures_out_of_filespace

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_scrub_background_page_split_failures_underflow

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_scrub_background_page_split_failures_unknown

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_scrub_background_page_splits

    • Description: See .

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_scrub_log

    • Description:

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_secondary_index_triggered_cluster_reads

    • Description: Used to track the effectiveness of the Prefix Index Queries Optimization (). Removed in as the optimization is now always enabled.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_secondary_index_triggered_cluster_reads_avoided

    • Description: Used to track the effectiveness of the Prefix Index Queries Optimization (). Removed in as the optimization is now always enabled.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_system_rows_deleted

    • Description: Number of rows deleted on system tables.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_system_rows_inserted

    • Description: Number of rows inserted on system tables.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_system_rows_read

    • Description: Number of rows read on system tables.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_system_rows_updated

    • Description: Number of rows updated on system tables.

    • Scope: Global

    • Data Type: numeric

    • Removed:

    Innodb_truncated_status_writes

    • Description: Number of times output from has been truncated.

    • Scope: Global

    • Data Type: numeric

    Innodb_undo_truncations

    • Description: Number of undo tablespace truncation operations.

    • Scope: Global

    • Data Type: numeric

    • Introduced:

    Innodb_x_lock_os_waits

    • Description: As shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_x_lock_spin_rounds

    • Description: As shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    Innodb_x_lock_spin_waits

    • Description: As shown in the SEMAPHORES section of the output.

      • In and , this status variable is present in XtraDB.

      • In and later, this status variable is not present.

    • Scope: Global

    This page is licensed: CC BY-SA / Gnu FDL

    Data Type: numeric
  • Introduced:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Scope: Global

  • Data Type: numeric

  • Introduced: ,

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • In , this status variable was reintroduced.

  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • Removed:

    numeric
    In , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • Removed:

    , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only), :

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only), :

  • Data Type: numeric

  • Introduced:

  • Removed:

  • In , this status variable was reintroduced.

  • Scope: Global

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • , this status variable was reintroduced.
  • Scope: Global

  • Data Type: numeric

  • Introduced: (XtraDB-only),

  • Data Type: numeric

  • Introduced:

  • Data Type: numeric

  • Introduced:

  • Data Type: numeric

  • Introduced:

  • Data Type: numeric

  • Introduced:

  • Removed:

    Data Type: numeric

  • Introduced:

  • Removed:

  • Removed:

    Removed:

    Removed:

    Removed:

    Removed:

    Removed:

    Removed:

    Introduced: ,
  • Removed:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Removed: / XtraDB 5.5.10-20.1

    Data Type: numeric

  • Introduced:

  • Removed:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Removed:

    Removed:

    Removed:

    Removed:

    Data Type: numeric

  • Introduced:

  • Removed:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • Data Type: numeric

  • Introduced:

  • Removed:

  • SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    information_schema.INNODB_METRICS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    MariaDB 10.6.2
    innodb_adaptive_hash_index
    information_schema.INNODB_METRICS
    InnoDB Asynchronous I/O
    InnoDB Asynchronous I/O Queuing Mechanism
    InnoDB Asynchronous I/O
    InnoDB Asynchronous I/O
    innodb_async_reads_queue_size
    InnoDB Asynchronous I/O
    InnoDB Asynchronous I/O Waiting for IO Slots
    InnoDB Asynchronous I/O
    InnoDB Asynchronous I/O Queuing Mechanism
    InnoDB Asynchronous I/O
    InnoDB Asynchronous I/O
    innodb_async_writes_queue_size
    InnoDB Asynchronous I/O
    InnoDB Asynchronous I/O
    undo logs
    innodb_undo_logs
    SHOW ENGINE INNODB STATUS
    InnoDB buffer pool
    Innodb_buffer_pool_pages_data
    InnoDB buffer pool
    Innodb_buffer_pool_pages_dirty
    InnoDB buffer pool
    Innodb_buffer_pool_bytes_data
    InnoDB buffer pool
    innodb_buffer_pool_bytes_dirty
    InnoDB buffer pool
    SHOW ENGINE INNODB STATUS
    MariaDB 10.6.0
    InnoDB buffer pool
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    InnoDB buffer pool
    SHOW ENGINE INNODB STATUS
    InnoDB buffer pool
    InnoDB buffer pool
    InnoDB buffer pool
    InnoDB buffer pool
    InnoDB buffer pool
    InnoDB buffer pool
    Setting Innodb Buffer Pool Size Dynamically
    InnoDB buffer pool
    innodb_buffer_pool_size
    InnoDB buffer pool
    MariaDB 10.6.19
    MariaDB 10.11.9
    MariaDB 11.4.3
    SHOW ENGINE INNODB STATUS
    RedoLog details
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    InnoDB_row_lock_numbers
    innodb_flush_method
    innodb_flush_method
    Innodb_data_reads
    Innodb_data_read
    Innodb_os_log_written
    MariaDB 10.6.13
    MariaDB 10.11.3
    MDEV-31124
    InnoDB doublewrite buffer
    InnoDB doublewrite buffer
    Defragmenting InnoDB Tablespaces
    Defragmenting InnoDB Tablespaces
    Defragmenting InnoDB Tablespaces
    table_definition_cache
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    InnoDB/XtraDB Page Compression
    InnoDB/XtraDB Page Compression
    InnoDB/XtraDB Page Compression
    InnoDB/XtraDB Page Compression
    InnoDB/XtraDB Page Compression
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    Instant ADD COLUMN for InnoDB
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    information_schema.INNODB_METRICS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    SHOW ENGINE INNODB STATUS
    Monitoring progress and temporal memory usage of Online DDL in InnoDB
    Monitoring progress and temporal memory usage of Online DDL in InnoDB
    Monitoring progress and temporal memory usage of Online DDL in InnoDB
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    InnoDB_current_row_locks
    Handler_delete
    Handler
    Handler_read*
    Handler_update
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    Table and Tablespace Encryption
    MDEV-6929
    MDEV-6929
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS
    SHOW ENGINE INNODB STATUS

    Sphinx Status Variables

    This page documents status variables related to the Sphinx storage engine. See Server Status Variables for a complete list of status variables that can be viewed with SHOW STATUS.

    See also the Full list of MariaDB options, system and status variables.

    Sphinx_error

    • Description: See SHOW ENGINE SPHINX STATUS.

    • Scope: Global, Session

    • Data Type: numeric

    Sphinx_time

    • Description: See .

    • Scope: Global, Session

    • Data Type: numeric

    Sphinx_total

    • Description: See .

    • Scope: Global, Session

    • Data Type: numeric

    Sphinx_total_found

    • Description: See .

    • Scope: Global, Session

    • Data Type: numeric

    Sphinx_word_count

    • Description: See .

    • Scope: Global, Session

    • Data Type: numeric

    Sphinx_words

    • Description: See .

    • Scope: Global, Session

    • Data Type: numeric

    This page is licensed: CC BY-SA / Gnu FDL

    SHOW ENGINE SPHINX STATUS
    SHOW ENGINE SPHINX STATUS
    SHOW ENGINE SPHINX STATUS
    SHOW ENGINE SPHINX STATUS
    SHOW ENGINE SPHINX STATUS
    MariaDB 10.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.6
    MariaDB 11.6.2
    MariaDB 11.6.2
    MariaDB 11.6.1
    MariaDB 10.9
    MariaDB 10.9.1
    MariaDB 10.9.1
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.4
    MariaDB 10.4.5
    MariaDB 10.4.1
    MariaDB 10.4.2
    MariaDB 10.4.5
    MariaDB 10.4.7
    MariaDB 10.4.7
    MariaDB 10.8
    MariaDB 10.8.1
    MariaDB 10.8.4
    MariaDB 11.3
    MariaDB 11.3.0
    MariaDB 11.3.0
    MariaDB 11.0
    MariaDB 11.0.2
    MariaDB 11.1
    MariaDB 11.1.6
    MariaDB 11.1.5
    MariaDB 11.1.6
    MariaDB 11.1.3
    MariaDB 11.1.3
    MariaDB 11.1.6
    MariaDB 11.1.0
    MariaDB 11.1.0
    MariaDB 11.5
    MariaDB 11.5.2
    MariaDB 11.5.1
    MariaDB 11.5.2
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.2
    MariaDB 10.3.3
    MariaDB 11.5
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.5.0
    MariaDB 11.7
    MariaDB 11.7.0
    MariaDB 11.7.1
    MariaDB 11.7.0
    MariaDB 11.7.1
    MariaDB 11.7.1
    MariaDB 11.7.1
    MariaDB 11.7.1
    MariaDB 11.7.0
    MariaDB 10.2
    MariaDB 10.2.0
    MariaDB 10.2.3
    MariaDB 10.2.0
    MariaDB 10.2.0
    MariaDB 10.2.2
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 11.2
    MariaDB 11.2.0
    MariaDB 11.2.0
    MariaDB 11.2.0
    MariaDB 11.2.0
    MariaDB 11.2.1
    MariaDB 11.2.5
    MariaDB 11.2.6
    MariaDB 11.2.4
    MariaDB 11.2.5
    MariaDB 11.2.4
    MariaDB 11.2.6
    MariaDB 11.2.5
    MariaDB 5.5
    MariaDB 5.5
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 5.5.20
    MariaDB 10.10
    MariaDB 10.10.1
    MariaDB 10.10.1
    MariaDB 10.10.7
    MariaDB 10.10.7
    MariaDB 10.10.1
    MariaDB 10.10.1
    MariaDB 10.10.1
    MariaDB 10.11.5
    MariaDB 10.6.17
    MariaDB 10.11.7
    MariaDB 11.0.5
    MariaDB 11.1.4
    MariaDB 11.2.3
    MariaDB 10.4
    MariaDB 10.4.3
    MariaDB 10.4.3
    MariaDB 10.4.3
    MariaDB 10.4.1
    MariaDB 10.4.7
    MariaDB 10.4.13
    MariaDB 10.4.2
    MariaDB 10.4.3
    MariaDB 10.4.3
    MariaDB 10.4.0
    MariaDB 10.4.6
    MariaDB 10.4.3
    MariaDB 10.4.2
    MariaDB 10.4.2
    MariaDB 10.3
    MariaDB 10.3.5
    MariaDB 10.3.5
    MariaDB 10.3.1
    MariaDB 10.3.5
    MariaDB 10.3.5
    MariaDB 10.3.0
    MariaDB 10.3.5
    MariaDB 10.3.5
    MariaDB 10.3.0
    MariaDB 10.3.5
    MariaDB 10.3.5
    MariaDB 10.3.5
    MariaDB 10.3.5
    MariaDB 10.3.7
    MariaDB 10.3.7
    MariaDB 10.3.0
    MariaDB 10.3.5
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.1
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.1
    MariaDB 10.3.1
    MariaDB 10.3
    MariaDB 10.3.7
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.1
    MariaDB 10.3.2
    MariaDB 10.3.2
    MariaDB 10.3.2
    MariaDB 10.3.2
    MariaDB 10.3.0
    MariaDB 10.3.0
    MariaDB 10.3.0
    MariaDB 10.3.18
    MariaDB 10.3.17
    MariaDB 10.3.23
    MariaDB 10.3.1
    MariaDB 10.3.1
    MariaDB 10.3.3
    MariaDB 10.3.7
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.4
    MariaDB 10.3.4
    MariaDB 10.3.4
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.3
    MariaDB 10.3.2
    MariaDB 10.3.13
    MariaDB 10.3.6
    MariaDB 10.2
    MariaDB 10.2.0
    MariaDB 10.2.18
    MariaDB 10.2.2
    MariaDB 10.2.6
    MariaDB 10.2.2
    MariaDB 10.2.26
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.3
    MariaDB 10.2.2
    MariaDB 10.2.17
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.19
    MariaDB 10.2.6
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.3
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.0
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.2
    MariaDB 10.2.7
    MariaDB 10.2.7
    MariaDB 10.2.22
    MariaDB 10.5
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5.0
    MariaDB 10.5.3
    MariaDB 10.5.7
    MariaDB 10.5.7
    MariaDB 10.5.9
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5
    MariaDB 10.5.26
    MariaDB 10.5.2
    MariaDB 10.5.0
    MariaDB 10.5.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.18
    MariaDB 10.0.18
    MariaDB 10.0.18
    MariaDB 10.0.5
    MariaDB 10.0.5
    MariaDB 10.0.4
    MariaDB 10.0.5
    MariaDB 10.0.5
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.4
    MariaDB 10.0.4
    MariaDB 10.0.4
    MariaDB 10.0.4
    MariaDB 10.0.4
    MariaDB 10.0.4
    MariaDB 10.0.27
    MariaDB 10.0.13
    MariaDB 10.0.0
    MariaDB 10.0.27
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.9
    MariaDB 10.0.9
    MariaDB 10.0.0
    MariaDB 10.0.15
    MariaDB 10.0.15
    MariaDB 10.0.15
    MariaDB 10.0.15
    MariaDB 10.0.1
    MariaDB 10.0.7
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.18
    MariaDB 10.0.13
    MariaDB 10.0.27
    MariaDB 11.0
    MariaDB 11.0.1
    MariaDB 11.0.1
    MariaDB 11.0.1
    MariaDB 11.0.4
    MariaDB 11.0.6
    MariaDB 11.0.6
    MariaDB 11.0.4
    MariaDB 10.1.7
    MariaDB 10.1
    MariaDB 10.1
    MariaDB 10.1.3
    MariaDB 10.1.0
    MariaDB 10.1.7
    MariaDB 10.1.3
    MariaDB 10.1.5
    MariaDB 10.1.4
    MariaDB 10.1.8
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.6
    MariaDB 10.1.0
    MariaDB 10.1.4
    MariaDB 10.1.32
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.2
    MariaDB 10.1.0
    MariaDB 10.1.2
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.0
    MariaDB 10.1.2
    MariaDB 10.1.3
    MariaDB 10.1.4
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.6
    MariaDB 10.1.6
    MariaDB 10.1.3
    MariaDB 10.1.5
    MariaDB 10.1.21
    MariaDB 10.1.1
    MariaDB 10.1.2
    MariaDB 10.1.6
    MariaDB 10.1.2
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.1
    MariaDB 10.1.3
    MariaDB 10.1.38
    MariaDB 10.1.3
    MariaDB 10.1
    MariaDB 10.1
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.1
    MariaDB 10.1.6
    MariaDB 10.1.6
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.3
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1
    MariaDB 10.1.0
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.2
    MariaDB 10.1.2
    MariaDB 10.1.0
    MariaDB 10.1.2
    MariaDB 10.1.2
    MariaDB 10.1.2
    MariaDB 10.1.2
    MariaDB 10.1.2
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.4
    MariaDB 10.1.1
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.13
    MariaDB 10.0.5
    MariaDB 10.0.5
    MariaDB 10.0.1
    MariaDB 10.0.11
    MariaDB 10.0.3
    MariaDB 10.0.5
    MariaDB 10.0.3
    MariaDB 10.0.2
    MariaDB 10.0.10
    MariaDB 10.0.2
    MariaDB 10.0.3
    MariaDB 10.0.3
    MariaDB 10.0.2
    MariaDB 10.0.2
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.0.9
    MariaDB 10.0.9
    MariaDB 10.0.9
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.0.14
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.15
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.16
    MariaDB 10.0
    MariaDB 10.0.14
    MariaDB 10.0.14
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0
    MariaDB 10.0.13
    MariaDB 10.0.9
    MariaDB 10.0.7
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.21
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.4
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.8
    MariaDB 10.0.9
    MariaDB 10.0.5
    MariaDB 10.0.5
    MariaDB 10.0.0
    MariaDB 10.0.0
    MariaDB 10.0.1
    MariaDB 10.0.1
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 5.5
    MariaDB 10.0.0
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 11.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 10.0.0
    MariaDB 10.3.5
    MariaDB 10.0.0
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.2.2
    MariaDB 10.5.0
    MariaDB 11.1.6
    MariaDB 11.2.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 10.0
    MariaDB 5.5
    MariaDB 5.5
    MariaDB 10.5.1
    MariaDB 10.5.7
    MariaDB 10.5.20
    MariaDB 10.8.8
    MariaDB 10.9.6
    MariaDB 10.10.4
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.1
    MariaDB 10.1.28
    MariaDB 10.2.9
    MariaDB 10.3.2
    MariaDB 10.1.28
    MariaDB 10.2.9
    MariaDB 10.3.2
    MariaDB 10.1.28
    MariaDB 10.2.9
    MariaDB 10.3.2
    MariaDB 10.1.28
    MariaDB 10.2.9
    MariaDB 10.3.2
    MariaDB 10.2.26
    MariaDB 10.3.17
    MariaDB 10.4.7
    MariaDB 10.2.26
    MariaDB 10.3.17
    MariaDB 10.4.7
    MariaDB 10.5.2
    MariaDB 10.2.4
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.2.4
    MariaDB 10.1.3
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 10.3.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.1.0
    MariaDB 10.1.0
    MariaDB 10.1.3
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.8
    MariaDB 10.8
    MariaDB 10.8
    MariaDB 10.1.0
    MariaDB 10.0.15
    MariaDB 10.1.2
    MariaDB 10.0.15
    MariaDB 10.1.2
    MariaDB 10.0.15
    MariaDB 10.1.0
    MariaDB 10.0.15
    MariaDB 10.1.2
    MariaDB 10.0.15
    MariaDB 10.1.2
    MariaDB 10.0.15
    MariaDB 10.1.2
    MariaDB 10.0.15
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.10
    MariaDB 10.10
    MariaDB 10.10
    MariaDB 10.10
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.1.3
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.2.4
    MariaDB 10.10
    MariaDB 10.10
    MariaDB 10.10
    MariaDB 10.10
    MariaDB 10.10
    MariaDB 10.10
    MariaDB 10.10.0
    MariaDB 10.10.0
    MariaDB 10.3.10
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.1
    MariaDB 10.2
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.0.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 10.0
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 10.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.0
    MariaDB 5.5
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.0
    MariaDB 10.0.9
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.0
    MariaDB 10.5
    MariaDB 5.5
    MariaDB 10.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 10.5.0
    MariaDB 5.5
    MariaDB 5.5
    MariaDB 5.5
    MariaDB 5.5
    MariaDB 10.1.4
    MariaDB 5.5
    MariaDB 10.2
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.2.4
    MariaDB 10.1.21
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.2
    MariaDB 5.5.32
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 5.5
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 10.5.2
    MariaDB 5.5
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.2
    MariaDB 5.5
    MariaDB 10.2