阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

MySQL从库列类型不一致导致复制异常问题解决

126次阅读
没有评论

共计 2539 个字符,预计需要花费 7 分钟才能阅读完成。

MySQL 从库列类型不一致导致复制异常问题

slave_type_conversions  这个参数在 mysql5.5.3 引入,目的是启用 row 格式的 bin-log 的时候,如果主从的 column 的数据类型不一致,会导致复制失败,mysql5.5.3 之后支持,主库是 int 从库是 bigint 这种类型的复制,

这个参数的意义就是控制些类型转换容错性。

如果从库的字段类型范围比主库类型大,那么设置 slave_type_conversions=ALL_NON_LOSSY 后复制没有问题的。

如果从库类型比主库类型小,比如从 int 复制到 tinyint ,虽然可以通过设置slave_type_conversions=ALL_LOSSY,ALL_NON_LOSSY 让主从不出问题,但是实际上会造成数据丢失的风险。

几种值的设置:

    ALL_LOSSY允许数据截断

    ALL_NON_LOSSY不允许数据截断,如果从库类型大于主库类型,是可以复制的,反过了,就不行了,从库报复制错误,复制终止。

    ALL_LOSSY,ALL_NON_LOSSY: 所有允许的转换都会执行,而不管是不是数据丢失。

    空值 (不设置) 要求主从库的数据类型必须严格一致,否则都报错。

Mode

Effect

ALL_LOSSY

In this mode, type conversions that would mean loss of information are  permitted.

This does not  imply that non-lossy conversions are permitted, merely that only cases  requiring either lossy conversions or no conversion at all are permitted; for  example, enabling only this mode permits an INT column to be converted to TINYINT (a lossy conversion), but not a TINYINT column to an INT column (non-lossy). Attempting  the latter conversion in this case would cause replication to stop with an  error on the slave.

ALL_NON_LOSSY

This mode permits conversions that do not require truncation or other  special handling of the source value; that is, it permits conversions where  the target type has a wider range than the source type. 【确保从库的列类型更宽泛些也不会导致复制报错】

Setting this  mode has no bearing on whether lossy conversions are permitted; this is  controlled with the ALL_LOSSY mode. If  only ALL_NON_LOSSY is set,  but not ALL_LOSSY, then  attempting a conversion that would result in the loss of data (such as INT to TINYINT, or CHAR(25) to VARCHAR(20)) causes the slave to stop with an  error.

ALL_LOSSY,ALL_NON_LOSSY

When this mode is set, all supported type conversions are permitted, whether  or not they are lossy conversions.

ALL_SIGNED

Treat promoted integer types as signed values (the default behavior).

ALL_UNSIGNED

Treat promoted integer types as unsigned values.

ALL_SIGNED,ALL_UNSIGNED

Treat promoted integer types as signed if possible, otherwise as  unsigned.

[empty]

When slave_type_conversions is not  set, no attribute promotion or demotion is permitted; this means that all  columns in the source and target tables must be of the same types.

This mode is the default.

生产环境一个案例:

从库是有个 Oracle 系统去查数据的,原先从库的 cp_shop_activity 表示 utf8mb4 字符集,oracle不支持。因此在这个 从库 上手动修改了 mode 字段的字符类型为varchar(200) utf8,修改后的字段类型如下图:

MySQL 从库列类型不一致导致复制异常问题解决

但是没几天后,发现主从复制报错了,错误码1677。从库上记录的错误日志如下:

MySQL 从库列类型不一致导致复制异常问题解决

我们看下 主库的 mode 字段是 varchar(50),从库的mode 字段是varchar(200)

MySQL 从库列类型不一致导致复制异常问题解决

在从库设置:

stop slave;

set global slave_type_conversions=ALL_NON_LOSSY; 

# 默认 slave_type_conversions 为空,表示强制从库和主库的字段类型一致,不然就停止复制。设置为 ALL_NON_LOSSY 就稍微宽泛些同时确保不会造成类型转换的问题。

start slave;

show slave status\G  

这样即可解决这个问题。

官方文档:https://dev.mysql.com/doc/refman/5.6/en/replication-features-differing-tables.html

本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-04/142578.htm

正文完
星哥说事-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-22发表,共计2539字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中