I run mariadb on ubuntu 20.04
mysql -V gives
“mysql Ver 15.1 Distrib 10.3.25-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2”
This is the latest MariaDB version for ubuntu 20.04
On https://mariadb.com/kb/en/percona-xtrabackup-overview/, it is clearly written that xtrabackup is not compatible with mariadb 10.3
I would like to run mariabackup instead !
Is there any dev on that topic.
I saw in /usr/local/etc/urbackup/prefilebackup, that line should be modify :
xtrabackup --backup --extra-lsndir="$MARIADB_TEMP_INCRDIR/last.new" --incremental-basedir="$MARIADB_TEMP_INCRDIR/last" --target-d
ir="$MARIADB_TEMP_INCRDIR/incr_$TIMESTAMP" --user="$MARIADB_USERNAME" --password="$MARIADB_PASSWORD" $COMPACT
It seems that option --extra-lsndir does not exist in mariabackup ? Same for, --compact…
Is there a workaround ?
Thanks a lot