XtraDB/InnoDB Server Status Variables

You are viewing an old version of this article. View the current version here.

Contents

  1. Innodb_adaptive_hash_cells
  2. Innodb_adaptive_hash_hash_searches
  3. Innodb_adaptive_hash_heap_buffers
  4. Innodb_adaptive_hash_non_hash_searches
  5. Innodb_available_undo_logs
  6. Innodb_background_log_sync
  7. Innodb_buffer_pool_bytes_data
  8. Innodb_buffer_pool_bytes_dirty
  9. Innodb_buffer_pool_dump_status
  10. Innodb_buffer_pool_load_status
  11. Innodb_buffer_pool_pages_data
  12. Innodb_buffer_pool_pages_dirty
  13. Innodb_buffer_pool_pages_flushed
  14. Innodb_buffer_pool_pages_LRU_flushed
  15. Innodb_buffer_pool_pages_free
  16. Innodb_buffer_pool_pages_made_not_young
  17. Innodb_buffer_pool_pages_made_young
  18. Innodb_buffer_pool_pages_misc
  19. Innodb_buffer_pool_pages_old
  20. Innodb_buffer_pool_pages_total
  21. Innodb_buffer_pool_read_ahead_rnd
  22. Innodb_buffer_pool_read_ahead
  23. Innodb_buffer_pool_read_ahead_evicted
  24. Innodb_buffer_pool_read_requests
  25. Innodb_buffer_pool_reads
  26. Innodb_buffer_pool_wait_free
  27. Innodb_buffer_pool_write_requests
  28. Innodb_checkpoint_age
  29. Innodb_checkpoint_max_age
  30. Innodb_checkpoint_target_age
  31. Innodb_current_row_locks
  32. Innodb_data_fsyncs
  33. Innodb_data_pending_fsyncs
  34. Innodb_data_pending_reads
  35. Innodb_data_pending_writes
  36. Innodb_data_read
  37. Innodb_data_reads
  38. Innodb_data_writes
  39. Innodb_data_written
  40. Innodb_dblwr_pages_written
  41. Innodb_dblwr_writes
  42. Innodb_deadlocks
  43. Innodb_dict_tables
  44. Innodb_have_atomic_builtins
  45. Innodb_history_list_length
  46. Innodb_ibuf_discarded_delete_marks
  47. Innodb_ibuf_discarded_deletes
  48. Innodb_ibuf_discarded_inserts
  49. Innodb_ibuf_free_list
  50. Innodb_ibuf_merged_delete_marks
  51. Innodb_ibuf_merged_deletes
  52. Innodb_ibuf_merged_inserts
  53. Innodb_ibuf_merges
  54. Innodb_ibuf_segment_size
  55. Innodb_ibuf_size
  56. Innodb_log_waits
  57. Innodb_log_write_requests
  58. Innodb_log_writes
  59. Innodb_lsn_current
  60. Innodb_lsn_flushed
  61. Innodb_lsn_last_checkpoint
  62. Innodb_master_thread_1_second_loops
  63. Innodb_master_thread_10_second_loops
  64. Innodb_master_thread_background_loops
  65. Innodb_master_thread_main_flush_loops
  66. Innodb_master_thread_sleeps
  67. Innodb_max_trx_id
  68. Innodb_mem_adaptive_hash
  69. Innodb_mem_dictionary
  70. Innodb_mem_total
  71. Innodb_mutex_os_waits
  72. Innodb_mutex_spin_rounds
  73. Innodb_mutex_spin_waits
  74. Innodb_num_open_files
  75. Innodb_oldest_view_low_limit_trx_id
  76. Innodb_os_log_fsyncs
  77. Innodb_os_log_pending_fsyncs
  78. Innodb_os_log_pending_writes
  79. Innodb_os_log_written
  80. Innodb_page_size
  81. Innodb_pages_created
  82. Innodb_pages_read
  83. Innodb_pages_written
  84. Innodb_purge_trx_id
  85. Innodb_purge_undo_no
  86. Innodb_row_lock_current_waits
  87. Innodb_row_lock_numbers
  88. Innodb_row_lock_time
  89. Innodb_row_lock_time_avg
  90. Innodb_row_lock_time_max
  91. Innodb_row_lock_time_waits
  92. Innodb_rows_deleted
  93. Innodb_rows_inserted
  94. Innodb_rows_read
  95. Innodb_rows_updated
  96. Innodb_s_lock_os_waits
  97. Innodb_s_lock_spin_rounds
  98. Innodb_s_lock_spin_waits
  99. Innodb_truncated_status_writes
  100. Innodb_x_lock_os_waits
  101. Innodb_x_lock_spin_rounds
  102. Innodb_x_lock_spin_waits

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.

Innodb_adaptive_hash_cells

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output. This Percona XtraDB variable has not been ported to XtraDB 5.6.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0

Innodb_adaptive_hash_hash_searches

  • Description: Hash searches as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output. Removed in Percona's XtraDB 5.6 and replaced with the adaptive_hash_searches counter in the INFORMATION_SCHEMA.INNODB_METRICS table in Percona 5.6 - MariaDB 10.0 has no equivalent.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0/XtraDB 5.6

Innodb_adaptive_hash_heap_buffers

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output. This Percona XtraDB variable has not been ported to XtraDB 5.6.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0/XtraDB 5.6

Innodb_adaptive_hash_non_hash_searches

  • Description: Non-hash searches as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output. Removed in Percona's XtraDB 5.6 and replaced with the adaptive_hash_searches_btree counter in the INFORMATION_SCHEMA.INNODB_METRICS table in Percona 5.6 - MariaDB 10.0 has no equivalent.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0/XtraDB 5.6

Innodb_available_undo_logs


Innodb_background_log_sync


Innodb_buffer_pool_bytes_data

  • Description: Number of bytes contained in the InnoDB buffer pool, both dirty (modified) and clean (unmodified). See also Innodb_buffer_pool_pages_data, which can contain pages of different sizes in the case of compression.
  • Scope: Global
  • Data Type: numeric

Innodb_buffer_pool_bytes_dirty


Innodb_buffer_pool_dump_status

  • Description:
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 10.0/MySQL 5.6

Innodb_buffer_pool_load_status

  • Description:
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 10.0

Innodb_buffer_pool_pages_data


Innodb_buffer_pool_pages_dirty


Innodb_buffer_pool_pages_flushed

  • Description: Number of InnoDB buffer pool 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 SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_buffer_pool_pages_free


Innodb_buffer_pool_pages_made_not_young

  • Description: Pages not young as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_buffer_pool_pages_made_young

  • Description: Pages made young as shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_buffer_pool_pages_misc

  • Description: Number of InnoDB buffer pool 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 SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_buffer_pool_pages_total


Innodb_buffer_pool_read_ahead_rnd

  • Description: Number of random read-aheads.
  • Scope: Global
  • Data Type: numeric
  • Removed: MySQL 5.1.41#

Innodb_buffer_pool_read_ahead

  • Description: Number of pages read into the InnoDB buffer pool by the read-ahead background thread.
  • Scope: Global
  • Data Type: numeric

Innodb_buffer_pool_read_ahead_evicted

  • Description: Number of pages read into the InnoDB buffer pool by the read-ahead background thread that were evicted without having been accessed by queries.
  • Scope: Global
  • Data Type: numeric

Innodb_buffer_pool_read_requests

  • Description: Number of requests to read from the InnoDB buffer pool.
  • Scope: Global
  • Data Type: numeric

Innodb_buffer_pool_reads

  • Description: Number of reads that could not be satisfied by the InnoDB buffer pool and had to be read from disk.
  • Scope: Global
  • Data Type: numeric

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 InnoDB buffer pool 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 innodb_buffer_pool_size.
  • Scope: Global
  • Data Type: numeric

Innodb_buffer_pool_write_requests

  • Description: Number of requests to write to the InnoDB buffer pool.
  • Scope: Global
  • Data Type: numeric

Innodb_checkpoint_age

  • Description: The checkpoint age, as shown in the LOG section of the SHOW ENGINE INNODB STATUS output. (This is equivalent to subtracting "Last checkpoint at" from "Log sequence number".)
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_checkpoint_max_age


Innodb_checkpoint_target_age

  • Description: Checkpoint age target, as shown in the LOG section of the SHOW ENGINE INNODB STATUS output. Removed in MariaDB 10.0/XtraDB 5.6 and replaced with MySQL 5.6's flushing implementation.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0 / XtraDB 5.6

Innodb_current_row_locks


Innodb_data_fsyncs

  • Description: Number of InnoDB fsync (sync-to-disk) calls. fsync call frequency can be influenced by the innodb_flush_method 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 innodb_flush_method 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 [[#innodb_data_reads|Innodb_data_reads).
  • Scope: Global
  • Data Type: numeric

Innodb_data_reads

  • Description: Number of InnoDB read operations (not to be confused with [[#innodb_data_read|Innodb_data_read).
  • 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 server startup.
  • Scope: Global
  • Data Type: numeric

Innodb_dblwr_pages_written


Innodb_dblwr_writes


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.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

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 table_definition_cache implementation.
  • Scope: Global
  • Data Type: numeric
  • Introduced: XtraDB 5.0.77-b13
  • Removed: MariaDB 10.0 / XtraDB 5.6

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.
  • Scope: Global
  • Data Type: boolean

Innodb_history_list_length

  • Description: History list length as shown in the TRANSACTIONS section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_discarded_delete_marks

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_discarded_deletes

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_discarded_inserts

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_free_list

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_merged_delete_marks

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_merged_deletes

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_merged_inserts

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_merges

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_segment_size

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_ibuf_size

  • Description: As shown in the INSERT BUFFER AND ADAPTIVE HASH INDEX section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

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


Innodb_lsn_flushed

  • Description: Flushed up to log sequence number as shown in the LOG section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_lsn_last_checkpoint

  • Description: Log sequence number last checkpoint as shown in the LOG section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_master_thread_1_second_loops

  • Description: As shown in the BACKGROUND THREAD section of the SHOW ENGINE INNODB STATUS output. Removed in MariaDB 10.0/XtraDB 5.6 as MySQL 5.6's new InnoDB master thread behavior has made this redundant.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0/XtraDB 5.6

Innodb_master_thread_10_second_loops

  • Description: As shown in the BACKGROUND THREAD section of the SHOW ENGINE INNODB STATUS output. Removed in MariaDB 10.0/XtraDB 5.6 as MySQL 5.6's new InnoDB master thread behavior has made this redundant.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0/XtraDB 5.6

Innodb_master_thread_background_loops

  • Description: As shown in the BACKGROUND THREAD section of the SHOW ENGINE INNODB STATUS output. Removed in MariaDB 10.0/XtraDB 5.6 as MySQL 5.6's new InnoDB master thread behavior has made this redundant.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0/XtraDB 5.6

Innodb_master_thread_main_flush_loops

  • Description: As shown in the BACKGROUND THREAD section of the SHOW ENGINE INNODB STATUS output. Removed in MariaDB 10.0/XtraDB 5.6 as MySQL 5.6's new InnoDB master thread behavior has made this redundant.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0/XtraDB 5.6

Innodb_master_thread_sleeps

  • Description: As shown in the BACKGROUND THREAD section of the SHOW ENGINE INNODB STATUS output. Removed in Percona's XtraDB 5.6 and replaced with the innodb_master_thread_sleeps counter in the INFORMATION_SCHEMA.INNODB_METRICS table in Percona 5.6 - MariaDB 10.0 has no equivalent.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20
  • Removed: MariaDB 10.0/XtraDB 5.6

Innodb_max_trx_id


Innodb_mem_adaptive_hash


Innodb_mem_dictionary


Innodb_mem_total


Innodb_mutex_os_waits


Innodb_mutex_spin_rounds

  • Description: Mutex spin rounds as shown in the SEMAPHORES section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_mutex_spin_waits

  • Description: Mutex spin waits as shown in the SEMAPHORES section of the SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_num_open_files

  • Description: Number of open files held by InnoDB.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 10.0

Innodb_oldest_view_low_limit_trx_id


Innodb_os_log_fsyncs

  • Description: Number of InnoDB log fsync (sync-to-disk) requests.
  • Scope: Global
  • Data Type: numeric

Innodb_os_log_pending_fsyncs

  • Description: Number of pending InnoDB log fsync (sync-to-disk) requests.
  • Scope: Global
  • Data Type: numeric

Innodb_os_log_pending_writes

  • Description: Number of pending InnoDB log writes.
  • Scope: Global
  • Data Type: numeric

Innodb_os_log_written

  • Description: Number of bytes written to the InnoDB log.
  • Scope: Global
  • Data Type: numeric

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_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 SHOW ENGINE INNODB STATUS output.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB 5.5 / XtraDB 5.5.8-20

Innodb_purge_undo_no


Innodb_row_lock_current_waits

  • Description: Number of pending row locks on InnoDB tables.
  • Scope: Global
  • Data Type: numeric

Innodb_row_lock_numbers


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 InnoDB row locks.
  • 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_time_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.
  • Scope: Global
  • Data Type: numeric

Innodb_rows_inserted

  • Description: Number of rows inserted into InnoDB tables.
  • Scope: Global
  • Data Type: numeric

Innodb_rows_read

  • Description: Number of rows read from InnoDB tables.
  • Scope: Global
  • Data Type: numeric

Innodb_rows_updated

  • Description: Number of rows updated in InnoDB tables.
  • Scope: Global
  • Data Type: numeric

Innodb_s_lock_os_waits


Innodb_s_lock_spin_rounds


Innodb_s_lock_spin_waits


Innodb_truncated_status_writes

  • Description: Number of times output from SHOW ENGINE INNODB STATUS has been truncated.
  • Scope: Global
  • Data Type: numeric
  • Introduced: MariaDB/MySQL 5.5

Innodb_x_lock_os_waits


Innodb_x_lock_spin_rounds


Innodb_x_lock_spin_waits


Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.