Upload database backup from mysql to Amazon S3 or Glacier without creating local file
- by Rubem Azenha
Is there a tool that makes possible to backup a Mysql database to Amazon S3 or Amazon Glacier without having o create a local file with the database contents?
Something like that:
mysqldump -u root -ppass -h host --all-databases | magical-s3-tool s3-bucket backup-yyyy-mm-dd.sql
This magical tool would use the pipe data and transfer the backup data directly to S3, without creating a local file.