pt-table-sync 使用方法【转】

时间:2022-02-21 00:16:38

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= --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= --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= --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= --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= --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= --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= --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

pt-table-sync 使用方法【转】的更多相关文章

  1. Oracle使用Sql把XML解析成表(Table)的方法

    SELECT * FROM XMLTABLE('$B/DEAL_BASIC/USER_DEAL_INFO' PASSING XMLTYPE('<?xml version="1.0&qu ...

  2. 汇总常用的jQuery操作Table tr td方法

    虽然现在DIV+CSS进行页的布局大行其道,但是很多地方使用table还是有很多优势,用table展示数据是比较方便的,下面汇总了jQuery操作Table tr td常用的方法,熟记这些操作技巧,下 ...

  3. mysqldump&colon; Couldn&&num;39&semi;t execute &&num;39&semi;show table status &&num;39&semi;解决方法

    执行:[root@host2 lamp]# mysqldump -F -R -E --master-data=2   -p -A --single-transaction 在控制台端出现 mysqld ...

  4. thinkphp中SQLSTATE&lbrack;42S02&rsqb;&colon; Base table or view not found&colon; 1146 Table错误解决方法

    随手记录下今天在thinkphp3.2.3中遇到的错误SQLSTATE[42S02]: Base table or view not found: 1146 Table 'test.file_info ...

  5. Android使用Sugar ORM创建数据库报no such table&colon;&period;&period;&period;的解决方法

    在学习使用Android开源框架Sugar ORM时,只是做了开始的创建数据库的操作就报出如下的异常信息 android.database.sqlite.SQLiteException: no suc ...

  6. Incorrect key file for table错误解决方法

    问题现象: alter table portal_app_xxxx_xxx add devno varchar(64) NOT NULL DEFAULT '' COMMENT '设备机编',add s ...

  7. bootstrap Table的使用方法

    1.官网 url:http://bootstrap-table.wenzhixin.net.cn/zh-cn/documentation/ 文档包含了表格属性.列属性.事件.方法等等. 2.引入库 只 ...

  8. lua中&comma;两种json和table互转方法的效率比较

    lua中json和table的互转,是我们在平时开发过程中经常用到的.比如: 在用lua编写的服务器中,如果客户端发送json格式的数据,那么在lua处理业务逻辑的时候,必然需要转换成lua自己的数据 ...

  9. &lpar;转载&rpar;html中table的使用方法

      colspan表示该一储存格向右打通的栏数. rowspan表示该一储存格向下打通的栏数. colspan是表示横向合并单元格,colspan=“3”表示水平合并三个td rowspan是表示竖直 ...

  10. 对EJB返回的AaaryList显示到table的处理方法

      1. ArrayList --> Object[]        ArrayList x = new ArrayList();        int i = x.size();        ...

随机推荐

  1. Window通过cmd查看端口占用、相应进程、杀死进程

       在windows下启动程序时候经常出现端口占用, 修改本程序端口是一种解决思路,但是更多时候希望直接杀掉占用端口的程序: 一. 查看所有进程占用的端口 在开始-运行-cmd,输入: netsta ...

  2. python &ast;args &ast;&ast;kwargs

    简单来说,当你传入的参数不能确定是几个的时候会用到 *args和**kwargs,这里星号后边只是个代号,你写成a也可以. 而这两者的区别是 如果是键值对就要用后者,反之前者就可以. 同时还可以用(a ...

  3. java的eclipse操作和常用类Object的使用

    1.eclipse的快捷键: (1)alt + /   内容辅助. 如:main+alt + / 会出现完整的main方法. syso+alt+ / 会输出. 如编写某个方法时,只需写入方法名 + a ...

  4. 在Chrome Console中加载jQuery

    var jq = document.createElement('script'); jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1/j ...

  5. Visual Studio 2013中c&num;语言规范5&period;0

    文件位置 vs安装路径 "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC#\Specifications\2052\CSharp ...

  6. linux 文件描述符

    文件描述符是什么?和文件句柄有啥区别?文件描述符是linux/unix操作系统中特有的概念.相当于windows系统中的文件句柄.一个意思不同叫法.Linux系统中, 每当进程打开一个文件时,系统就为 ...

  7. 【Linux】linux中文本操作利器grep&comma;awk&comma;sed

    grep命令 grep(global search regular expression)是一种强大的文本搜索工具,它可以使用正则表达式搜索文本,并把匹配的行打印出来.平时搜索文本中内容的时候是非常方 ...

  8. page&lowbar;cleaner&colon; 1000ms intended loop took 4724ms&period; The settings might not be optimal&period; &lpar;flushed&equals;1037&comma; during the time&period;&rpar;

    2018-07-09T14:28:56.853600Z 0 [Note] InnoDB: page_cleaner: 1000ms intended loop took 4724ms. The set ...

  9. 面试简单整理之JVM

    194.说一下 jvm 的主要组成部分?及其作用? JVM内存分为“堆”.“栈”和“方法区”三个区域,分别用于存储不同的数据. 堆内存用于存储使用new关键字所创建的对象: 栈内存用于存储程序运行时在 ...

  10. 在移动端如何用swiper实现导航栏效果

    我们在写移动端的时候会有滑动和点击导航后滑动到目标页面功能:而这个功能如果自己写的话会很麻烦,所以我在这推荐一下swiper这个插件. 其实swiper中的官网中也有这种功能的实现,但是我认为是有点麻 ...