This option specifies which xtrabackup binary should be used. The
option accepts a string argument. IBBACKUP-BINARY should be the
command used to run XtraBackup. The option can be useful if the
xtrabackup binary is not in your search path or working directory.
If this option is not specified, innobackupex attempts to determine
the binary to use automatically. By default, "xtrabackup" is the
command used. However, when option --copy-back is specified,
"xtrabackup_51" is the command used. And when option --apply-log is
specified, the binary is used whose name is in the file
"xtrabackup_binary" in the backup directory, if that file exists.
--include=REGEXP
This option is a regular expression to be matched against table
names in databasename.tablename format. It is passed directly to
xtrabackup's --tables option. See the xtrabackup documentation for
details.
--incremental
This option tells xtrabackup to create an incremental backup, rather
than a full one. It is passed to the xtrabackup child process. When
this option is specified, either --incremental-lsn or
--incremental-basedir can also be given. If neither option is given,
option --incremental-basedir is passed to xtrabackup by default, set
to the first timestamped backup directory in the backup base
directory.
--incremental-basedir=DIRECTORY
This option specifies the directory containing the full backup that
is the base dataset for the incremental backup. The option accepts a
string argument. It is used with the --incremental option.
--incremental-dir=DIRECTORY
This option specifies the directory where the incremental backup
will be combined with the full backup to make a new full backup. The
option accepts a string argument. It is used with the --incremental
option.
--incremental-force-scan
This options tells xtrabackup to perform full scan of data files for
taking an incremental backup even if full changed page bitmap data
is available to enable the backup without the full scan.
--log-copy-interval
This option specifies time interval between checks done by log
copying thread in milliseconds.
--incremental-lsn
This option specifies the log sequence number (LSN) to use for the
incremental backup. The option accepts a string argument. It is used
with the --incremental option. It is used instead of specifying
--incremental-basedir. For databases created by MySQL and Percona
Server 5.0-series versions, specify the LSN as two 32-bit integers
in high:low format. For databases created in 5.1 and later, specify
the LSN as a single 64-bit integer.
--move-back
Move all the files in a previously made backup from the backup
directory to the actual datadir location. Use with caution, as it
removes backup files.
--no-lock
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-Inno