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.观察,验证数据正确性