dbug
This page is part of MariaDB's Documentation.
The parent of this page is: wsrep Provider Options for MariaDB Enterprise Server
Topics on this page:
Overview
Default: "" (an empty string)
The wsrep_provider_options
system variable applies to MariaDB Enterprise Cluster, powered by Galera and to Galera Cluster available with MariaDB Community Server. This page relates specifically to the dbug wsrep_provider_options
.
See also: wsrep Provider Options for MariaDB Enterprise Server 10.6, in 10.5 ES, in 10.4 ES, in 10.3 ES, in 10.2 ES, in 10.6 CS, in 10.5 CS, in 10.4 CS, in 10.3 CS, and in 10.2 CS
DETAILS
Attribute | Value |
---|---|
Option Name | dbug |
Default Value | "" (an empty string) |
Dynamic | YES |
Debug |
|
EXAMPLES
Display Current Value
wsrep_provider_options
define optional settings the node passes to the wsrep provider.
To display current wsrep_provider_options
values:
SHOW GLOBAL VARIABLES LIKE 'wsrep_provider_options';
The expected output will display the option and the value. Options with no default value, for example SSL options, will not be displayed in the output.
Set Dynamically
Changes made dynamically with SET GLOBAL
are not durable and will be lost when the server is stopped. To be durable, changes must be set in the configuration file.
The dbug option can be set dynamically using the SET GLOBAL
command. Setting wsrep_provider_options
dynamically does not change the value of other wsrep_provider_options
.
To set dbug dynamically:
SET GLOBAL wsrep_provider_options='dbug=NO';
To dynamically set multiple options in a single statement:
SET GLOBAL wsrep_provider_options='dbug=NO;cert.optimistic_pa=NO';
CHANGE HISTORY
Release Series | History |
---|---|
10.6 Enterprise |
|
10.6 Community |
|
10.5 Enterprise |
|
10.5 Community |
|
10.4 Enterprise |
|
10.4 Community |
|
10.3 Enterprise |
|
10.3 Community |
|
10.2 Enterprise |
|
10.2 Community |
|