Top considerations for backup of MySQL

12
Presented by, MySQL & O’Reilly Media, Inc. Top considerations for backup of MySQL Dmitri Joukovski, Zmanda

description

Top considerations for backup of MySQL. Dmitri Joukovski, Zmanda. Why do you need to backup MySQL?. Disaster recovery Compliance requirements Protecting against user error Application testing. What are your recovery objectives?. To what point in time do you want to recover your database? - PowerPoint PPT Presentation

Transcript of Top considerations for backup of MySQL

Page 1: Top considerations for backup of MySQL

Presented by,MySQL & O’Reilly Media, Inc.

Top considerations for backup of MySQLDmitri Joukovski, Zmanda

Page 2: Top considerations for backup of MySQL

Why do you need to backup MySQL? Disaster recovery

Compliance requirements

Protecting against user error

Application testing

Page 3: Top considerations for backup of MySQL

What are your recovery objectives?

To what point in time do you want to recover your database?

Recovery Point Objective (RPO)

How much time will you have to recover your database?

Recovery Time Objective (RTO)

Page 4: Top considerations for backup of MySQL

Be ready for different types of recovery The whole server

Specific database

Specific table

Specific transactions

Page 5: Top considerations for backup of MySQL

Easy recovery = successful recovery

Make a list of possible recovery situationsOriginal locationNew hardware and same OS and MySQL

versionNew hardware and different OS

Test all of them

Actual recoveries happen under stress

Page 6: Top considerations for backup of MySQL

How much backup will impact your application? Backup window – the amount of time your

application is unavailable or degradedCold, warm and hot backup

Size of database Database activity Business requirements

Plan for backup early on

Define your backup window

Page 7: Top considerations for backup of MySQL

Do you know what to backup? Number of MySQL servers Storage engines (don’t forget about the future) Use of MySQL replication

Pay special attention to: Referential integrity MySQL versions being used Application might store data outside of MySQL

Page 8: Top considerations for backup of MySQL

What is the best time to backup? Database activity

Is there a time database is less active?Nature of activity (selects, inserts/updates)

Postpone backup if database is busy

Where do you want to backup? Not on the same spindles!

Page 9: Top considerations for backup of MySQL

How do you manage backups? Automation

Pre-backup and post-backup

SecurityEncryptionWho has the rights to recover data

technical and business rights

Page 10: Top considerations for backup of MySQL

What kind of tracking and reporting you need? Timely notifications

Backup failures

Reports about backups

Retention period of your backupsDefines how much space you needPurging expired backups

Page 11: Top considerations for backup of MySQL

What are the available solutions? Write your own script Pay $300 for MySQL recommended solution –

Zmanda Recovery Manager

Page 12: Top considerations for backup of MySQL

Takeaways Think about recovery first and be ready for different

types of recovery

Understand impact of backup on your application

Figure out what, where and when to backup

Notifications and reports will simplify your backup procedures and ensure successful recoveries