gh-ost版本:1.0.28

-allow-master-master

允许gh-ost运行在双主复制架构中,一般与-assume-master-host参数一起使用。

-allow-nullable-unique-key

允许gh-ost在数据迁移(migrate)依赖的唯一键可以为NULL,默认为不允许为NULL的唯一键。如果数据迁移(migrate)依赖的唯一键允许NULL值,则可能造成数据不正确,请谨慎使用。

-allow-on-master

允许gh-ost直接运行在主库上。默认gh-ost连接的从库。

-alter string

ALTER语句的body部分,如"ALTER TABLE wing ADD COLUMN id int not null default 0",使用gh-ost的-alter参数时,写成-alter ADD COLUMN id int not null default 0即可。

-approve-renamed-columns ALTER

如果你修改一个列的名字(如change column),gh-ost将会识别到并且需要提供重命名列名的原因,默认情况下gh-ost是不继续执行的,除非提供-approve-renamed-columns ALTER。

e.g:

没有添加-approve-renamed-columns ALTER参数,并且修改列名:

gh-ost -user="wing" -host="127.0.0.1" -port=3306 -database="wing" -table="t" -password="wing" -alter="change column col1 c1 int not null default 0" -assume-rbr -execute

2016-12-07 16:39:55 FATAL gh-ost believes the ALTER statement renames columns, as follows: map[col1:col11]; as precation, you are asked to confirm gh-ost is correct, and provide with --approve-renamed-columns, and we're all happy. Or you can skip renamed columns via --skip-renamed-columns, in which case column data may be lost

没有添加-approve-renamed-columns ALTER参数,并且修改列名为相同名称:

gh-ost -user="wing" -host="127.0.0.1" -port=3306 -database="wing" -table="t" -password="wing" -alter="change column c1 c1 int not null default 0" -assume-rbr -execute

Migrating wing.t; Ghost table is wing._t_gho

Migrating wing-01:3306; inspecting wing-02:3306; executing on wing-02

Migration started at Wed Dec 07 17:03:22 +0800 2016

chunk-size: 1000; max-lag-millis: 1500ms; max-load: ; critical-load: ; nice-ratio: 0.000000

throttle-additional-flag-file: /tmp/gh-ost.throttle

Serving on unix socket: /tmp/gh-ost.wing.t.sock

Copy: 0/3 0.0%; Applied: 0; Backlog: 0/100; Time: 0s(total), 0s(copy); streamer: mysql-bin.000005:62874; State: migrating; ETA: N/A

Copy: 0/3 0.0%; Applied: 0; Backlog: 0/100; Time: 1s(total), 1s(copy); streamer: mysql-bin.000005:64686; State: migrating; ETA: N/A

Copy: 3/3 100.0%; Applied: 0; Backlog: 0/100; Time: 1s(total), 1s(copy); streamer: mysql-bin.000005:64686; State: migrating; ETA: due

Copy: 3/3 100.0%; Applied: 0; Backlog: 1/100; Time: 2s(total), 1s(copy); streamer: mysql-bin.000005:69035; State: migrating; ETA: due

Migrating wing.t; Ghost table is wing._t_gho

Migrating wing-01:3306; inspecting wing-02:3306; executing on wing-02

Migration started at Wed Dec 07 17:03:22 +0800 2016

chunk-size: 1000; max-lag-millis: 1500ms; max-load: ; critical-load: ; nice-ratio: 0.000000

throttle-additional-flag-file: /tmp/gh-ost.throttle

Serving on unix socket: /tmp/gh-ost.wing.t.sock

Copy: 3/3 100.0%; Applied: 0; Backlog: 0/100; Time: 2s(total), 1s(copy); streamer: mysql-bin.000005:69759; State: migrating; ETA: due

添加-approve-renamed-columns ALTER参数,并且修改列名:

gh-ost -user="wing" -host="127.0.0.1" -port=3306 -database="wing" -table="t" -password="wing" -alter="change column col1 c1 int not null default 0" -assume-rbr -execute -approve-renamed-columns ALTER

Migrating wing.t; Ghost table is wing._t_gho

Migrating wing-01:3306; inspecting wing-02:3306; executing on wing-02

Migration started at Wed Dec 07 16:42:16 +0800 2016

chunk-size: 1000; max-lag-millis: 1500ms; max-load: ; critical-load: ; nice-ratio: 0.000000

throttle-additional-flag-file: /tmp/gh-ost.throttle

Serving on unix socket: /tmp/gh-ost.wing.t.sock

Copy: 0/3 0.0%; Applied: 0; Backlog: 0/100; Time: 0s(total), 0s(copy); streamer: mysql-bin.000005:41767; State: migrating; ETA: N/A

Copy: 0/3 0.0%; Applied: 0; Backlog: 0/100; Time: 1s(total), 1s(copy); streamer: mysql-bin.000005:43576; State: migrating; ETA: N/A

Copy: 3/3 100.0%; Applied: 0; Backlog: 0/100; Time: 1s(total), 1s(copy); streamer: mysql-bin.000005:43576; State: migrating; ETA: due

Copy: 3/3 100.0%; Applied: 0; Backlog: 1/100; Time: 2s(total), 1s(copy); streamer: mysql-bin.000005:47927; State: migrating; ETA: due

Migrating wing.t; Ghost table is wing._t_gho

Migrating wing-01:3306; inspecting wing-02:3306; executing on wing-02

Migration started at Wed Dec 07 16:42:16 +0800 2016

chunk-size: 1000; max-lag-millis: 1500ms; max-load: ; critical-load: ; nice-ratio: 0.000000

throttle-additional-flag-file: /tmp/gh-ost.throttle

Serving on unix socket: /tmp/gh-ost.wing.t.sock

Copy: 3/3 100.0%; Applied: 0; Backlog: 0/100; Time: 2s(total), 1s(copy); streamer: mysql-bin.000005:48651; State: migrating; ETA: due

-assume-master-host string

为gh-ost指定一个主库,格式为"ip:port"或者"hostname:port"。默认推荐gh-ost连接从库。

-assume-rbr

确认gh-ost连接的数据库实例的binlog_format=ROW的情况下,可以指定-assume-rbr,这样可以禁止从库上运行stop slave,start slave,执行gh-ost用户也不需要SUPER权限。

-chunk-size int

在每次迭代中处理的行数量(允许范围:100-100000),默认值为1000。

-concurrent-rowcount

该参数如果为True(默认值),则进行row-copy之后,估算统计行数(使用explain select count(*)方式),并调整ETA时间,否则,gh-ost首先预估统计行数,然后开始row-copy。

-conf string

gh-ost的配置文件路径。

-critical-load string

一系列逗号分隔的status-name=values组成,当MySQL中status超过对应的values,gh-ost将会退出。

e.g:

-critical-load Threads_connected=20,Connections=1500

指的是当MySQL中的状态值Threads_connected>20,Connections>1500的时候,gh-ost将会由于该数据库严重负载而停止并退出。

-critical-load-interval-millis int

当值为0时,当达到-critical-load,gh-ost立即退出。当值不为0时,当达到-critical-load,gh-ost会在-critical-load-interval-millis秒数后,再次进行检查,再次检查依旧达到-critical-load,gh-ost将会退出。

-cut-over string

选择cut-over类型:atomic/two-step,atomic(默认)类型的cut-over是github的算法,two-step采用的是facebook-OSC的算法。

-cut-over-lock-timeout-seconds int

gh-ost在cut-over阶段最大的锁等待时间,当锁超时时,gh-ost的cut-over将重试。(默认值:3)

-database string

数据库名称。

-debug

debug模式。

-default-retries int

各种操作在panick前重试次数。(默认为60)

-discard-foreign-keys

很危险的参数,慎用!

该参数针对一个有外键的表,在gh-ost创建ghost表时,并不会为ghost表创建外键。该参数很适合用于删除外键,除此之外,请谨慎使用。

-exact-rowcount

准确统计表行数(使用select count(*)的方式),得到更准确的预估时间。

-execute

实际执行alter&migrate表,默认为不执行,仅仅做测试并退出,如果想要ALTER TABLE语句真正落实到数据库中去,需要明确指定-execute。

-force-named-cut-over

When true, the 'unpostpone|cut-over' interactive command must name the migrated table。

-heartbeat-interval-millis int

gh-ost心跳频率值,默认为500。

-help

显示gh-ost的帮助信息。

-hooks-hint string

arbitrary message to be injected to hooks via GH_OST_HOOKS_HINT, for your convenience。

-hooks-path string

hook文件存放目录(默认为empty,即禁用hook)。hook会在这个目录下寻找符合约定命名的hook文件来执行。

-host string

数据库的ip/hostname。(默认值:127.0.0.1)。

-initially-drop-ghost-table

gh-ost操作之前,检查并删除已经存在的ghost表。该参数不建议使用,请手动处理原来存在的ghost表。默认不启用该参数,gh-ost直接退出操作。

-initially-drop-old-table

gh-ost操作之前,检查并删除已经存在的旧表。该参数不建议使用,请手动处理原来存在的ghost表。默认不启用该参数,gh-ost直接退出操作。

-initially-drop-socket-file

gh-ost强制删除已经存在的socket文件。该参数不建议使用,可能会删除一个正在运行的gh-ost程序,导致DDL失败。

-max-lag-millis int

主从复制最大延迟时间,当主从复制延迟时间超过该值后,gh-ost将采取节流(throttle)措施,默认值:1500s。

-max-load string

一系列逗号分隔的status-name=values组成,当MySQL中status超过对应的values,gh-ost将采取节流(throttle)措施。

e.g:

-max-load Threads_connected=20,Connections=1500

指的是当MySQL中的状态值Threads_connected>20,Connections>1500的时候,gh-ost将采取节流(throttle)措施。

-migrate-on-replica

gh-ost的数据迁移(migrate)运行在从库上,而不是主库上。

Have the migration run on a replica, not on the master. This will do the full migration on the replica including cut-over (as opposed to --test-on-replica)

-nice-ratio float

每次chunk时间段的休眠时间,范围[0.0...100.0]。

e.g:

0:每个chunk时间段不休眠,即一个chunk接着一个chunk执行;

1:每row-copy 1毫秒,则另外休眠1毫秒;

0.7:每row-copy 10毫秒,则另外休眠7毫秒。

-ok-to-drop-table

gh-ost操作结束后,删除旧表,默认状态是不删除旧表,会存在_tablename_del表。

-panic-flag-file string

当这个文件被创建,gh-ost将会立即退出。

-password string

MySQL密码。

-port int

MySQL端口。

-postpone-cut-over-flag-file string

当这个文件存在的时候,gh-ost的cut-over阶段将会被推迟,直到该文件被删除。

-quiet

静默模式。

-replication-lag-query string

检查主从复制延迟的SQL语句,默认gh-ost通过show slave status获取Seconds_behind_master作为主从延迟时间依据。如果使用pt-heartbeat工具,检查主从复制延迟的SQL语句类似于:

SELECT ROUND(UNIX_TIMESTAMP() - MAX(UNIX_TIMESTAMP(ts))) AS delay FROM my_schema.heartbeat;

-serve-socket-file string

gh-ost的socket文件绝对路径。

-serve-tcp-port int

gh-ost使用端口,默认为关闭端口。

-skip-renamed-columns ALTER

如果你修改一个列的名字(如change column),gh-ost将会识别到并且需要提供重命名列名的原因,默认情况下gh-ost是不继续执行的。该参数告诉gh-ost跳该列的数据迁移,让gh-ost把重命名列作为无关紧要的列。该操作很危险,你会损失该列的所有值。

e.g:

原始表数据:

mysql> select * from t;

+----+------+----+------+------+------+-------+

| id | name | c1 | col2 | col3 | col4 | col11 |

+----+------+----+------+------+------+-------+

| 1 | | 22 | 0 | 0 | 0 | 0 |

| 2 | | 22 | 0 | 0 | 0 | 0 |

| 3 | | 22 | 0 | 0 | 0 | 0 |

+----+------+----+------+------+------+-------+

执行命令:

gh-ost -user="wing" -host="127.0.0.1" -port=3306 -database="wing" -table="t" -password="wing" -alter="change column c1 col1 int not null default 0" -assume-rbr -execute -skip-renamed-columns ALTER

操作后表数据:

mysql> select * from t;

+----+------+------+------+------+------+-------+

| id | name | col1 | col2 | col3 | col4 | col11 |

+----+------+------+------+------+------+-------+

| 1 | | | 0 | 0 | 0 | 0 |

| 2 | | | 0 | 0 | 0 | 0 |

| 3 | | | 0 | 0 | 0 | 0 |

+----+------+------+------+------+------+-------+

3 rows in set (0.00 sec)

-stack

添加错误堆栈追踪。

-switch-to-rbr

让gh-ost自动将从库的binlog_format转换为ROW格式。

-table string

表名称。

-test-on-replica

在从库上测试gh-ost,包括在从库上数据迁移(migration),数据迁移完成后stop slave,原表和ghost表立刻交换而后立刻交换回来。继续保持stop slave,使你可以对比两张表。

-test-on-replica-skip-replica-stop

当-test-on-replica执行时,该参数表示该过程中不用stop slave。

-throttle-additional-flag-file string

当该文件被创建后,gh-ost操作立即停止。该参数可以用在多个gh-ost同时操作的时候,创建一个文件,让所有的gh-ost操作停止,或者删除这个文件,让所有的gh-ost操作恢复。

-throttle-control-replicas string

列出所有需要被检查主从复制延迟的从库。

e.g:

-throttle-control-replica=192.16.12.22:3306,192.16.12.23:3307,192.16.13.12:3308

-throttle-flag-file string

当该文件被创建后,gh-ost操作立即停止。该参数适合控制单个gh-ost操作。-throttle-additional-flag-file string适合控制多个gh-ost操作。

-throttle-query string

节流查询。每秒钟执行一次。当返回值=0时不需要节流,当返回值>0时,需要执行节流操作。该查询会在数据迁移(migrated)服务器上操作,所以请确保该查询是轻量级的。

-tungsten

告诉gh-ost你正在运行的是一个tungsten-replication拓扑结构。

-user string

MySQL用户。

-verbose

gh-ost运行时输出详细信息。

-version

输出gh-ost版本信息并退出。

mysql gh ost 对比_GitHub开源MySQL Online DDL工具gh-ost参数解析相关推荐

  1. pgsql处理文档类型数据_【干货总结】:可能是史上最全的MySQL和PGSQL对比材料

    关于SQL特性支持情况的对比,可以参考:http://www.sql-workbench.net/dbms_comparison.html 9. 主从复制安全性 PGSQL 同步流复制.强同步(rem ...

  2. 三个流行MySQL分支的对比

    简介 MySQL是历史上最受欢迎的免费开源程序之一.它是成千上万个网站的数据库骨干,并且可以将它(和Linux)作为过去10年里Internet呈指数级增长的一个有力证明. 那么,如果MySQL真的这 ...

  3. 开源MySQL数据仓库解决方案:Infobright

    Infobright是一款基于独特的专利知识网格技术的列式数据库.Infobright是开源的MySQL数据仓库解决方案,引入了列存储方案,高强度的数据压缩,优化的统计计算(类似sum/avg/gro ...

  4. MySQL和DB2对比

    以前长期用的MySQL,现在项目用的DB2,学习是避免不了的,那就勇往直前.在MySQL的基础上对比DB2,这样既可以巩固MySQL,又可以更快接收DB2的知识内容,所以先正一篇关于两种数据库对比的文 ...

  5. mysql mongo redis 对比

    mysql mongo redis 对比 mongo 内存数据库 更多的节点,可以保证服务器性能 数据存储为一个文档,数据结构由键值(key=>value)对组成 MongoDB 数据库为文档增 ...

  6. 建立数据库时连接出错_PHP的福音!支持多数据库连接,高性能的开源MySQL连接池...

    对于很多 PHP 开发者来说,连接数据库一直是个让人头疼的问题,那么今天 Gitee 为大家介绍的就是一款一个基于 MySQL 协议,Swoole 开发的MySQL数据库连接池. 项目名称:SMPro ...

  7. swoole mysql 协程_Swoole 协程 MySQL 客户端与异步回调 MySQL 客户端的对比

    Swoole 协程 MySql 客户端与 异步回调 MySql 客户端的对比 为什么要对比这两种不同模式的客户端? 异步 MySQL 回调客户端是虽然在 Swoole 1.8.6 版本就已经发布了, ...

  8. mysql数据采集中间件_开源 | MySQL数据传输中间件—DTLE

    目前,随着MySQL在各个行业的深入使用,在不同数据系统.不同数据中心.不同业务系统之间进行数据传输.数据订阅.形成数据总线等需求逐渐增多.爱可生推出的DTLE是一个针对MySQL的使用特点.支持多种 ...

  9. 多个mysql 环境_关于几个MySQL环境问题的对比

    有时候出现了环境问题,对比是一种很好的方式,如果对比得当,可以避免反复的出现问题,可以根据对比的情况推理出一些可能出现的情况或者问题. 如果对比不当,很可能得出错误的结论.今天就简单举几个例子来说明一 ...

最新文章

  1. 移动web开发ajax缓存操作
  2. 【每日一题】8月17日题目精讲-[SCOI2009]生日礼物
  3. Java和Round-Robin上的AtomicInteger
  4. [Leedcode][JAVA][第355题][设计推特][面向对象][哈希表][链表][优先队列]
  5. 关于SimpleDateFormat线程不安全的源码分析
  6. 2021-2025年中国丁基胶粘剂行业市场供需与战略研究报告
  7. 中国区块链开发者的热血时代来临!
  8. [知识点]C++中STL容器之set
  9. 解决 php提交表单到当前页面,刷新会重复提交 的问题
  10. HTML点击按钮弹出颜色选择器,css如何实现按钮点击与松开颜色不同?
  11. 在删除 maven 聚合工程里面的一个子项目的时候,启动项目报错:XXXpom.xml does not exist
  12. 小代码编写神器:LINQPad 使用入门
  13. Linux系统版本大全
  14. 八哥英语词根词缀汇总
  15. 1412202035-hpu-1003:C语言考试练习题_一元二次方程
  16. (ROC-RK3568-PC) 裸机23_驱动VOP2显示彩条画面
  17. 【Silvaco example】Temperature Ramping - Effect on Leakage
  18. 2022年常见遥感类期刊JCR分区与影响因子汇总
  19. uni-app运行在手机或模拟器上(使用雷电模拟器)
  20. iOS开发中解决Compiling IB documents for earlier than ios 7 is no longer supported的问题

热门文章

  1. 移动商务进入战国时代 08年市场规模达306.5亿
  2. 微信公众平台开发-java
  3. “宅一族”大数据报告:喜欢学习,喜欢健身,生活同样很精彩
  4. SSL,HTTPS,数字证书 是什么?
  5. 电脑屏幕上计算机闪烁有框,电脑显示器有点闪烁该怎么解决
  6. php引用复制,php引用和拷贝的区别
  7. python实现scp功能_如何在Python中进行scp?
  8. HBM(高带宽内存)、GDDR SDRAM(图形双倍速率同步动态随机存储器)
  9. (转贴)汉字转拼音缩写
  10. HZNUOJ 2977 宝可梦决战 种族并查集