sebastianfeldmann / phpbu

PHP Backup Utility - Creates and encrypts database and file backups, syncs your backups to other servers or cloud services and assists you monitor your backup process
https://phpbu.de
Other
1.29k stars 110 forks source link

Consider adding support for MariaDB `mariabackup` #380

Open petecooper opened 2 months ago

petecooper commented 2 months ago

https://mariadb.com/kb/en/mariabackup-overview/

Mariabackup is an open source tool provided by MariaDB for performing physical online backups of InnoDB, Aria and MyISAM tables. For InnoDB, “hot online” backups are possible. It was originally forked from Percona XtraBackup 2.3.8. It is available on Linux and Windows.

https://mariadb.com/kb/en/mariadb-dump/

The mariadb-dump client can be used to dump a database or a collection of databases for backup or transfer to another database server (not necessarily MariaDB or MySQL). The dump typically contains SQL statements to create the table, populate it, or both.

Please consider adding official support for mariabackup, in a similar vein to the xtrabackup option.

Thank you.