【业务系列】面对大表的归档处理
短信预约 信息系统项目管理师 报名、考试、查分时间动态提醒
可以搞个存储过程:
create table history_tmp like history;
maxid=select max(id) from history;
minid=select id from history where addtime>"2013-01-01 00:00" order by addtime asc limit 1;
last=0;
set autocommit=1;
for(i=minid;i=last and id=last and id<=maxid;
alter table history rename to history_2012;
alter table history_tmp rename to history;
unlock tables;
commit;
缺点:
- insert into history_tmp select * from history where id>=last and id<=maxid; 可能会超时吗?
- insert into history_tmp select * from history where id>=last and id<=maxid; 如果不是按Pk 索引,是一些过期的券的dealine 时间,效率如何?
面对上面的手工触发器,安全性很低。 下面推荐这款工具:
- Percona pt-archiver重构版--大表数据归档工具 希望能帮到你节省磁盘成本。
- Mydumper
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341