mariadb/man
Brandon Nesterenko c132bce1a1 MDEV-20119: Implement the --do-domain-ids, --ignore-domain-ids, and --ignore-server-ids options for mysqlbinlog
New Feature:
============
Extend mariadb-binlog command-line tool to allow for filtering
events using GTID domain and server ids. The functionality mimics
that of a replica server’s DO_DOMAIN_IDS, IGNORE_DOMAIN_IDS, and
IGNORE_SERVER_IDS from CHANGE MASTER TO. For completeness, this
patch additionally adds the option --do-server-ids as an alias for
--server-id, which now accepts a list of server ids instead of a
single one.

Example usage:
  mariadb-binlog --do-domain-ids=2,3,4 --do-server-ids=1,3
  master-bin.000001

Functional Notes:
 1. --do-domain-ids cannot be combined with --ignore-domain-ids
 2. --do-server-ids cannot be combined with --ignore-server-ids
 3. A domain id filter can be combined with a server id filter
 4. When any new filter options are combined with the
--gtid-strict-mode option, events from excluded domains/servers are
not validated.
 5. Domain/server id filters can be combined with GTID ranges (i.e.
specifications of --start-position and --stop-position). However,
because the --stop-position option implicitly undertakes filtering
to only output events within its range of domains, when combined
with --do-domain-ids or --ignore-domain-ids, output will consist of
the intersection between the filters. Specifically, with
--do-domain-ids and --stop-position, only events with domain ids
present in both argument lists will be output. Conversely, with
--ignore-domain-ids and --stop-position, only events with domain ids
present in the --stop-position and absent from the
--ignore-domain-ids options will be output.

Reviewed By
============
Andrei Elkin <andrei.elkin@mariadb.com>
2022-04-19 11:09:24 -06:00
..
aria_chk.1 Fix various spelling errors still found in code 2021-03-22 18:10:39 +11:00
aria_dump_log.1
aria_ftdump.1
aria_pack.1
aria_read_log.1 Fix various spelling errors still found in code 2021-03-22 18:10:39 +11:00
aria_s3_copy.1 Add man page for new command aria_s3_copy 2020-07-08 12:24:55 +03:00
CMakeLists.txt MDEV-22552: mytop packaging 2021-10-25 12:15:49 +02:00
comp_err.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
galera_new_cluster.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
galera_recovery.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
innochecksum.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mariabackup.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mariadb-conv.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mariadb-service-convert.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mbstream.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
msql2mysql.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
my_print_defaults.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
my_safe_process.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
myisam_ftdump.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
myisamchk.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
myisamlog.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
myisampack.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
myrocks_hotbackup.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql-stress-test.pl.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql-test-run.pl.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql.1 Merge 10.5 into 10.6 2021-10-13 13:28:12 +03:00
mysql.server.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_client_test.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_client_test_embedded.1
mysql_config.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_convert_table_format.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_embedded.1
mysql_find_rows.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_fix_extensions.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_install_db.1 Remove --upgrade-info option from mysql_upgrade 2022-01-27 14:52:08 +02:00
mysql_ldb.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_plugin.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_secure_installation.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_setpermission.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_tzinfo_to_sql.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysql_upgrade.1 Merge branch '10.5' into 10.6 2022-02-03 17:01:31 +01:00
mysql_waitpid.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqlaccess.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqladmin.1 Merge 10.5 into 10.6 2022-02-17 14:37:17 +02:00
mysqlbinlog.1 MDEV-20119: Implement the --do-domain-ids, --ignore-domain-ids, and --ignore-server-ids options for mysqlbinlog 2022-04-19 11:09:24 -06:00
mysqlcheck.1 MDEV-14974: --port ignored for --host=localhost 2021-05-11 11:50:41 -06:00
mysqld.8 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqld_multi.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqld_safe.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqld_safe_helper.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqldump.1 MDEV-28074 mysqldump --order-by-size 2022-04-12 11:32:02 +03:00
mysqldumpslow.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqlhotcopy.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqlimport.1 MDEV-14974: --port ignored for --host=localhost 2021-05-11 11:50:41 -06:00
mysqlshow.1 MDEV-14974: --port ignored for --host=localhost 2021-05-11 11:50:41 -06:00
mysqlslap.1 MDEV-14974: --port ignored for --host=localhost 2021-05-11 11:50:41 -06:00
mysqltest.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
mysqltest_embedded.1
mytop.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
perror.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
replace.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
resolve_stack_dump.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
resolveip.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
wsrep_sst_common.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
wsrep_sst_mariabackup.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
wsrep_sst_mysqldump.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
wsrep_sst_rsync.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00
wsrep_sst_rsync_wan.1 Update 10.6 man pages 2020-05-16 10:32:11 +02:00