~gl-az/percona-xtrabackup/2.1-encrypted_stream

« back to all changes in this revision

Viewing changes to innobackupex

  • Committer: jenkins at percona
  • Date: 2013-01-22 00:51:16 UTC
  • mfrom: (483.1.1 bug1100008-2.1)
  • Revision ID: jenkins@jenkins.percona.com-20130122005116-39axocveze2yyrc2
MergeĀ lp:~hrvojem/percona-xtrabackup/bug1100008-2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
2529
2529
#  MariaDB 5.1.* - xtrabackup
2530
2530
#  MariaDB 5.2.* - xtrabackup
2531
2531
#  MariaDB 5.3.* - xtrabackup
2532
 
#  Percona Server >= 11.0 - xtrabackup
 
2532
#  Percona Server 5.0 - xtrabackup_51
 
2533
#  Percona Server 5.1 - xtrabackup
 
2534
#  Percona Server 5.5 - xtrabackup_55
2533
2535
#  MySQL 5.5.* - xtrabackup_55
2534
2536
#  MariaDB 5.5.* - xtrabackup_55
2535
2537
 
2809
2811
 
2810
2812
=item --no-lock
2811
2813
 
2812
 
Use this option to disable table lock with "FLUSH TABLES WITH READ LOCK". Use it only if ALL your tables are InnoDB and you DO NOT CARE about the binary log position of the backup.
 
2814
Use this option to disable table lock with "FLUSH TABLES WITH READ LOCK". Use it only if ALL your tables are InnoDB and you DO NOT CARE about the binary log position of the backup. This option shouldn't be used if there are any DDL statements being executed or if any updates are happening on non-InnoDB tables (this includes the system MyISAM tables in the mysql database), otherwise it could lead to an inconsistent backup. If you are considering to use --no-lock because your backups are failing to acquire the lock, this could be because of incoming replication events preventing the lock from succeeding. Please try using --safe-slave-backup to momentarily stop the replication slave thread, this may help the backup to succeed and you then don't need to resort to using this option.
2813
2815
 
2814
2816
=item --no-timestamp
2815
2817
 
2830
2832
 
2831
2833
=item --redo-only
2832
2834
 
2833
 
This option is passed directly to xtrabackup's --apply-log-only option. This forces xtrabackup to skip the "rollback" phase and do a "redo" only. This is necessary if the backup will have incremental changes applied to it later. See the xtrabackup documentation for details. 
 
2835
This option should be used when preparing the base full backup and when merging all incrementals except the last one. This option is passed directly to xtrabackup's --apply-log-only option. This forces xtrabackup to skip the "rollback" phase and do a "redo" only. This is necessary if the backup will have incremental changes applied to it later. See the xtrabackup documentation for details. 
2834
2836
 
2835
2837
=item --rsync
2836
2838