pt-table-sync 使用方法【转】
28. pt-table-sync
28.1 pt-table-sync 作用
使用对两个库不一致的数据进行同步,他能够自动发现两个实例间不一致的数据,然后进行sync操作,pt-table-sync无法同步表结构,和索引等对象,只能同步数据。
可能大家多数使用该工具来解决主从数据不一致的问题,其实他的功能不止于此,也可以用来对两个不在一个主从拓扑实例,进行数据sync。
NOTE1:如果是sync主从数据,只有当需要sync的表都有唯一键(主键或唯一索引),才能使用--sync-to-master and/or --replicate。(没有唯一键,则只能在desitination上直接修改,而指定--sync-to-master and/or –replicate时只能在主库上修改),如果sync主从时没有指定--replicate或者--sync-to-master则所有修改都在从库上执行(不论表上是否有唯一键)
28.2 常用参数
常用参数请参考:pt-table-sync 中文使用说明
http://blog.csdn.net/shaochenshuo/article/details/53285439
28.3 使用示例
28.3.1 sync两个独立数据库(非主从)
1)以75为source,76为desitination,同步所有的库和表
pt-table-sync --charset=utf8--ignore-databases=mysql,sys,percona dsn=u=root,p=root,h=172.172.178.75,P=3306 dsn=u=root,p=root,h=172.172.178.76,P=3306 --execute --print
2) 同步指定库或者指定表
只对指定的库进行sync
pt-table-sync --charset=utf8--ignore-databases=mysql,sys,percona --databases=test1 --no-check-slave dsn=u=root,p=root,h=172.172.178.75,P=3306 dsn=u=root,p=root,h=172.172.178.76,P=3306 --execute --print
只对指定的表进行sync(也可以--tables=test5.test_nu)
pt-table-sync --charset=utf8--ignore-databases=mysql,sys,percona --databases=test5 --tables=test_nu --no-check-slave dsn=u=root,p=root,h=172.172.178.75,P=3306 dsn=u=root,p=root,h=172.172.178.76,P=3306 --execute --print
1) 忽略某些库或者忽略某些表
忽略库
--ignore-databases=指定要忽略的库
忽略表
pt-table-sync --charset=utf8--ignore-databases=mysql,sys,percona --ignore-tables=test5.test_nu --no-check-slave dsn=u=root,p=root,h=172.172.178.75,P=3306 dsn=u=root,p=root,h=172.172.178.76,P=3306 --execute --print
28.3.2 sync主从数据
1)没有唯一键(主键或唯一索引)
pt-table-sync --charset=utf8--ignore-databases=mysql,sys,percona --no-check-slave dsn=u=root,p=root,h=172.172.178.75,P=3306 dsn=u=root,p=root,h=172.172.178.76,P=3306 --execute --print
##只比对76同75的数据,对差异数据进行sync
可以指定多个从库
pt-table-sync --charset=utf8--ignore-databases=mysql,sys,percona --no-check-slave dsn=u=root,p=root,h=172.172.178.75,P=3306 dsn=u=root,p=root,h=172.172.178.76,P=3306 dsn=u=root,p=root,h=172.172.178.77,P=3306 --execute –print
##比对76同75;77同75的数据,对差异进行sync
NOTE1:在执行sync之前,我们可以指定—print(不要指定--execute)来查看pt-table-sync会进行哪些修改
NOTE2:执行sync操作时,指定忽略mysql等系统数据库(information_schema,performance_schema会自动被忽略)
NOTE3:指定--no-check-slave不检查desitination是否为从库,否则报如下错误:
Can't make changes onA=utf8,P=3306,h=172.172.178.76,p=... because it's a slave. See thedocumentation section 'REPLICATION SAFETY'
NOTE4:此种情况下修改都在从库上进行(不论表是否有唯一键)
2) 有唯一键(有唯一键时,可以使用--sync-to-master and/or –replicate进行主从sync)
pt-table-sync --execute --sync-to-master--charset=utf8 --ignore-databases=mysql,sys,percona --no-check-slave dsn=u=root,p=root,h=172.172.178.76,P=3306 --print
NOTE1:在执行sync之前,我们可以指定--print来查看pt-table-sync会进行哪些修改
NOTE2:执行sync操作时,指定忽略mysql等系统数据库(information_schema,performance_schema会自动被忽略)
NOTE3:如果表上没有唯一索引,则无法在主库执行replace操作,会报如下错此种情况不能指定--replicate或者--sync-to-master
Can'tmake changes on the master because no unique index exists at/usr/bin/pt-table-sync line 10663. whiledoing test1.test_concat on 172.172.178.76
NOTE4:指定了--replicate(指定dsn为主)或者--sync-to-master(指定dsn为从)只能为命令行指定一个dsn
相关链接:
pt-table-sync 中文使用说明
http://blog.csdn.net/shaochenshuo/article/details/53285439
pt-table-checksum 中文使用说明
http://blog.csdn.net/shaochenshuo/article/details/53098224
pt-table-checksum 使用方法
http://blog.csdn.net/shaochenshuo/article/details/56009092
---------------------
转自
作者:database_shaofei
来源:CSDN
原文:https://blog.csdn.net/shaochenshuo/article/details/56009234
版权声明:本文为博主原创文章,转载请附上博文链接!
锁表参数
--lock
type: int
Lock tables: 0=none, 1=per sync cycle, 2=per table, or 3=globally.
This uses "LOCK TABLES". This can help prevent tables being changed while you’re examiningthem.
是否锁表:0不锁;
1,只锁检查的块,检查完毕解锁,为下个块加锁
2, 加锁和解锁每单个要检查的表
3, 使用命令FLUSH TABLES WITH READ LOCK进行全局读锁定;
---------------------
作者:老王笔记
来源:CSDN
原文:https://blog.csdn.net/JSWANGCHANG/article/details/79501452
版权声明:本文为博主原创文章,转载请附上博文链接!
pt-table-sync笔记 - 默默前行 - CSDN博客 https://blog.csdn.net/JSWANGCHANG/article/details/79501452?utm_source=blogxgwz6
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?