Galera Cluster System Variables
You are viewing an old version of this article. View
the current version here.
Contents
- wsrep_allowlist
- wsrep_auto_increment_control
- wsrep_causal_reads
- wsrep_certification_rules
- wsrep_certify_nonPK
- wsrep_cluster_address
- wsrep_cluster_name
- wsrep_convert_LOCK_to_trx
- wsrep_data_home_dir
- wsrep_dbug_option
- wsrep_debug
- wsrep_desync
- wsrep_dirty_reads
- wsrep_drupal_282555_workaround
- wsrep_forced_binlog_format
- wsrep_gtid_domain_id
- wsrep_gtid_mode
- wsrep_gtid_seq_no
- wsrep_ignore_apply_errors
- wsrep_load_data_splitting
- wsrep_log_conflicts
- wsrep_max_ws_rows
- wsrep_max_ws_size
- wsrep_mode
- wsrep_mysql_replication_bundle
- wsrep_node_address
- wsrep_node_incoming_address
- wsrep_node_name
- wsrep_notify_cmd
- wsrep_on
- wsrep_OSU_method
- wsrep_patch_version
- wsrep_provider
- wsrep_provider_options
- wsrep_recover
- wsrep_reject_queries
- wsrep_replicate_myisam
- wsrep_restart_slave
- wsrep_retry_autocommit
- wsrep_slave_FK_checks
- wsrep_slave_threads
- wsrep_slave_UK_checks
- wsrep_sr_store
- wsrep_sst_auth
- wsrep_sst_donor
- wsrep_sst_donor_rejects_queries
- wsrep_sst_method
- wsrep_sst_receive_address
- wsrep_start_position
- wsrep_status_file
- wsrep_strict_ddl
- wsrep_sync_wait
- wsrep_trx_fragment_size
- wsrep_trx_fragment_unit
This page documents system variables related to Galera Cluster. For options that are not system variables, see Galera Options.
See Server System Variables for a complete list of system variables and instructions on setting them.
Also see the Full list of MariaDB options, system and status variables.
wsrep_allowlist
- Description: Allowed IP addresses, comma delimited.
- Commandline:
--wsrep-allowlist=value1[,value2...]
- Scope: Global
- Dynamic: No
- Data Type: String
- Default Value: None
- Introduced: MariaDB 10.10
wsrep_auto_increment_control
- Description: If set to
1
(the default), will automatically adjust the auto_increment_increment and auto_increment_offset variables according to the size of the cluster, and when the cluster size changes. This avoids replication conflicts due to auto_increment. In a primary-replica environment, can be set toOFF
. - Commandline:
--wsrep-auto-increment-control[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
ON
wsrep_causal_reads
- Description: If set to
ON
(OFF
is default), enforces read-committed characteristics across the cluster. In the case that a primary applies an event more quickly than a replica, the two could briefly be out-of-sync. With this variable set toON
, the replica will wait for the event to be applied before processing further queries. Setting toON
also results in larger read latencies. Deprecated by wsrep_sync_wait=1. - Commandline:
--wsrep-causal-reads[={0|1}]
- Scope: Session
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
- Deprecated: MariaDB 10.1.3
- Removed: MariaDB 11.3.0
wsrep_certification_rules
- Description: Certification rules to use in the cluster. Possible values are:
strict
: Stricter rules that could result in more certification failures. For example with foreign keys, certification failure could result if different nodes receive non-conflicting insertions at about the same time that point to the same row in a parent tableoptimized
: relaxed rules that allow more concurrency and cause less certification failures.
- Commandline:
--wsrep-certifcation-rules
- Scope: Global
- Dynamic: Yes
- Data Type: Enumeration
- Default Value:
strict
- Valid Values:
strict
,optimized
- Introduced: MariaDB 10.4.3, MariazDB 10.3.13, MariaDB 10.2.22, MariaDB 10.1.38
wsrep_certify_nonPK
- Description: When set to
ON
(the default), Galera will still certify transactions for tables with no primary key. However, this can still cause undefined behavior in some circumstances. It is recommended to define primary keys for every InnoDB table when using Galera. - Commandline:
--wsrep-certify-nonPK[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
ON
wsrep_cluster_address
- Description: The addresses of cluster nodes to connect to when starting up.
- Good practice is to specify all possible cluster nodes, in the form
gcomm://<node1 or ip:port>,<node2 or ip2:port>,<node3 or ip3:port>
. - Specifying an empty ip (
gcomm://
) will cause the node to start a new cluster (which should not be done in the my.cnf file, as after each restart the server will not rejoin the current cluster). - The variable can be changed at runtime in some configurations, and will result in the node closing the connection to any current cluster, and connecting to the new address.
- If specifying a port, note that this is the Galera port, not the MariaDB port.
- For example:
gcomm://192.168.0.1,192.168.0.2,192.168.0.3
gcomm://192.168.0.1:1234,192.168.0.2:1234,192.168.0.3:1234?gmcast.listen_addr=tcp://0.0.0.0:1234
- See also gmcast.listen_addr
- Good practice is to specify all possible cluster nodes, in the form
- Commandline:
--wsrep-cluster-address=value
- Scope: Global
- Dynamic: No
- Data Type: String
wsrep_cluster_name
- Description: The name of the cluster. Nodes cannot connect to clusters with a different name, so needs to be identical on all nodes in the same cluster. The variable can be set dynamically, but note that doing so may be unsafe and cause an outage, and that the wsrep provider is unloaded and loaded.
- Commandline:
--wsrep-cluster-name=value
- Scope: Global
- Dynamic: Yes
- Data Type: String
- Default Value:
my_wsrep_cluster
wsrep_convert_LOCK_to_trx
- Description: Converts LOCK/UNLOCK TABLES statements to BEGIN and COMMIT. Used mainly for getting older applications to work with a multi-primary setup, use carefully, as can result in extremely large writesets.
- Commandline:
--wsrep-convert-LOCK-to-trx[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
wsrep_data_home_dir
- Description: Directory where wsrep provider will store its internal files.
- Commandline:
--wsrep-data-home-dir=value
- Scope: Global
- Dynamic: No
- Data Type: String
- Default Value: The datadir variable value.
wsrep_dbug_option
- Description: Unused. The mechanism to pass the DBUG options to the wsrep provider hasn't been implemented.
- Commandline:
--wsrep-dbug-option=value
- Scope: Global
- Dynamic: Yes
- Data Type: String
wsrep_debug
- Description: WSREP debug level logging. Before MariaDB 10.4.3 was a boolean, which when set to
ON
(OFF
was default), ensured debug messages would be logged to the error log as well. Before MariaDB 10.6.1, DDL logging was only logged on the originating node. From MariaDB 10.6.1, it is logged on other nodes as well. - Commandline:
--wsrep-debug[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Enumeration (>= MariaDB 10.4.3), Boolean (<= MariaDB 10.4.2)
- Default Value:
NONE
(>= MariaDB 10.4.3),OFF
(<= MariaDB 10.4.2) - Valid Values: (>= MariaDB 10.4.3)
NONE
,SERVER
,TRANSACTION
,STREAMING
,CLIENT
wsrep_desync
- Description: When a node receives more write-sets than it can apply, the transactions are placed in a received queue. If the node's received queue has too many write-sets waiting to be applied (as defined by the
gcs.fc_limit
WSREP provider option), then the node would usually engage Flow Control. However, when this option is set toON
, Flow Control will be disabled for the desynced node. The desynced node works through the received queue until it reaches a more manageable size. The desynced node continues to receive write-sets from the other nodes in the cluster. The other nodes in the cluster do not wait for the desynced node to catch up, so the desynced node can fall even further behind the other nodes in the cluster. You can check if a node is desynced by checking if thewsrep_local_state_comment
status variable is equal toDonor/Desynced
. - Commandline:
--wsrep-desync[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
wsrep_dirty_reads
- Description: By default, when not synchronized with the group (wsrep_ready=OFF) a node will reject all queries other than SET and SHOW. If
wsrep_dirty_reads
is set to1
, queries which do not change data, like SELECT queries (dirty reads), creating of prepare statement, etc. will be accepted by the node. - Commandline:
--wsrep-dirty-reads[={0|1}]
- Scope: Global,Session
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
- Valid Values:
ON
,OFF
wsrep_drupal_282555_workaround
- Description: If set to
ON
, a workaround for Drupal/MySQL/InnoDB bug #282555 is enabled. This is a bug where, in some cases, when inserting aDEFAULT
value into an AUTO_INCREMENT column, a duplicate key error may be returned. - Commandline:
--wsrep-drupal-282555-workaround[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
wsrep_forced_binlog_format
- Description: A binary log format that will override any session binlog format settings.
- Commandline:
--wsrep-forced-binlog-format=value
- Scope: Global
- Dynamic: Yes
- Default Value:
NONE
- Data Type: Enum
- Valid Values:
STATEMENT
,ROW
,MIXED
orNONE
(which resets the forced binlog format state).
wsrep_gtid_domain_id
- Description: This system variable defines the GTID domain ID that is used for wsrep GTID mode.
- When
wsrep_gtid_mode
is set toON
,wsrep_gtid_domain_id
is used in place ofgtid_domain_id
for all Galera Cluster write sets. - When
wsrep_gtid_mode
is set toOFF
,wsrep_gtid_domain_id
is simply ignored to allow for backward compatibility. - There are some additional requirements that need to be met in order for this mode to generate consistent GTIDs. For more information, see Using MariaDB GTIDs with MariaDB Galera Cluster.
- When
- Commandline:
--wsrep-gtid-domain-id=#
- Scope: Global
- Dynamic: Yes
- Data Type:
numeric
- Default Value:
0
- Range:
0
to4294967295
wsrep_gtid_mode
- Description: Wsrep GTID mode attempts to keep GTIDs consistent for Galera Cluster write sets on all cluster nodes. GTID state is initially copied to a joiner node during an SST. If you are planning to use Galera Cluster with MariaDB replication, then wsrep GTID mode can be helpful.
- When
wsrep_gtid_mode
is set toON
,wsrep_gtid_domain_id
is used in place ofgtid_domain_id
for all Galera Cluster write sets. - When
wsrep_gtid_mode
is set toOFF
,wsrep_gtid_domain_id
is simply ignored to allow for backward compatibility. - There are some additional requirements that need to be met in order for this mode to generate consistent GTIDs. For more information, see Using MariaDB GTIDs with MariaDB Galera Cluster.
- When
- Commandline:
--wsrep-gtid-mode[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type:
boolean
- Default Value:
OFF
wsrep_gtid_seq_no
- Description: Internal server usage, manually set WSREP GTID seqno.
- Commandline: None
- Scope: Session only
- Dynamic: Yes
- Data Type:
numeric
- Range:
0
to18446744073709551615
- Introduced: MariaDB 10.5.1
wsrep_ignore_apply_errors
- Description: Bitmask determining whether errors are ignored, or reported back to the provider.
- 0: No errors are skipped.
- 1: Ignore some DDL errors (DROP DATABASE, DROP TABLE, DROP INDEX, ALTER TABLE).
- 2: Skip DML errors (Only ignores DELETE errors).
- 4: Ignore all DDL errors.
- Commandline:
--wsrep-ignore-apply-errors
- Scope: Global
- Dynamic: Yes
- Data Type: Numeric
- Default Value:
7
- Range:
0
to7
- Introduced: MariaDB 10.4.2
wsrep_load_data_splitting
- Description: If set to
ON
(the default for MariaDB 10.4.2 and before), LOAD DATA INFILE supports big data files by introducing transaction splitting. The setting has been deprecated in Galera 4, and defaults toOFF
from MariaDB 10.4.3. - Commandline:
--wsrep-load-data-splitting[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
(>= MariaDB 10.4.3),ON
(<= MariaDB 10.4.2) - Deprecated: MariaDB 10.4.2
- Removed: MariaDB 11.5
wsrep_log_conflicts
- Description: If set to
ON
(OFF
is default), details of conflicting MDL as well as InnoDB locks in the cluster will be logged. - Commandline:
--wsrep-log-conflicts[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
wsrep_max_ws_rows
- Description: Maximum permitted number of rows per writeset. Before MariaDB Galera 10.0.27 and MariaDB 10.1.17 this variable was ignored internally and had no effect on the node. From MariaDB Galera 10.0.27 and MariaDB 10.1.17 support for this variable has been added and in order to be backward compatible the default value has been changed to
0
, which essentially allows writesets to be any size. - Commandline:
--wsrep-max-ws-rows=#
- Scope: Global
- Dynamic: Yes
- Data Type: Numeric
- Default Value:
0
(>= MariaDB Galera 10.0.27, MariaDB 10.1.17)131072
(<= MariaDB Galera 10.0.26, MariaDB 10.1.16)
- Range:
0
to1048576
wsrep_max_ws_size
- Description: Maximum permitted size in bytes per writeset. Writesets exceeding this will be rejected. Note that versions from and before MariaDB 10.1.17 and MariaDB Galera 10.0.27 permitted the maximum to be set beyond 2GB, which was rejected by Galera.
- Commandline:
--wsrep-max-ws-size=#
- Scope: Global
- Dynamic: Yes
- Data Type: Numeric
- Default Value:
2147483647
(2GB, >= MariaDB Galera 10.0.27, MariaDB 10.1.17)1073741824
(1GB, <= MariaDB Galera 10.0.26, MariaDB 10.1.16)
- Range:
1024
to2147483647
wsrep_mode
- Description: Turns on WSREP features which are not part of default behavior.
- BINLOG_ROW_FORMAT_ONLY: Only ROW binlog format is supported.
- DISALLOW_LOCAL_GTID: Nodes can have GTIDs for local transactions in a number of scenarios. If DISALLOW_LOCAL_GTID is set, these operations produce an error ERROR HY000: Galera replication not supported. Scenarios include:
- A DDL statement is executed with wsrep_OSU_method=RSU set.
- A DML statement writes to a non-InnoDB table.
- A DML statement writes to an InnoDB table with wsrep_on=OFF set.
- REPLICATE_ARIA: Whether or not DML updates for Aria tables will be replicated. This functionality is experimental and should not be relied upon in production systems.
- REPLICATE_MYISAM: Whether or not DML updates for MyISAM tables will be replicated. This functionality is experimental and should not be relied upon in production systems.
- REQUIRED_PRIMARY_KEY: Table should have PRIMARY KEY defined.
- STRICT_REPLICATION: Same as the old wsrep_strict_ddl setting.
- Commandline:
--wsrep-mode=value
- Scope: Global
- Dynamic: Yes
- Data Type: Enumeration
- Default Value: (Empty)
- Valid Values:
BINLOG_ROW_FORMAT_ONLY
,DISALLOW_LOCAL_GTID
,REQUIRED_PRIMARY_KEY
,REPLICATE_ARIA
,REPLICATE_MYISAM
andSTRICT_REPLICATION
- Introduced: MariaDB 10.6.0
wsrep_mysql_replication_bundle
- Description: Determines the number of replication events that are grouped together. Experimental implementation aimed to assist with bottlenecks when a single replica faces a large commit time delay. If set to
0
(the default), there is no grouping. - Commandline:
--wsrep-mysql-replication-bundle=#
- Scope: Global
- Dynamic: No
- Data Type: Numeric
- Default Value:
0
- Range:
0
to1000
wsrep_node_address
- Description: Specifies the node's network address, in the format
ip address[:port]
. As of MariaDB 10.1.8, supports IPv6. The default behavior is for the node to pull the address of the first network interface on the system and the default Galera port. This autoguessing can be unreliable, particularly in the following cases:- cloud deployments
- container deployments
- servers with multiple network interfaces.
- servers running multiple nodes.
- network address translation (NAT).
- clusters with nodes in more than one region.
- See also wsrep_provider_options -> gmcast.listen_addr
- Commandline:
--wsrep-node-address=value
- Scope: Global
- Dynamic: No
- Data Type: String
- Default Value: Primary network address, usually
eth0
with a default port of 4567, or0.0.0.0
if no IP address.
wsrep_node_incoming_address
- Description: This is the address from which the node listens for client connections. If an address is not specified or it's set to
AUTO
(default), mysqld uses either --bind-address or --wsrep-node-address, or tries to get one from the list of available network interfaces, in the same order. See also wsrep_provider_options -> gmcast.listen_addr. - Commandline:
--wsrep-node-incoming-address=value
- Scope: Global
- Dynamic: No
- Data Type: String
- Default Value:
AUTO
wsrep_node_name
- Description: Name of this node. This name can be used in wsrep_sst_donor as a preferred donor. Note that multiple nodes in a cluster can have the same name.
- Commandline:
--wsrep-node-name=value
- Scope: Global
- Dynamic: Yes
- Data Type: String
- Default Value: The server's hostname.
wsrep_notify_cmd
- Description: Command to be executed each time the node state or the cluster membership changes. Can be used for raising an alarm, configuring load balancers and so on. See the Codership Notification Script page for more details.
- Commandline:
--wsrep-notify-command=value
- Scope: Global
- Dynamic:
- No (>= MariaDB 10.5.9, MariaDB 10.4.18, MariaDB 10.3.28, MariaDB 10.2.37)
- Yes (<= MariaDB 10.5.8, MariaDB 10.4.17, MariaDB 10.3.27, MariaDB 10.2.36)
- Data Type: String
- Default Value: Empty
wsrep_on
- Description: Whether or not wsrep replication is enabled. If the global value is set to
OFF
(the default since MariaDB 10.1), it is not possible to load the provider and join the node in the cluster. If only the session value is set toOFF
, the operations from that particular session are not replicated in the cluster, but other sessions and applier threads will continue as normal. The session value of the variable does not affect the node's membership and thus, regardless of its value, the node keeps receiving updates from other nodes in the cluster. Before MariaDB 10.1, even though this variable isON
by default, its value gets automatically adjusted based on whether mandatory configurations to turn on Galera replication have been specified. Since MariaDB 10.1, it is set toOFF
by default and must be turned on to enable Galera replication. - Commandline:
--wsrep-on[={0|1}]
- Scope: Global, Session
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
(>= MariaDB 10.1),ON
(<= MariaDB Galera Cluster 10.0), - Valid Values:
ON
,OFF
wsrep_OSU_method
- Description: Online schema upgrade method. The default is
TOI
, specifying the setting without the optional parameter will set toRSU
.TOI
: Total Order Isolation. In each cluster node, DDL is processed in the same order regarding other transactions, guaranteeing data consistency. However, affected parts of the database will be locked for the whole cluster.RSU
: Rolling Schema Upgrade. DDL processing is only done locally on the node, and the user needs perform the changes manually on each node. The node is desynced from the rest of the cluster while the processing takes place to avoid the blocking other nodes. Schema changes must be backwards compatible in the same way as for ROW based replication to avoid breaking replication when the DDL processing is complete on the single node, and replication recommences.
- Commandline:
--wsrep-OSU-method[=value]
- Scope: Global, Session
- Dynamic: Yes
- Data Type: Enum
- Default Value:
TOI
- Valid Values:
TOI
,RSU
wsrep_patch_version
- Description: Wsrep patch version, for example
wsrep_25.10
. - Commandline: None
- Scope: Global
- Dynamic: No
- Data Type: String
- Default Value: None
wsrep_provider
- Description: Location of the wsrep library, usually
/usr/lib/libgalera_smm.so
on Debian and Ubuntu, and/usr/lib64/libgalera_smm.so
on Red Hat/CentOS. - Commandline:
--wsrep-provider=value
- Scope: Global
- No (>= MariaDB 10.5.9, MariaDB 10.4.18, MariaDB 10.3.28, MariaDB 10.2.37)
- Yes (<= MariaDB 10.5.8, MariaDB 10.4.17, MariaDB 10.3.27, MariaDB 10.2.36)
- Data Type: String
- Default Value: None
wsrep_provider_options
- Description: Semicolon (;) separated list of wsrep options (see wsrep_provider_options).
- Commandline:
--wsrep-provider-options=value
- Scope: Global
- Dynamic: No
- Data Type: String
- Default Value: Empty
wsrep_recover
- Description: If set to
ON
when the server starts, the server will recover the sequence number of the most recent write set applied by Galera, and it will be output tostderr
, which is usually redirected to the error log. At that point, the server will exit. This sequence number can be provided to thewsrep_start_position
system variable. - Commandline:
--wsrep-recover[={0|1}]
- Scope: Global
- Dynamic: No
- Data Type: Boolean
- Default Value:
OFF
wsrep_reject_queries
- Description: Variable to set to reject queries from client connections, useful for maintenance. The node continues to apply write-sets, but an
Error 1047: Unknown command
error is generated by a client query.NONE
- Not set. Queries will be processed as normal.ALL
- All queries from client connections will be rejected, but existing client connections will be maintained.ALL_KILL
All queries from client connections will be rejected, and existing client connections, including the current one, will be immediately killed.
- Commandline:
--wsrep-reject-queries[=value]
- Scope: Global
- Dynamic: Yes
- Data Type: Enum
- Default Value:
NONE
- Valid Values:
NONE
,ALL
,ALL_KILL
- Introduced: MariaDB 10.3.6, MariaDB 10.2.14, MariaDB 10.1.32
wsrep_replicate_myisam
- Description: Whether or not DML updates for MyISAM tables will be replicated. This functionality is still experimental and should not be relied upon in production systems. Deprecated in MariaDB 10.6, and removed in MariaDB 10.7, use wsrep_mode instead.
- Commandline:
--wsrep-replicate-myisam[={0|1}]
- Scope: Global
- Dynamic: Yes
- Default Value:
OFF
- Data Type: Boolean
- Valid Values:
ON
,OFF
- Deprecated: MariaDB 10.6.0
- Removed: MariaDB 10.7.0
wsrep_restart_slave
- Description: If set to ON, the replica is restarted automatically, when node joins back to cluster.
- Commandline:
--wsrep-restart-slave[={0|1}]
- Scope: Global
- Dynamic: Yes
- Default Value:
OFF
- Data Type: Boolean
wsrep_retry_autocommit
- Description: Number of times autocommited queries will be retried due to cluster-wide conflicts before returning an error to the client. If set to
0
, no retries will be attempted, while a value of1
(the default) or more specifies the number of retries attempted. Can be useful to assist applications using autocommit to avoid deadlocks. - Commandline:
--wsrep-retry-autocommit=value
- Scope: Global
- Dynamic: No
- Data Type: Numeric
- Default Value:
1
- Range:
0
to10000
wsrep_slave_FK_checks
- Description: If set to ON (the default), the applier replica thread performs foreign key constraint checks.
- Commandline:
--wsrep-slave-FK-checks[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value: ON
wsrep_slave_threads
- Description: Number of replica threads used to apply Galera write sets in parallel. The Galera replica threads are able to determine which write sets are safe to apply in parallel. However, if your cluster nodes seem to have frequent consistency problems, then setting the value to
1
will probably fix the problem. See About Galera Replication: Galera Replica Threads for more information. - Commandline:
--wsrep-slave-threads=
# - Scope: Global
- Dynamic: Yes
- Data Type: Numeric
- Default Value:
1
- Range:
1
to512
wsrep_slave_UK_checks
- Description: If set to ON, the applier replica thread performs secondary index uniqueness checks.
- Commandline:
--wsrep-slave-UK-checks[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value: OFF
wsrep_sr_store
- Description: Storage for streaming replication fragments.
- Commandline:
--wsrep-sr-store=val
- Scope: Global
- Dynamic: No
- Data Type: Enum
- Default Value:
table
- Valid Values:
table
,none
- Introduced: MariaDB 10.4.2
wsrep_sst_auth
- Description: Username and password of the user to use for replication. Unused if wsrep_sst_method is set to
rsync
, while for other methods it should be in the format<user>:<password>
. The contents are masked in logs and when querying the value with SHOW VARIABLES. See Introduction to State Snapshot Transfers (SSTs) for more information. - Commandline:
--wsrep-sst-auth=value
- Scope: Global
- Dynamic: Yes
- Data Type: String
- Default Value: (Empty)
wsrep_sst_donor
- Description: Comma-separated list (from 5.5.33) or name (as per wsrep_node_name) of the servers as donors, or the source of the state transfer, in order of preference. The donor-selection algorithm, in general, prefers a donor capable of transferring only the missing transactions (IST) to the joiner node, instead of the complete state (SST). Thus, it starts by looking for an IST-capable node in the given donor list followed by rest of the nodes in the cluster. In case multiple candidate nodes are found outside the specified donor list, the node in the same segment (gmcast.segment) as the joiner is preferred. If none of the existing nodes in the cluster can serve the missing transactions through IST, the algorithm moves on to look for a suitable node to transfer the entire state (SST). It first looks at the nodes specified in the donor list (irrespective of their segment). If no suitable donor is still found, the rest of the donor nodes are checked for suitability only if the donor list has a "terminating-comma". Note that a stateless node (the Galera arbitrator) can never be a donor. See Introduction to State Snapshot Transfers (SSTs) for more information. [NOTE] Although the variable is dynamic, the node will not use the new value unless the node requiring SST or IST disconnects from the cluster. To force this, set wsrep_cluster_address to an empty string and back to the nodes list. After setting this variable dynamically, on startup the value from the configuration file will be used again.
- Commandline:
--wsrep-sst-donor=value
- Scope: Global
- Dynamic: Yes (read note above)
- Data Type: String
- Default Value:
wsrep_sst_donor_rejects_queries
- Description: If set to
ON
(OFF
is default), the donor node will reject incoming queries, returning anUNKNOWN COMMAND
error code. Can be used for informing load balancers that a node is unavailable. - Commandline:
--wsrep-sst-donor-rejects-queries[={0|1}]
- Scope: Global
- Dynamic: Yes
- Data Type: Boolean
- Default Value:
OFF
wsrep_sst_method
- Description: Method used for taking the state snapshot transfer (SST). See Introduction to State Snapshot Transfers (SSTs): SST Methods for more information.
- Commandline:
--wsrep-sst-method=value
- Scope: Global
- Dynamic: Yes
- Data Type: String
- Default Value:
rsync
- Valid Values:
rsync
,mysqldump
,xtrabackup
,xtrabackup-v2
,mariabackup
wsrep_sst_receive_address
- Description: This is the address where other nodes (donor) in the cluster connect to in order to send the state-transfer updates. If an address is not specified or its set to
AUTO
(default), mysqld uses --wsrep_node_address's value as the receiving address. However, if --wsrep_node_address is not set, it uses address from either --bind-address or tries to get one from the list of available network interfaces, in the same order. Note: setting it tolocalhost
will make it impossible for nodes running on other hosts to reach this node. See Introduction to State Snapshot Transfers (SSTs) for more information. - Commandline:
--wsrep-sst-receive-address=value
- Scope: Global
- Dynamic: Yes
- Data Type: String
- Default Value:
AUTO
wsrep_start_position
- Description: The start position that the node should use in the format:
UUID:seq_no
. The proper value to use for this position can be recovered withwsrep_recover
. - Commandline:
--wsrep-start-position=value
- Scope: Global
- Dynamic: Yes
- Data Type: String
- Default Value:
00000000-0000-0000-0000-000000000000:-1
wsrep_status_file
- Description: wsrep status output filename.
- Commandline:
--wsrep-status-file=value
- Scope: Global
- Dynamic: No
- Data Type: String
- Default Value: None
- Introduced: MariaDB 10.9
wsrep_strict_ddl
- Description: If set, reject DDL statements on affected tables not supporting Galera replication. This is done by checking if the table is InnoDB, which is the only table currently fully supporting Galera replication. MyISAM tables will not trigger the error if the experimental wsrep_replicate_myisam setting is
ON
. If set, should be set on all tables in the cluster. Affected DDL statements include:
CREATE TABLE (e.g. CREATE TABLE t1(a int) engine=Aria)
ALTER TABLE
TRUNCATE TABLE
CREATE VIEW
CREATE TRIGGER
CREATE INDEX
DROP INDEX
RENAME TABLE
DROP TABLE
Statements in procedures, events, and functions are permitted as the affected tables are only known at execution. Furthermore, the various USER, ROLE, SERVER and DATABASE statements are also allowed as they do not have an affected table. Deprecated in MariaDB 10.6.0 and removed in MariaDB 10.7. Use wsrep_mode=STRICT_REPLICATION instead. - Commandline:
--wsrep-strict-ddl[={0|1}
- Scope: Global
- Dynamic: Yes
- Data Type:
boolean
- Default Value:
OFF
- Introduced: MariaDB 10.5.1
- Deprecated: MariaDB 10.6.0
- Removed: MariaDB 10.7.0
wsrep_sync_wait
- Description: Setting this variable ensures causality checks will take place before executing an operation of the type specified by the value, ensuring that the statement is executed on a fully synced node. While the check is taking place, new queries are blocked on the node to allow the server to catch up with all updates made in the cluster up to the point where the check was begun. Once reached, the original query is executed on the node. This can result in higher latency. Note that when wsrep_dirty_reads is ON, values of wsrep_sync_wait become irrelevant. Sample usage (for a critical read that must have the most up-to-date data)
SET SESSION wsrep_sync_wait=1; SELECT ...; SET SESSION wsrep_sync_wait=0;
0
- Disabled (default)1
- READ (SELECT and BEGIN/START TRANSACTION). Up until MariaDB 10.2.8, MariaDB 10.1.26, MariaDB Galera 10.0.31 and MariaDB Galera 5.5.56, also SHOW). This is the same as wsrep_causal_reads=1.2
- UPDATE and DELETE;3
- READ, UPDATE and DELETE;4
- INSERT and REPLACE;5
- READ, INSERT and REPLACE;6
- UPDATE, DELETE, INSERT and REPLACE;7
- READ, UPDATE, DELETE, INSERT and REPLACE;8
- SHOW (from MariaDB 10.2.9, MariaDB 10.1.27, MariaDB Galera 10.0.32, MariaDB Galera 5.5.57)9
- READ and SHOW (from MariaDB 10.2.9, MariaDB 10.1.27, MariaDB Galera 10.0.32, MariaDB Galera 5.5.57)10
- UPDATE, DELETE and SHOW (from MariaDB 10.2.9, MariaDB 10.1.27, MariaDB Galera 10.0.32, MariaDB Galera 5.5.57)11
- READ, UPDATE, DELETE and SHOW (from MariaDB 10.2.9, MariaDB 10.1.27, MariaDB Galera 10.0.32, MariaDB Galera 5.5.57)12
- INSERT, REPLACE and SHOW (from MariaDB 10.2.9, MariaDB 10.1.27, MariaDB Galera 10.0.32, MariaDB Galera 5.5.57)13
- READ, INSERT, REPLACE and SHOW (from MariaDB 10.2.9, MariaDB 10.1.27, MariaDB Galera 10.0.32, MariaDB Galera 5.5.57)14
- UPDATE, DELETE, INSERT, REPLACE and SHOW (from MariaDB 10.2.9, MariaDB 10.1.27, MariaDB Galera 10.0.32, MariaDB Galera 5.5.57)15
- READ, UPDATE, DELETE, INSERT, REPLACE and SHOW (from MariaDB 10.2.9, MariaDB 10.1.27, MariaDB Galera 10.0.32, MariaDB Galera 5.5.57)
- Commandline:
--wsrep-sync-wait=
# - Scope: Session
- Dynamic: Yes
- Data Type: Numeric
- Default Value:
0
- Range:
0
to15
wsrep_trx_fragment_size
- Description: Size of transaction fragments for streaming replication (measured in units as specified by wsrep_trx_fragment_unit)
- Commandline:
--wsrep-trx-fragment-size=
# - Scope: Session
- Dynamic: Yes
- Data Type: numeric
- Default Value:
0
- Range:
0
to2147483647
- Introduced: MariaDB 10.4.2
wsrep_trx_fragment_unit
- Description: Unit for streaming replication transaction fragments' size:
bytes
: transaction’s binlog events buffer size in bytesrows
: number of rows affected by the transactionstatements
: number of SQL statements executed in the multi-statement transaction
- Commandline:
--wsrep-trx-fragment-unit=value
- Scope: Session
- Dynamic: Yes
- Data Type: enum
- Default Value:
bytes
- Valid Values:
bytes
,rows
orstatements
- Introduced: MariaDB 10.4.2
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.