--wsrep-OSU-method
Overview
This is a command-line option for the mariadbd
& mysqld
commands (arg: Optional).
In 10.6 ES, 10.5 ES:
Method for Online Schema Upgrade. One of: TOI, RSU, NBO
In 10.6 CS, 10.5 CS, 10.4 ES, 10.4 CS, 10.3 ES, 10.3 CS, 10.2 ES, 10.2 CS:
Method for Online Schema Upgrade. One of: TOI, RSU
See also: mariadbd & mysqld 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
The wsrep-OSU-method
command-line option has the following supported values:
Value
| Description
|
TOI
|
This method uses "Total Order Isolation" mode.
In TOI mode, the DDL statement only needs to be executed on a single cluster node, and the cluster node will replicate it to all other cluster nodes. All of the cluster nodes will execute the DDL statement at the same location in the replication stream to ensure consistency. The TOI method is very safe, but it can result in more locking than other modes.
TOI is the default mode.
|
RSU
|
This method uses "Rolling Schema Upgrade" mode.
In RSU mode, the DDL statement needs to be executed on each cluster node separately. If the DDL statement causes the table to change in a way that is not backward-compatible for replication purposes, then RSU mode can lead to replication errors. Therefore, it is only recommended to use RSU mode if the specific schema change is backward-compatible for replication purposes or if write activity for the specific table has been stopped.
|
NBO
|
This method uses "Non-Blocking Operations" mode.
NBO mode is supported in MariaDB Enterprise Server 10.5 and later.
In NBO mode, the DDL statement only needs to be executed on a single cluster node, and the cluster node will replicate it to all other cluster nodes. All of the cluster nodes will execute the DDL statement at the same location in the replication stream to ensure consistency. In this way, it is similar to TOI . However, NBO mode uses much more efficient locking for some operations than TOI does.
|
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
|
|