/usr/bin/mysqlrplsync is in mysql-utilities 1.6.1-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | #!/usr/bin/python
#
# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
"""
This file contains the replication synchronization checker utility. It is used
to check the data consistency between master and slaves (and synchronize the
data if requested by the user).
"""
from mysql.utilities.common.tools import check_python_version
# Check Python version compatibility
check_python_version()
import os
import sys
from mysql.utilities.command.rpl_sync_check import check_data_consistency
from mysql.utilities.common.messages import (
ERROR_MASTER_IN_SLAVES, PARSE_ERR_OPT_REQ_OPT,
PARSE_ERR_OPT_REQ_NON_NEGATIVE_VALUE, PARSE_ERR_OPT_REQ_GREATER_VALUE,
PARSE_ERR_OPT_REQ_VALUE, PARSE_ERR_OPTS_EXCLD,
PARSE_ERR_SLAVE_DISCO_REQ
)
from mysql.utilities.common.options import (add_discover_slaves_option,
add_master_option,
add_slaves_option,
add_ssl_options, add_verbosity,
check_server_lists,
db_objects_list_to_dictionary,
setup_common_options,
check_password_security)
from mysql.utilities.common.server import check_hostname_alias, Server
from mysql.utilities.common.tools import check_connector_python
from mysql.utilities.common.topology import parse_topology_connections
from mysql.utilities.exception import UtilError, UtilRplError
# Check for connector/python
if not check_connector_python():
sys.exit(1)
# Constants
NAME = "MySQL Utilities - mysqlrplsync"
DESCRIPTION = "mysqlrplsync - replication synchronization checker utility"
USAGE = ("%prog --master=user:pass@host:port --slaves=user:pass@host:port \\\n"
" [<db_name>[.<tbl_name>]]")
EXTENDED_HELP = """
Introduction
------------
The mysqlrplsync utility is designed to check if replication servers with
GTIDs enabled are synchronized. In other words, it checks the data consistency
between a master and a slave or between two slaves.
The utility permits you to run the check while replication is active. The
synchronization algorithm is applied using GTID information to identify those
transactions that differ (missing, not read, etc.) between the servers. During
the process, the utility waits for the slave to catch up to the master to
ensure all GTIDs have been read prior to performing the data consistency
check.
Note: if replication is not running (e.g., all slaves are stopped), the
utility can still perform the check, but the step to wait for the slave to
catch up to the master will be skipped. If you want to run the utility on a
stopped replication topology, you should ensure the slaves are up to date
first.
By default, all data is included in the comparison. To check specific
databases or tables, list each element as a separated argument for the
utility using full qualified names as shown in the following examples.
# Check the data consistency of a replication topology, explicitly
# specifying the master and slaves.
$ mysqlrplsync --master=root:pass@host1:3306 \\
--slaves=rpl:pass@host2:3306,rpl:pass@host3:3306
# Check the data consistency of a replication topology, specifying the
# master and using the slaves discovery feature.
$ mysqlrplsync --master=root:pass@host1:3306 \\
--discover-slaves-login=rpl:pass
# Check the data consistency only between specific slaves (no check
# performed on the master).
$ mysqlrplsync --slaves=rpl:pass@host2:3306,rpl:pass@host3:3306
# Check the data consistency of a specific database (db1) and table
# (db2.t1), explicitly specifying master and slaves.
$ mysqlrplsync --master=root:pass@host1:3306 \\
--slaves=rpl:pass@host2:3306,rpl:pass@host3:3306 \\
db1 db2.t1
# Check the data consistency of all data excluding a specific database
# (db2) and table (db1.t2), specifying the master and using slave
# discovery.
$ mysqlrplsync --master=root:pass@host1:3306 \\
--discover-slaves-login=rpl:pass --exclude=db2,db1.t2
Helpful Hints
-------------
- The default timeout for performing the table checksum is 5 seconds.
This value can be changed with the --checksum-timeout option.
- The default timeout for waiting for slaves to catch up is 300 seconds.
This value can be changed with the --rpl-timeout option.
- The default interval to periodically verify if a slave has read all of
the GTIDs from the master is 3 seconds. This value can be changed
with the --interval option.
"""
if __name__ == '__main__':
# Setup the command parser (with common options).
parser = setup_common_options(os.path.basename(sys.argv[0]),
DESCRIPTION, USAGE, server=False,
extended_help=EXTENDED_HELP)
# Add the --discover-slaves-login option.
add_discover_slaves_option(parser)
# Add the --master option.
add_master_option(parser)
# Add the --slaves option.
add_slaves_option(parser)
# Add the --ssl options
add_ssl_options(parser)
# Add verbosity option (no --quite option).
add_verbosity(parser, False)
# Add timeout options.
parser.add_option("--rpl-timeout", action="store", dest="rpl_timeout",
type="int", default=300,
help="maximum timeout in seconds to wait for "
"synchronization (slave waiting to catch up to "
"master). Default = 300.")
parser.add_option("--checksum-timeout", action="store",
dest="checksum_timeout", type="int", default=5,
help="maximum timeout in seconds to wait for CHECKSUM "
"query to complete. Default = 5.")
# Add polling interval option.
parser.add_option("--interval", "-i", action="store", dest="interval",
type="int", default="3", help="interval in seconds for "
"polling slaves for sync status. Default = 3.")
# Add option to exclude databases/tables check.
parser.add_option("--exclude", action="store", dest="exclude",
type="string", default=None,
help="databases or tables to exclude. Example: "
"<db_name>[.<tbl_name>]. List multiple names in a "
"comma-separated list.")
# Parse the options and arguments.
opt, args = parser.parse_args()
# Check security settings
check_password_security(opt, args)
# At least one of the options --discover-slaves-login or --slaves is
# required.
if not opt.discover and not opt.slaves:
parser.error(PARSE_ERR_SLAVE_DISCO_REQ)
# The --discover-slaves-login and --slaves options cannot be used
# simultaneously (only one).
if opt.discover and opt.slaves:
parser.error(PARSE_ERR_OPTS_EXCLD.format(
opt1='--discover-slaves-login', opt2='--slaves'
))
if opt.discover and not opt.master:
parser.error(PARSE_ERR_OPT_REQ_OPT.format(
opt="--discover-slaves-login",
opts="--master"
))
# Check timeout values, must be greater than zero.
if opt.rpl_timeout < 0:
parser.error(
PARSE_ERR_OPT_REQ_NON_NEGATIVE_VALUE.format(opt='--rpl-timeout')
)
if opt.checksum_timeout < 0:
parser.error(
PARSE_ERR_OPT_REQ_NON_NEGATIVE_VALUE.format(
opt='--checksum-timeout'
)
)
# Check interval value, must be greater than zero.
if opt.interval < 1:
parser.error(PARSE_ERR_OPT_REQ_GREATER_VALUE.format(opt='--interval',
val='zero'))
# Check slaves list (master cannot be included in slaves list).
if opt.master:
check_server_lists(parser, opt.master, opt.slaves)
# Parse the master and slaves connection parameters (no candidates).
try:
master_val, slaves_val, _ = parse_topology_connections(
opt, parse_candidates=False
)
except UtilRplError:
_, err, _ = sys.exc_info()
sys.stderr.write("ERROR: {0}\n".format(err.errmsg))
sys.exit(1)
# Check host aliases (master cannot be included in slaves list).
if master_val:
for slave_val in slaves_val:
if check_hostname_alias(master_val, slave_val):
master = Server({'conn_info': master_val})
slave = Server({'conn_info': slave_val})
parser.error(
ERROR_MASTER_IN_SLAVES.format(master_host=master.host,
master_port=master.port,
slaves_candidates="slaves",
slave_host=slave.host,
slave_port=slave.port)
)
# Process list of databases/tables to exclude (check format errors).
data_to_exclude = {}
if opt.exclude:
exclude_list = [val for val in opt.exclude.split(',') if val]
data_to_exclude = db_objects_list_to_dictionary(parser, exclude_list,
'the --exclude option')
elif opt.exclude == '':
# Issue an error if --exclude is used with no value.
parser.error(PARSE_ERR_OPT_REQ_VALUE.format(opt='--exclude'))
# Process list of databases/tables to include (check format errors).
data_to_include = {}
if args:
data_to_include = db_objects_list_to_dictionary(parser, args,
'the database/table '
'arguments')
# Create dictionary of options
options = {
'discover': opt.discover,
'verbosity': 0 if opt.verbosity is None else opt.verbosity,
'rpl_timeout': opt.rpl_timeout,
'checksum_timeout': opt.checksum_timeout,
'interval': opt.interval,
}
# Create a replication synchronizer and check the topology's consistency.
issues_found = 0
try:
issues_found = check_data_consistency(master_val, slaves_val, options,
data_to_include, data_to_exclude)
except UtilError:
_, err, _ = sys.exc_info()
sys.stderr.write("ERROR: {0}\n".format(err.errmsg))
sys.exit(1)
# Exit with the appropriate status.
if issues_found == 0:
sys.exit(0)
else:
sys.exit(1)
|