oracle迁移到mysql分库分表方案之——ogg(goldengate)

发布时间:2020-07-11 12:21:42 作者:Alice9988
来源:网络 阅读:2267

之前文章主要介绍了oracle 迁移到mysql,主要是原表原结构迁移,但是实际运维中会发现,到mysql以后需要分库和分表的拆分操作,这个时候,用ogg来做,也是很强大好用的。
oracle迁移到mysql分库分表方案之——ogg(goldengate)
主要结合ogg的2个参数

参数1:filter
Use a FILTER clause to select rows based on a numeric value by using basic operators or one or more Oracle GoldenGate column-conversion functions.
NOTE To filter a column based on a string, use one of the Oracle GoldenGate string
functions or use a WHERE clause.
Syntax TABLE ,
, FILTER (
[, ON INSERT | ON UPDATE| ON DELETE]
[, IGNORE INSERT | IGNORE UPDATE | IGNORE DELETE]
, );
Or...
Syntax MAP
, TARGET
,
, FILTER (
[, ON INSERT | ON UPDATE| ON DELETE]
[, IGNORE INSERT | IGNORE UPDATE | IGNORE DELETE]
[, RAISEERROR ]
, );
Valid FILTER clause elements are the following:
An Oracle GoldenGate column-conversion function. These functions are built into
Oracle GoldenGate so that you can perform tests, manipulate data, retrieve values,
and so forth. For more information about Oracle GoldenGate conversion functions, see
“Testing and transforming data” on page 158.
Numbers
Columns that contain numbers
Functions that return numbers
Arithmetic operators:

参数2:COMPUTE
Use the @COMPUTE function to return the value of an arithmetic expression to a target column. The value returned from the function is in the form of a string.
You can omit the @COMPUTE phrase when returning the value of an arithmetic expression to another Oracle GoldenGate function, as in:
@STRNUM ((AMOUNT1 + AMOUNT2), LEFT)
The preceding returns the same result as:
@STRNUM ((@COMPUTE (AMOUNT1 + AMOUNT2), LEFT)
Arithmetic expressions can be combinations of the following elements.
Numbers
The names of columns that contain numbers
Functions that return numbers
Arithmetic operators:

2个参数的使用方法上面介绍了,下面进行分库分表

根据某业务id(sale_prod_id)进行分库分表—— 此id非主键
源端:scott.sale_date表
目标端:多库多表:
d_sale0.sale_date
d_sale1.sale_date
d_sale2.sale_date
d_sale3.sale_date
d_sale4.sale_date
d_sale5.sale_date

抽取投递进程参考上一文章,主要改变的就是应用进程的map
map scott.sale_date,target d_sale0.sale_date,FILTER (@compute( sale_prod_id \ 5)=0);
map scott.sale_date,target d_sale1.sale_date,FILTER (@compute( sale_prod_id \ 5)=1);
map scott.sale_date,target d_sale2.sale_date,FILTER (@compute( sale_prod_id \ 5)=2);
map scott.sale_date,target d_sale3.sale_date,FILTER (@compute( sale_prod_id \ 5)=3);
map scott.sale_date,target d_sale4.sale_date,FILTER (@compute( sale_prod_id \ 5)=4);

初始化未发现任何问题,实时同步发现异常dml不同步。
最终解决方案在源端:add trandata scott.sale_date COLS(sale_prod_id)----其中sale_prod_id就是分表的字段
大致原因是由于ogg同步主要以主键或者唯一键为同步基础,而此案例分表键并非主键。所以同步的时候无法以此分表键进行数据分表。

推荐阅读:
  1. 使用ogg(goldengate)方案将Oracle迁移到MySQL
  2. OGG安装之oracle2oracle

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

分库分表 oracle mysql

上一篇:device-mapper 块级重删(dm dedup) <3>代码结构(2)

下一篇:批量修改域用户拨入属性

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》