-
Notifications
You must be signed in to change notification settings - Fork 1
Cloudera MySQL Backups
-
The MySQL instance used by Cloudera is located on the cdh-manager host.
-
The MySQL login and password are stored in the Ansible* vault.
-
The backup script is scheduled to run automatically; log information is stored in syslog, located in the /var/log/messages file. <br>
-
It is also possible to perform run the backup script manually by executing the script as root user:
sudo su - cd /opt/mysql_backup/ ./mysql_backup.sh
To restore MySQL databases or tables, you will need access to the AWS S3 backups bucket.
-
Download the tar.gz file containing MySQL database dumps ([environment_name]_mysql_backup_YYYY-MM-DD-hh-mm.tar.xz) from AWS S3:<br>
aws s3 cp s3://backups/[tar_file] .
<br>To list all files in the bucket: <br>
aws s3 ls s3://backups
-
Unpack the tar file:<br>
tar -xvJf [tar_file].tar.xz
To restore all databases:<br>
mysql -u[user_name] -p[password] < mysql_all_[YYYY-MM-DD-hh-mm].sql
To restore a single database:<br>
mysql -u[user_name] -p[password] < mysql_[db_name]_[YYYY-MM-DD-hh-mm].sql
To restore a single table from a database dump:<br>
(sed -n -e'/MySQL/,/Table structure for/p' mysql_[db_name]_[YYYY-MM-DD-hh-mm].sql; \
sed -n -e'/Table structure for.*`[table_name]/,/Table structure for/p' mysql_[db_name]_[YYYY-MM-DD-hh-mm].sql) \
| mysql -u[user_name] -p[password]
- [Overview of Trusted Analytics Platform](Overview of Trusted Analytics Platform)
- [Getting Started Guide](Getting Started Guide)
- Space Shuttle Demo Application
- Trusted Analytics JIRA Project
- [Building TAP from sources] (Building-TAP-from-sources)
- PaaS Architecture
- Use-cases
- [High Level Use Case](High Level Use Case)
- [Model Development for Data Scientists](Model Development for Data Scientists)
- Platform Tips and Tricks
- Platform Security Features
- Platform Configurations
- Release Notes
- Additional Deployment Information