diff options
author | Brandon Nesterenko <brandon.nesterenko@mariadb.com> | 2021-09-14 12:58:04 -0600 |
---|---|---|
committer | Brandon Nesterenko <brandon.nesterenko@mariadb.com> | 2021-11-17 13:36:01 -0700 |
commit | eae109ba1f6ed9bc7dc3a3a93442b228536cc6b7 (patch) | |
tree | 29cbf2d1c894a46ef4c370799706c46688d1fd57 /man/mysqlbinlog.1 | |
parent | c9896eb15bfc11414577128d0463ef2fefb66407 (diff) | |
download | mariadb-git-bb-10.7-MDEV-20119.tar.gz |
MDEV-20119: Implement the --do-domain-ids, --ignore-domain-ids, and --ignore-server-ids options for mysqlbinlogbb-10.7-MDEV-20119
New Feature:
============
Extend mariadb-binlog command-line tool to use GTIDs for filtering
event groups by using domain id and server id as a blacklist or
whitelist. This patch additionally adds the option
--do-server-ids as an alias for --server-id for consistency.
Reviewed By:
============
<TODO>
Diffstat (limited to 'man/mysqlbinlog.1')
-rw-r--r-- | man/mysqlbinlog.1 | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/man/mysqlbinlog.1 b/man/mysqlbinlog.1 index 17c81809ce2..1e37d8b6830 100644 --- a/man/mysqlbinlog.1 +++ b/man/mysqlbinlog.1 @@ -882,11 +882,78 @@ quote the value (e.g. \fB--rewrite-db="oldname->newname"\fR\&. .sp -1 .IP \(bu 2.3 .\} +.\" mysqlbinlog: ignore-domain-ids option +.\" ignore-domain-ids option: mysqlbinlog +\fB\-\-ignore\-domain\-ids=\fR\fB\fIIDs\fR\fR +.sp +Hide events which are a part of any stream identified by the domain ID +list \fIIDs\fR\&. Cannot be used with \-\-do\-domain\-ids\&. +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04'\(bu\h'+03'\c +.\} +.el \{\ +.sp -1 +.IP \(bu 2.3 +.\} +.\" mysqlbinlog: do-domain-ids option +.\" do-domain-ids option: mysqlbinlog +\fB\-\-do\-domain\-ids=\fR\fB\fIIDs\fR\fR +.sp +Display only the events which exist in a stream identified by \fIIDs\fR\&. +Cannot be used with \-\-ignore\-domain\-ids\&. +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04'\(bu\h'+03'\c +.\} +.el \{\ +.sp -1 +.IP \(bu 2.3 +.\} +.\" mysqlbinlog: ignore-server-ids option +.\" ignore-server-ids option: mysqlbinlog +\fB\-\-ignore\-server\-ids=\fR\fB\fIIDs\fR\fR +.sp +Hide events which originated from any server whose ID is specified in +\fIIDs\fR\&. Cannot be used with \-\-do\-server\-ids\ or \-\-server\-id\&. +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04'\(bu\h'+03'\c +.\} +.el \{\ +.sp -1 +.IP \(bu 2.3 +.\} +.\" mysqlbinlog: do-server-ids option +.\" do-server-ids option: mysqlbinlog +\fB\-\-do\-server\-ids=\fR\fB\fIIDs\fR\fR +.sp +Display only the events that originated from a server identified in +\fIIDs\fR\&. Cannot be used with \-\-ignore\-server\-ids, and +synonymous with \-\-server\-id\&. +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04'\(bu\h'+03'\c +.\} +.el \{\ +.sp -1 +.IP \(bu 2.3 +.\} .\" mysqlbinlog: server-id option .\" server-id option: mysqlbinlog \fB\-\-server\-id=\fR\fB\fIid\fR\fR .sp Display only those events created by the server having the given server ID\&. +Cannot be used with \-\-ignore\-server\-ids, and synonymous with +\-\-do\-server\-ids\&. .RE .sp .RS 4 |