mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
DEV-17835: Remove wsrep-sst-method=xtrabackup
The use of the xtrabackup and xtrabackup-v2 methods for SST has been declared obsolete since version 10.2, now it cannot be used because of the different redo log format. Accordingly, we need to remove the xtrabackup-related scripts and dynamically replace the call to xtrabackup[-v2] to the mariabackup (with a corresponding warning in the log) when the server performs SST. https://jira.mariadb.org/browse/MDEV-17835
This commit is contained in:
@ -23,10 +23,15 @@ SET @@global.wsrep_sst_method=rsync;
|
||||
SELECT @@global.wsrep_sst_method;
|
||||
SET @@global.wsrep_sst_method=mysqldump;
|
||||
SELECT @@global.wsrep_sst_method;
|
||||
# The xtrabackup and xtrabackup-v2 methods are obsolete,
|
||||
# but we can still select them (they will be automatically
|
||||
# replaced to mariabackup):
|
||||
SET @@global.wsrep_sst_method=xtrabackup;
|
||||
SELECT @@global.wsrep_sst_method;
|
||||
SET @@global.wsrep_sst_method="xtrabackup-v2";
|
||||
SELECT @@global.wsrep_sst_method;
|
||||
SET @@global.wsrep_sst_method="mariabackup";
|
||||
SELECT @@global.wsrep_sst_method;
|
||||
SET @@global.wsrep_sst_method=default;
|
||||
SELECT @@global.wsrep_sst_method;
|
||||
|
||||
|
Reference in New Issue
Block a user