mysql历史数据自动归档_mysql历史数据自动归档

CREATE PROCEDURE proc_archive(in i_table_source varchar(40),in i_table_target varchar(40),in i_fieldname varchar(40),in i_keepdays int,in i_archdays int,in i_other_cond varchar(500))begin

/*入参:

i_table_source:原表,含dbname

i_table_target:federated表

i_fieldname:时间字段

i_keepdays:保留天数

i_archdays:每次归档多少天数据

i_other_cond:数据额外条件(如status in (2,3)不能归档,需要保留),无额外条件则输入'1=1'

归档日志表archive_log.status字段含义:

0:成功, 1:现有数据在保留天数内, 2:目标表含有待归档时间范围的数据,

3:插入数据和删除数据记录数不同, 4:SQL执行异常,具体错误见remark

注意:

有额外条件时,如果历史数据被修改,从不符合归档条件变成符合归档条件,

因历史表中归档时间段内已经有之前归档的数据(@v_his_num_before>0),程序会退出,需手动处理*/

declare EXIT HANDLER for SQLWARNING,NOTFOUND,SQLEXCEPTIONbeginGET DIAGNOSTICS CONDITION1 @p1=RETURNED_SQLSTATE,@p2=MESSAGE_TEXT;ROLLBACK;insert intoarchive_log(tab_name,archive_date_begin,archive_date_end,status,insert_rows,delete_rows,remark)values(i_table_source,@v_arch_begin,@v_arch_end,4,@v_his_num_after,@v_del_num,concat('error',@p1,'-',@p2));end;/*获取在线表的最小日期*/

set @mystmt = concat("select str_to_date(date_format(min(",i_fieldname,"),'%Y%m%d'),'%Y%m%d') into @v_arch_begin from ",i_table_source,'where',i_other_cond);prepare stmt from @mystmt;executestmt;deallocate preparestmt;set @v_arch_end = date_add(@v_arch_begin,interval i_archdays day);set @mystmt = concat("select count(*) into @v_his_num_before from ",i_table_target," where ",i_fieldname," >= ? and ",i_fieldname," ");prepare stmt from @mystmt;execute stmt using @v_arch_begin,@v_arch_end;deallocate preparestmt;/*如果在线表的数据低于keepday范围,退出*/

if timestampdiff(day,@v_arch_begin,now()) <= i_keepdays then

insert intoarchive_log(tab_name,archive_date_begin,archive_date_end,status,insert_rows,delete_rows,remark)values(i_table_source,@v_arch_begin,@v_arch_end,1,0,0,concat('error, all data in keey days, min',i_fieldname,':',@v_arch_begin));end if;/*如果历史表所在的日期区间有数据,退出(需要手动排查原因)*/

if @v_his_num_before <> 0 then

insert intoarchive_log(tab_name,archive_date_begin,archive_date_end,status,insert_rows,delete_rows,remark)values(i_table_source,@v_arch_begin,@v_arch_end,2,0,0,concat('error, data exists,row num:',@v_his_num_before));end if;if (timestampdiff(day,@v_arch_begin,now()) > i_keepdays and @v_his_num_before = 0) then

set @mystmt = concat("insert into ",i_table_target," select * from ",i_table_source," where ",i_fieldname," >= ? and ",i_fieldname," < ? and",i_other_cond);prepare stmt from @mystmt;execute stmt using @v_arch_begin,@v_arch_end;deallocate preparestmt;/*因为federated引擎不支持事务,数据insert后再select下记录数,与下面的delete记录数对比,相同则提交delete操作*/

set @mystmt = concat("select count(*) into @v_his_num_after from ",i_table_target," where ",i_fieldname," >= ? and ",i_fieldname," ");prepare stmt from @mystmt;execute stmt using @v_arch_begin,@v_arch_end;deallocate preparestmt;

starttransaction;set @mystmt = concat("delete from ",i_table_source," where ",i_fieldname," >= ? and ",i_fieldname," < ? and",i_other_cond);prepare stmt from @mystmt;execute stmt using @v_arch_begin,@v_arch_end;set @v_del_num =row_count();deallocate preparestmt;if @v_del_num = @v_his_num_after then

commit;insert intoarchive_log(tab_name,archive_date_begin,archive_date_end,status,insert_rows,delete_rows,remark)values(i_table_source,@v_arch_begin,@v_arch_end,0,@v_his_num_after,@v_del_num,'success');else

rollback;insert intoarchive_log(tab_name,archive_date_begin,archive_date_end,status,insert_rows,delete_rows,remark)values(i_table_source,@v_arch_begin,@v_arch_end,3,@v_his_num_after,@v_del_num,'rollback, inserted rows num not equal to deleted rows num');end if;end if;end;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值