Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
124326d8
Commit
124326d8
authored
Jun 08, 2022
by
Julius Goryavsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-28656: Inability to roll upgrade without stopping the Galera cluster
parent
c168e167
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
196 additions
and
108 deletions
+196
-108
scripts/wsrep_sst_backup.sh
scripts/wsrep_sst_backup.sh
+2
-1
scripts/wsrep_sst_common.sh
scripts/wsrep_sst_common.sh
+10
-3
scripts/wsrep_sst_mariabackup.sh
scripts/wsrep_sst_mariabackup.sh
+151
-70
scripts/wsrep_sst_rsync.sh
scripts/wsrep_sst_rsync.sh
+25
-31
sql/wsrep_sst.cc
sql/wsrep_sst.cc
+7
-3
sql/wsrep_sst.h
sql/wsrep_sst.h
+1
-0
No files found.
scripts/wsrep_sst_backup.sh
View file @
124326d8
...
@@ -72,7 +72,7 @@ then
...
@@ -72,7 +72,7 @@ then
# (c) ERROR file, in case flush tables operation failed.
# (c) ERROR file, in case flush tables operation failed.
while
[
!
-r
"
$FLUSHED
"
]
&&
\
while
[
!
-r
"
$FLUSHED
"
]
&&
\
!
grep
-q
-F
':'
--
"
$FLUSHED
"
>
/dev/null 2>&1
!
grep
-q
-F
':'
--
"
$FLUSHED
"
do
do
# Check whether ERROR file exists.
# Check whether ERROR file exists.
if
[
-f
"
$ERROR
"
]
;
then
if
[
-f
"
$ERROR
"
]
;
then
...
@@ -105,4 +105,5 @@ else # joiner
...
@@ -105,4 +105,5 @@ else # joiner
fi
fi
wsrep_log_info
"
$WSREP_METHOD
$WSREP_TRANSFER_TYPE
completed on
$WSREP_SST_OPT_ROLE
"
exit
0
exit
0
scripts/wsrep_sst_common.sh
View file @
124326d8
...
@@ -80,6 +80,7 @@ to_minuses()
...
@@ -80,6 +80,7 @@ to_minuses()
}
}
WSREP_SST_OPT_BYPASS
=
0
WSREP_SST_OPT_BYPASS
=
0
WSREP_SST_OPT_PROGRESS
=
0
WSREP_SST_OPT_BINLOG
=
""
WSREP_SST_OPT_BINLOG
=
""
WSREP_SST_OPT_BINLOG_INDEX
=
""
WSREP_SST_OPT_BINLOG_INDEX
=
""
WSREP_SST_OPT_LOG_BASENAME
=
""
WSREP_SST_OPT_LOG_BASENAME
=
""
...
@@ -187,6 +188,10 @@ case "$1" in
...
@@ -187,6 +188,10 @@ case "$1" in
'--bypass'
)
'--bypass'
)
readonly
WSREP_SST_OPT_BYPASS
=
1
readonly
WSREP_SST_OPT_BYPASS
=
1
;;
;;
'--progress'
)
readonly
WSREP_SST_OPT_PROGRESS
=
$((
$2
))
shift
;;
'--datadir'
)
'--datadir'
)
# Let's remove the trailing slash:
# Let's remove the trailing slash:
readonly
WSREP_SST_OPT_DATA
=
$(
trim_dir
"
$2
"
)
readonly
WSREP_SST_OPT_DATA
=
$(
trim_dir
"
$2
"
)
...
@@ -246,11 +251,11 @@ case "$1" in
...
@@ -246,11 +251,11 @@ case "$1" in
shift
shift
;;
;;
'--local-port'
)
'--local-port'
)
readonly
WSREP_SST_OPT_LPORT
=
"
$2
"
readonly
WSREP_SST_OPT_LPORT
=
$((
$2
))
shift
shift
;;
;;
'--parent'
)
'--parent'
)
readonly
WSREP_SST_OPT_PARENT
=
"
$2
"
readonly
WSREP_SST_OPT_PARENT
=
$((
$2
))
shift
shift
;;
;;
'--password'
)
'--password'
)
...
@@ -258,7 +263,7 @@ case "$1" in
...
@@ -258,7 +263,7 @@ case "$1" in
shift
shift
;;
;;
'--port'
)
'--port'
)
readonly
WSREP_SST_OPT_PORT
=
"
$2
"
readonly
WSREP_SST_OPT_PORT
=
$((
$2
))
shift
shift
;;
;;
'--role'
)
'--role'
)
...
@@ -531,6 +536,8 @@ else
...
@@ -531,6 +536,8 @@ else
readonly
WSREP_SST_OPT_ROLE
=
'donor'
readonly
WSREP_SST_OPT_ROLE
=
'donor'
fi
fi
readonly
WSREP_SST_OPT_PROGRESS
# The same argument can be present on the command line several
# The same argument can be present on the command line several
# times, in this case we must take its last value:
# times, in this case we must take its last value:
if
[
-n
"
${
MYSQLD_OPT_INNODB_DATA_HOME_DIR
:-}
"
-a
\
if
[
-n
"
${
MYSQLD_OPT_INNODB_DATA_HOME_DIR
:-}
"
-a
\
...
...
scripts/wsrep_sst_mariabackup.sh
View file @
124326d8
This diff is collapsed.
Click to expand it.
scripts/wsrep_sst_rsync.sh
View file @
124326d8
...
@@ -65,21 +65,21 @@ cleanup_joiner()
...
@@ -65,21 +65,21 @@ cleanup_joiner()
if
[
$failure
-eq
0
]
;
then
if
[
$failure
-eq
0
]
;
then
if
cleanup_pid
$RSYNC_REAL_PID
"
$RSYNC_PID
"
"
$RSYNC_CONF
"
;
then
if
cleanup_pid
$RSYNC_REAL_PID
"
$RSYNC_PID
"
"
$RSYNC_CONF
"
;
then
[
-f
"
$MAGIC_FILE
"
]
&&
rm
-f
"
$MAGIC_FILE
"
[
-f
"
$MAGIC_FILE
"
]
&&
rm
-f
"
$MAGIC_FILE
"
||
:
[
-f
"
$BINLOG_TAR_FILE
"
]
&&
rm
-f
"
$BINLOG_TAR_FILE
"
[
-f
"
$BINLOG_TAR_FILE
"
]
&&
rm
-f
"
$BINLOG_TAR_FILE
"
||
:
else
else
wsrep_log_warning
"rsync cleanup failed."
wsrep_log_warning
"rsync cleanup failed."
fi
fi
fi
fi
wsrep_log_info
"Joiner cleanup done."
if
[
"
$WSREP_SST_OPT_ROLE
"
=
'joiner'
]
;
then
if
[
"
$WSREP_SST_OPT_ROLE
"
=
'joiner'
]
;
then
wsrep_cleanup_progress_file
wsrep_cleanup_progress_file
fi
fi
[
-f
"
$SST_PID
"
]
&&
rm
-f
"
$SST_PID
"
||
:
[
-f
"
$SST_PID
"
]
&&
rm
-f
"
$SST_PID
"
||
:
wsrep_log_info
"Joiner cleanup done."
exit
$estatus
exit
$estatus
}
}
...
@@ -318,7 +318,7 @@ if [ -n "$SSLMODE" -a "$SSLMODE" != 'DISABLED' ]; then
...
@@ -318,7 +318,7 @@ if [ -n "$SSLMODE" -a "$SSLMODE" != 'DISABLED' ]; then
fi
fi
readonly
SECRET_TAG
=
'secret'
readonly
SECRET_TAG
=
'secret'
readonly
BYPASS_TAG
=
'
secret /
bypass'
readonly
BYPASS_TAG
=
'bypass'
SST_PID
=
"
$WSREP_SST_OPT_DATA
/wsrep_sst.pid"
SST_PID
=
"
$WSREP_SST_OPT_DATA
/wsrep_sst.pid"
...
@@ -371,10 +371,11 @@ done
...
@@ -371,10 +371,11 @@ done
[
-f
"
$MAGIC_FILE
"
]
&&
rm
-f
"
$MAGIC_FILE
"
[
-f
"
$MAGIC_FILE
"
]
&&
rm
-f
"
$MAGIC_FILE
"
[
-f
"
$BINLOG_TAR_FILE
"
]
&&
rm
-f
"
$BINLOG_TAR_FILE
"
[
-f
"
$BINLOG_TAR_FILE
"
]
&&
rm
-f
"
$BINLOG_TAR_FILE
"
RC
=
0
if
[
"
$WSREP_SST_OPT_ROLE
"
=
'donor'
]
;
then
if
[
"
$WSREP_SST_OPT_ROLE
"
=
'donor'
]
;
then
if
[
-n
"
$STUNNEL
"
]
if
[
-n
"
$STUNNEL
"
]
;
then
then
cat
<<
EOF
> "
$STUNNEL_CONF
"
cat
<<
EOF
> "
$STUNNEL_CONF
"
key =
$SSTKEY
key =
$SSTKEY
cert =
$SSTCERT
cert =
$SSTCERT
...
@@ -392,8 +393,6 @@ ${CHECK_OPT_LOCAL}
...
@@ -392,8 +393,6 @@ ${CHECK_OPT_LOCAL}
EOF
EOF
fi
fi
RC
=
0
if
[
$WSREP_SST_OPT_BYPASS
-eq
0
]
;
then
if
[
$WSREP_SST_OPT_BYPASS
-eq
0
]
;
then
FLUSHED
=
"
$WSREP_SST_OPT_DATA
/tables_flushed"
FLUSHED
=
"
$WSREP_SST_OPT_DATA
/tables_flushed"
...
@@ -410,19 +409,19 @@ EOF
...
@@ -410,19 +409,19 @@ EOF
# (c) ERROR file, in case flush tables operation failed.
# (c) ERROR file, in case flush tables operation failed.
while
[
!
-r
"
$FLUSHED
"
]
&&
\
while
[
!
-r
"
$FLUSHED
"
]
&&
\
!
grep
-q
-F
':'
--
"
$FLUSHED
"
2>/dev/null
!
grep
-q
-F
':'
--
"
$FLUSHED
"
do
do
# Check whether ERROR file exists.
# Check whether ERROR file exists.
if
[
-f
"
$ERROR
"
]
;
then
if
[
-f
"
$ERROR
"
]
;
then
# Flush tables operation failed.
# Flush tables operation failed.
rm
-f
"
$ERROR
"
rm
"
$ERROR
"
exit
255
exit
255
fi
fi
sleep
0.2
sleep
0.2
done
done
STATE
=
$(
cat
"
$FLUSHED
"
)
STATE
=
$(
cat
"
$FLUSHED
"
)
rm
-f
"
$FLUSHED
"
rm
"
$FLUSHED
"
sync
sync
...
@@ -629,6 +628,8 @@ FILTER="-f '- /lost+found'
...
@@ -629,6 +628,8 @@ FILTER="-f '- /lost+found'
wsrep_log_info
"Transfer of data done"
wsrep_log_info
"Transfer of data done"
[
-f
"
$BINLOG_TAR_FILE
"
]
&&
rm
"
$BINLOG_TAR_FILE
"
else
# BYPASS
else
# BYPASS
wsrep_log_info
"Bypassing state dump."
wsrep_log_info
"Bypassing state dump."
...
@@ -657,6 +658,8 @@ FILTER="-f '- /lost+found'
...
@@ -657,6 +658,8 @@ FILTER="-f '- /lost+found'
--archive
--quiet
--checksum
"
$MAGIC_FILE
"
\
--archive
--quiet
--checksum
"
$MAGIC_FILE
"
\
"rsync://
$WSREP_SST_OPT_ADDR
"
>
&2
||
RC
=
$?
"rsync://
$WSREP_SST_OPT_ADDR
"
>
&2
||
RC
=
$?
rm
"
$MAGIC_FILE
"
if
[
$RC
-ne
0
]
;
then
if
[
$RC
-ne
0
]
;
then
wsrep_log_error
"rsync
$MAGIC_FILE
returned code
$RC
:"
wsrep_log_error
"rsync
$MAGIC_FILE
returned code
$RC
:"
exit
255
# unknown error
exit
255
# unknown error
...
@@ -665,8 +668,8 @@ FILTER="-f '- /lost+found'
...
@@ -665,8 +668,8 @@ FILTER="-f '- /lost+found'
echo
"done
$STATE
"
echo
"done
$STATE
"
if
[
-n
"
$STUNNEL
"
]
;
then
if
[
-n
"
$STUNNEL
"
]
;
then
[
-f
"
$STUNNEL_CONF
"
]
&&
rm
-f
"
$STUNNEL_CONF
"
rm
"
$STUNNEL_CONF
"
[
-f
"
$STUNNEL_PID
"
]
&&
rm
-f
"
$STUNNEL_PID
"
[
-f
"
$STUNNEL_PID
"
]
&&
rm
"
$STUNNEL_PID
"
fi
fi
else
# joiner
else
# joiner
...
@@ -704,8 +707,7 @@ $SILENT
...
@@ -704,8 +707,7 @@ $SILENT
EOF
EOF
# If the IP is local, listen only on it:
# If the IP is local, listen only on it:
if
is_local_ip
"
$RSYNC_ADDR_UNESCAPED
"
if
is_local_ip
"
$RSYNC_ADDR_UNESCAPED
"
;
then
then
RSYNC_EXTRA_ARGS
=
"--address
$RSYNC_ADDR_UNESCAPED
"
RSYNC_EXTRA_ARGS
=
"--address
$RSYNC_ADDR_UNESCAPED
"
STUNNEL_ACCEPT
=
"
$RSYNC_ADDR_UNESCAPED
:
$RSYNC_PORT
"
STUNNEL_ACCEPT
=
"
$RSYNC_ADDR_UNESCAPED
:
$RSYNC_PORT
"
else
else
...
@@ -826,13 +828,8 @@ EOF
...
@@ -826,13 +828,8 @@ EOF
fi
fi
if
[
-n
"
$MY_SECRET
"
]
;
then
if
[
-n
"
$MY_SECRET
"
]
;
then
# Select the "secret" tag whose value does not start
# with a slash symbol. All new tags must to start with
# the space and the slash symbol after the word "secret" -
# to be removed by older versions of the SST scripts:
SECRET
=
$(
grep
-m1
-E
"^
$SECRET_TAG
[[:space:]]+[^/]"
\
--
"
$MAGIC_FILE
"
||
:
)
# Check donor supplied secret:
# Check donor supplied secret:
SECRET
=
$(
grep
-m1
-E
"^
$SECRET_TAG
[[:space:]]"
"
$MAGIC_FILE
"
||
:
)
SECRET
=
$(
trim_string
"
${
SECRET
#
$SECRET_TAG
}
"
)
SECRET
=
$(
trim_string
"
${
SECRET
#
$SECRET_TAG
}
"
)
if
[
"
$SECRET
"
!=
"
$MY_SECRET
"
]
;
then
if
[
"
$SECRET
"
!=
"
$MY_SECRET
"
]
;
then
wsrep_log_error
"Donor does not know my secret!"
wsrep_log_error
"Donor does not know my secret!"
...
@@ -842,7 +839,7 @@ EOF
...
@@ -842,7 +839,7 @@ EOF
fi
fi
if
[
$WSREP_SST_OPT_BYPASS
-eq
0
]
;
then
if
[
$WSREP_SST_OPT_BYPASS
-eq
0
]
;
then
if
grep
-m1
-qE
"^
$BYPASS_TAG
([[:space:]]+.*)?
\$
"
--
"
$MAGIC_FILE
"
;
then
if
grep
-m1
-qE
"^
$BYPASS_TAG
([[:space:]]+.*)?
\$
"
"
$MAGIC_FILE
"
;
then
readonly
WSREP_SST_OPT_BYPASS
=
1
readonly
WSREP_SST_OPT_BYPASS
=
1
readonly
WSREP_TRANSFER_TYPE
=
'IST'
readonly
WSREP_TRANSFER_TYPE
=
'IST'
fi
fi
...
@@ -850,10 +847,10 @@ EOF
...
@@ -850,10 +847,10 @@ EOF
binlog_tar_present
=
0
binlog_tar_present
=
0
if
[
-f
"
$BINLOG_TAR_FILE
"
]
;
then
if
[
-f
"
$BINLOG_TAR_FILE
"
]
;
then
binlog_tar_present
=
1
if
[
$WSREP_SST_OPT_BYPASS
-ne
0
]
;
then
if
[
$WSREP_SST_OPT_BYPASS
-ne
0
]
;
then
wsrep_log_warning
"tar with binlogs transferred in the IST mode"
wsrep_log_warning
"tar with binlogs transferred in the IST mode"
fi
fi
binlog_tar_present
=
1
fi
fi
if
[
$WSREP_SST_OPT_BYPASS
-eq
0
-a
-n
"
$WSREP_SST_OPT_BINLOG
"
]
;
then
if
[
$WSREP_SST_OPT_BYPASS
-eq
0
-a
-n
"
$WSREP_SST_OPT_BINLOG
"
]
;
then
...
@@ -867,7 +864,7 @@ EOF
...
@@ -867,7 +864,7 @@ EOF
while
read
bin_file
||
[
-n
"
$bin_file
"
]
;
do
while
read
bin_file
||
[
-n
"
$bin_file
"
]
;
do
rm
-f
"
$bin_file
"
||
:
rm
-f
"
$bin_file
"
||
:
done
<
"
$binlog_index
"
done
<
"
$binlog_index
"
rm
-f
"
$binlog_index
"
rm
"
$binlog_index
"
fi
fi
binlog_cd
=
0
binlog_cd
=
0
# Change the directory to binlog base (if possible):
# Change the directory to binlog base (if possible):
...
@@ -902,7 +899,6 @@ EOF
...
@@ -902,7 +899,6 @@ EOF
fi
fi
# Extracting binlog files:
# Extracting binlog files:
wsrep_log_info
"Extracting binlog files:"
wsrep_log_info
"Extracting binlog files:"
RC
=
0
if
tar
--version
|
grep
-qw
-E
'^bsdtar'
;
then
if
tar
--version
|
grep
-qw
-E
'^bsdtar'
;
then
tar
-tf
"
$BINLOG_TAR_FILE
"
>
"
$tmpfile
"
&&
\
tar
-tf
"
$BINLOG_TAR_FILE
"
>
"
$tmpfile
"
&&
\
tar
-xvf
"
$BINLOG_TAR_FILE
"
>
/dev/null
||
RC
=
$?
tar
-xvf
"
$BINLOG_TAR_FILE
"
>
/dev/null
||
RC
=
$?
...
@@ -912,7 +908,7 @@ EOF
...
@@ -912,7 +908,7 @@ EOF
fi
fi
if
[
$RC
-ne
0
]
;
then
if
[
$RC
-ne
0
]
;
then
wsrep_log_error
"Error unpacking tar file with binlog files"
wsrep_log_error
"Error unpacking tar file with binlog files"
rm
-f
"
$tmpfile
"
rm
"
$tmpfile
"
exit
32
exit
32
fi
fi
# Rebuild binlog index:
# Rebuild binlog index:
...
@@ -920,18 +916,16 @@ EOF
...
@@ -920,18 +916,16 @@ EOF
while
read
bin_file
||
[
-n
"
$bin_file
"
]
;
do
while
read
bin_file
||
[
-n
"
$bin_file
"
]
;
do
echo
"
$binlog_dir
${
binlog_dir
:+/
}
$bin_file
"
>>
"
$binlog_index
"
echo
"
$binlog_dir
${
binlog_dir
:+/
}
$bin_file
"
>>
"
$binlog_index
"
done
<
"
$tmpfile
"
done
<
"
$tmpfile
"
rm
-f
"
$tmpfile
"
rm
"
$tmpfile
"
cd
"
$OLD_PWD
"
cd
"
$OLD_PWD
"
fi
fi
fi
fi
# Remove special tags from the magic file, and from the output:
# Remove special tags from the magic file, and from the output:
coords
=
$(
grep
-v
-E
"^
$SECRET_TAG
[[:space:]]"
--
"
$MAGIC_FILE
"
)
coords
=
$(
head
-n1
"
$MAGIC_FILE
"
)
wsrep_log_info
"Galera co-ords from recovery:
$coords
"
wsrep_log_info
"Galera co-ords from recovery:
$coords
"
echo
"
$coords
"
# Output : UUID:seqno wsrep_gtid_domain_id
echo
"
$coords
"
# Output : UUID:seqno wsrep_gtid_domain_id
fi
fi
[
-f
"
$BINLOG_TAR_FILE
"
]
&&
rm
-f
"
$BINLOG_TAR_FILE
"
wsrep_log_info
"
$WSREP_METHOD
$WSREP_TRANSFER_TYPE
completed on
$WSREP_SST_OPT_ROLE
"
wsrep_log_info
"
$WSREP_METHOD
$WSREP_TRANSFER_TYPE
completed on
$WSREP_SST_OPT_ROLE
"
exit
0
exit
0
sql/wsrep_sst.cc
View file @
124326d8
...
@@ -998,12 +998,14 @@ static ssize_t sst_prepare_other (const char* method,
...
@@ -998,12 +998,14 @@ static ssize_t sst_prepare_other (const char* method,
WSREP_SST_OPT_ADDR
" '%s' "
WSREP_SST_OPT_ADDR
" '%s' "
WSREP_SST_OPT_DATA
" '%s' "
WSREP_SST_OPT_DATA
" '%s' "
"%s"
"%s"
WSREP_SST_OPT_PARENT
" '%d'"
WSREP_SST_OPT_PARENT
" %d "
WSREP_SST_OPT_PROGRESS
" %d"
"%s"
"%s"
"%s"
,
"%s"
,
method
,
addr_in
,
mysql_real_data_home
,
method
,
addr_in
,
mysql_real_data_home
,
wsrep_defaults_file
,
wsrep_defaults_file
,
(
int
)
getpid
(),
(
int
)
getpid
(),
0
,
binlog_opt_val
,
binlog_index_opt_val
);
binlog_opt_val
,
binlog_index_opt_val
);
my_free
(
binlog_opt_val
);
my_free
(
binlog_opt_val
);
...
@@ -1724,16 +1726,18 @@ static int sst_donate_other (const char* method,
...
@@ -1724,16 +1726,18 @@ static int sst_donate_other (const char* method,
"wsrep_sst_%s "
"wsrep_sst_%s "
WSREP_SST_OPT_ROLE
" 'donor' "
WSREP_SST_OPT_ROLE
" 'donor' "
WSREP_SST_OPT_ADDR
" '%s' "
WSREP_SST_OPT_ADDR
" '%s' "
WSREP_SST_OPT_LPORT
"
'%u'
"
WSREP_SST_OPT_LPORT
"
%u
"
WSREP_SST_OPT_SOCKET
" '%s' "
WSREP_SST_OPT_SOCKET
" '%s' "
WSREP_SST_OPT_PROGRESS
" %d "
WSREP_SST_OPT_DATA
" '%s' "
WSREP_SST_OPT_DATA
" '%s' "
"%s"
"%s"
WSREP_SST_OPT_GTID
" '%s:%lld' "
WSREP_SST_OPT_GTID
" '%s:%lld' "
WSREP_SST_OPT_GTID_DOMAIN_ID
"
'%d'
"
WSREP_SST_OPT_GTID_DOMAIN_ID
"
%d
"
"%s"
"%s"
"%s"
"%s"
"%s"
,
"%s"
,
method
,
addr
,
mysqld_port
,
mysqld_unix_port
,
method
,
addr
,
mysqld_port
,
mysqld_unix_port
,
0
,
mysql_real_data_home
,
mysql_real_data_home
,
wsrep_defaults_file
,
wsrep_defaults_file
,
uuid
,
(
long
long
)
seqno
,
wsrep_gtid_domain_id
,
uuid
,
(
long
long
)
seqno
,
wsrep_gtid_domain_id
,
...
...
sql/wsrep_sst.h
View file @
124326d8
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#define WSREP_SST_OPT_PARENT "--parent"
#define WSREP_SST_OPT_PARENT "--parent"
#define WSREP_SST_OPT_BINLOG "--binlog"
#define WSREP_SST_OPT_BINLOG "--binlog"
#define WSREP_SST_OPT_BINLOG_INDEX "--binlog-index"
#define WSREP_SST_OPT_BINLOG_INDEX "--binlog-index"
#define WSREP_SST_OPT_PROGRESS "--progress"
#define WSREP_SST_OPT_MYSQLD "--mysqld-args"
#define WSREP_SST_OPT_MYSQLD "--mysqld-args"
// mysqldump-specific options
// mysqldump-specific options
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment