MySQL Online Backup: An In-Depth Introduction
MySQL Online Backup: An In-Depth Introduction
0 Backup
http://www.apress.com/book/bookDisplay.html?bID=10200
Topics
Overview
State of Development
Comparison with Existing Solutions
Architecture (brief)
Capabilities
Tips and Tricks
Future Plans
Live Demo (time permitting)
Resources
MySQL 6.0 Backup Overview
Introduction - MySQL 6.0 Backup
• SQL-driven. Run from any MySQL client
• Back up to local disk on MySQL server host
• New security privileges for backup/restore
• Blocking restore (during recovery operation)
• Non-blocking backup for storage engines supporting
consistent read (i.e. InnoDB, Falcon)
BACKUP…
Overview
Data protection and recovery
BACKUP and RESTORE basic functionality
available now
Database-level backup
table
views
stored procedures
stored functions
triggers
events
Overview
Cool! Where can I get it?
Source code can be downloaded from bk-bits:
http://mysql.bkbits.net/ - see mysql-6.0
Alpha release available soon in MySQL 6.0.5.
Latest release builds are available from:
http://www.mysql.com/download
Design Details
Available in 6.0:
Enterprise-level consistency between and within engines
Default driver for engines that don’t support backup
Consistent Snapshot driver for consistent read engines i.e. non-blocking
for DML
Storage-engine specific backup methods support for native drivers in
API
Mix logical and physical backup formats at the same time (coming
soon with MyISAM Native driver)
Streaming backup data (only to server file in first version)
Future Releases:
Pluggable, modular architecture
Versioning of interfaces and modules for future release and
backward compatibility
State of Development
Already implemented features
Enterprise-level consistency
with respect to different storage engines, server
replication state and XA.
Default blocking backup/restore driver
Consistent Snapshot non-blocking backup driver
Metadata backup (CREATE statement)
Backup kernel synchronization algorithm
Backup driver API
(forge.mysql.com/wiki/OnlineBackup)
Restore driver API
(forge.mysql.com/wiki/OnlineBackup)
Already implemented features
File storage on MySQL server host
Data transfer protocol for driver API
Streaming Format for backup image file
MyISAM backup/restore native driver
(coming soon!)
Tablespace support for Falcon (coming
soon)
No data engine backup/restore (coming
soon) e.g., blackhole, merge, etc.
Synchronization with binary log for point-
in-time recovery
Comparison with Existing Solutions
Current MySQL Backup Alternatives
MySQL Tools (non-blocking)
• mysqldump w/ --single-transaction option (InnoDB, Falcon, PBXT)
• MySQL Cluster backup (only NDB)
• Replication
• InnoDB Hot Backup (InnoDB only; commercial tool)
Backup Engine
Interface
1. SQL Control Interface – Between the MySQL client and the MySQL
server. Statements that control when a backup should be taken, show
status information, etc.
2. Backup Engine Interface – Between the backup kernel and backup
engine. Implemented in each storage engine that has data storage that
should be backed up natively.
Backup Kernel & Backup Engine
Backup Kernel Responsibilities
execute BACKUP and RESTORE SQL statements
backup/restore metadata
initialize and coordinate work of backup/restore
drivers
write/read backup archive to/from backup storage
media
Start Validation
redo log point
time
Start Scan Scan Backup
backup starts ends ends
Start
consistent Validation
snapshot point
time
Start Data Backup
backup transfer ends
mysql>
Tips and Tricks
Tips and Tricks
MySQL 6.0 is a maturing product.
…and we need your help to make it better.
BOF session: Tonight 7:30 pm Ballroom C
Topics:
Replication @ 7:30 pm
Backup @ 9:00 pm
Using MySQL 6.0 Backup in your data
protection and recovery processes.
Data protection
Recovery
Controlling backup driver selection.
Future Plans
Planned Features
Coverage for all MySQL storage engines
providing a bullet-proof backup and recovery
paradigm.
Plug-in architecture
so that engines can upgrade at runtime their
technology to do backup (today native backup
drivers are loaded together with the storage
engines)
Planned Features
Backup to other media
Standalone mysqlbackup tool
Full server, database, and enhanced point-in-
time recovery
Limitations of 6.0.5 Alpha Release
Code does not enforce referential integrity.
Backing up and restoring partial integrity sets can
lead to inconsistency.
Error handling needs more work.
Minimal blocking of DDL operations
No "atomic restore", i.e. if the restore fails in the
middle, then the server might be inconsistent
No XBSA support
No selective restores
No pipe from backup to restore
Not integrated with NDB
The restore cannot restore the mysql database or
the information_schema views.
Live Demo
Resources
References and Contacts
MySQL Forge
http://forge.mysql.com/wiki/OnlineBackup
Online Documentation
http://dev.mysql.com/doc/refman/6.0/en/backup-
database-restore.html
Contacts
Lars Thalmann (Technical Lead)
[email protected]
Rafal Somla [email protected]
Chuck Bell [email protected]
Questions?