定时备份日志数据(MySQL版)
2021/10/16 19:11:50
本文主要是介绍定时备份日志数据(MySQL版),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
日志数据往往都非常的大,查询起来非常的慢,可进行分表。一种方式是在记录日志时进行按月分表,另一种是使用定时任务把前面的数据按月分表。本文介绍第二种方式(只展示关键代码):
public void backupSystemLog() { log.info("开始进行日志备份..."); long start = System.currentTimeMillis(); //备份指定月份前的数据 Calendar c = Calendar.getInstance(); Integer logMonth = 6;//推荐在配置文件配置 String backupTablePrefix = "sys_log";//推荐在配置文件配置 c.add(Calendar.MONTH, -logMonth); //获取指定月份前的日期 String lastDateStr = cn.hutool.core.date.DateUtil.formatDate(c.getTime()); //根据日期查询数据并生成日期字符串 List<String> tableNames = systemLogDao.selectTableNameMonth(lastDateStr); if (CollectionUtil.isNotEmpty(tableNames)) { List<Map<String, Object>> list = new ArrayList<>(); tableNames.stream().forEach(item -> { Map<String, Object> map = new HashMap<>(); map.put("month", item); map.put("tableName", backupTablePrefix + item); list.add(map); }); //先把指定的数据备份,然后删除此数据 systemLogDao.backupSystemLog(list); } long end = System.currentTimeMillis(); log.info("日志备份完成,所用时间:{} ms", end - start); }
上述使用java代码方式获取指定月份前的日期进行日志的备份。sql的脚本如下(结合mybatis):
<!--备份数据--> <select id="backupSystemLog"> <foreach collection="list" item="item"> create table ${item.tableName} as select * from sys_log where DATE_FORMAT(create_time, '%Y%m') = #{item.month}; delete from sys_log where DATE_FORMAT(create_time, '%Y%m') = #{item.month}; </foreach> </select> <!--根据月份查询表名--> <select id="selectTableNameMonth" resultType="String"> select distinct DATE_FORMAT(create_time, '%Y%m') from sys_log where DATE_FORMAT(create_time, '%Y-%m-%d') < #{endDate} </select>
完成这些功能,剩下的就是使用定时任务,每月1一号去执行这个方法即可。
这篇关于定时备份日志数据(MySQL版)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-19Mysql安装教程:新手必看的详细安装指南
- 2024-11-18Mysql安装入门:新手必读指南
- 2024-11-18MySQL事务MVCC原理入门详解
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南