首页 > 其他分享 >迁移数据从A表到B表

迁移数据从A表到B表

时间:2023-03-23 17:12:08浏览次数:29  
标签:写新表 表到 开关 xx 迁移 数据 id

1.写一个异步线程,同步数据from a -> b
2.比对数据的差异性
select b.*
from A a right join B b
on a.xx_id = b.xx_id and b.is_deleted = 0
where a.xx_id is null and b.xx_id is not null ORDER BY b.gmt_create desc

3.开启定时任务,同步新增的数据。同时,rpc接口设置有读、写
新表的开关,开关打开。
另外,消息处理器,也设置有读、写新表的开关,打开。
4.观察,验证数据正确性

标签:写新表,表到,开关,xx,迁移,数据,id
From: https://www.cnblogs.com/parkdifferent/p/17248175.html

相关文章