This is probably the feature I missed most from early days when I
started to use InnoDB instead of MyISAM. Since that I figured out
how to survive without it, but this is first question I hear from
customers who migrated from MyISAM to InnoDB - can I just copy
.ibd files from one server to another and answer "use mysqldump"
is quite disappointed.
Jokes aside, I see real needs in this:
- when we need to restore only single table from backup
(sometimes developers kill only single table, not whole database
)
- to copy single table from production to QA environment. It may
sound not so important, but I see needs in this quite often. QA
boxes may have their own setup, not so powerful and with not
enough space, but QA still needs to have some tables in fresh
status.
- resharding databases, moving some shards from one server to
another.
So long story short end - we made new mode for XtraBackup, now it can copy and …
[Read more]