If there are thousands of tables and slow IO then Xtrabackup can spend a lot of time opening all the tablespaces
Bug #1130145 reported by
Ovais Tariq
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Percona XtraBackup moved to https://jira.percona.com/projects/PXB |
Fix Released
|
Medium
|
Sergei Glushchenko | ||
2.0 |
Fix Released
|
High
|
Sergei Glushchenko | ||
2.1 |
Fix Released
|
Medium
|
Sergei Glushchenko |
Bug Description
Xtrabackup opens all the tablespaces as a part of its booting process. With innodb_
I was wondering about the possibility of skipping the tablespace opening step when doing the backup, this will speed up the Xtrabackup boot process and will specially be helpful for partial backups.
Related branches
lp://staging/~sergei.glushchenko/percona-xtrabackup/2.0-bug1130145
- Alexey Kopytov (community): Approve
-
Diff: 813 lines (+310/-42)7 files modifiedpatches/innodb51.patch (+48/-6)
patches/innodb51_builtin.patch (+48/-6)
patches/innodb55.patch (+47/-5)
patches/innodb56.patch (+54/-12)
patches/xtradb51.patch (+50/-7)
patches/xtradb55.patch (+47/-5)
src/xtrabackup.cc (+16/-1)
lp://staging/~sergei.glushchenko/percona-xtrabackup/2.1-bug1130145
- Alexey Kopytov (community): Approve
-
Diff: 692 lines (+262/-36)6 files modifiedpatches/innodb51.patch (+48/-6)
patches/innodb55.patch (+47/-5)
patches/innodb56.patch (+54/-12)
patches/xtradb51.patch (+50/-7)
patches/xtradb55.patch (+47/-5)
src/xtrabackup.cc (+16/-1)
To post a comment you must log in.
In the presence of thousands of tables, it can be checked if a
higher value of innodb-open-files helps here (since by default
it is a LRU of size 768) and if xtrabackup checks that variable.