Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.2.7
-
FreeBSD 11.1
Description
I am running mariadb 10.2.7 mulit-master with 3 nodes.
On the joiner node, I get the following error:
mbstream: Can't create/write to file './ib_logfile0' (Errcode: 2 "No such file or directory")
mbstream: failed to create file.
2017/09/13 12:23:03 socat[77169] E write(1, 0x801e46f40, 8192): Broken pipe
++ RC=(${PIPESTATUS[@]})
I tried to change the streaming method to tar in wsrep_sst_mariabackup and it seems mariabackup only support xbstream.
Attachments
Issue Links
- causes
-
MDEV-15355 upgrade to 10.1.31 break Galera SST/IST transfer
-
- Closed
-
- is blocked by
-
MDEV-14030 Remove or Merge wsrep_sst_mariabackup
-
- Closed
-
- relates to
-
MDEV-13478 Full SST sync fails because of the error in the cleaning part
-
- Closed
-
I have made it work.
It's a bug in wsrep_sst_mariabackup.
The SST script first clean up everything before the the backup begins.
The problem is that it creates the .ssh directory and then runs the cleanup.
Simple fix is move 'mkdir -p ${DATA}/.ssh' after the cleanup.
rm -rf ${DATA}/.sst
fi
+
+
mkdir -p ${DATA}/.sst
jpid=$!
-
-
binlog_dir=$(dirname $tempdir)