mysql(47) : 天分区表自动管理

news/2024/11/8 21:04:23/

说明
分区字段为int类型,并且为主键,如下示例的date

CREATE TABLE `mytest` (`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '(id)',`gmt_create` datetime DEFAULT NULL,`gmt_modify` datetime DEFAULT NULL,`name` varchar(50) DEFAULT NULL COMMENT '名称',`age` int DEFAULT NULL COMMENT '年龄',`sdate` int NOT NULL COMMENT '天(分区键,20231129)',PRIMARY KEY (`id`,`sdate`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci AVG_ROW_LENGTH=585 ROW_FORMAT=DYNAMIC COMMENT='';


job


import com.alibaba.gts.cdyj.task.biz.dao.mapper.PartitionManagerDayMapper;
import com.alibaba.gts.flm.common.utils.DateUtil;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.Scheduled;import javax.annotation.PostConstruct;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.List;@Configuration
@Slf4j
public class PartitionManagerDayJob {@Resourceprivate PartitionManagerDayMapper partitionManagerMapper;private static final String prefix = "p_";private static final List<Config> configs = new ArrayList<Config>() {{add(new Config("mytest", "sdate", 7));}};@PostConstructprivate void init() {handle();}/*** 0点和12点执行*/@Scheduled(cron = "0 0 0,12 * * ? ")public void task() {handle();}public void handle() {log.info("分区管理逻辑开始执行... configs.size:{}", configs.size());for (Config config : configs) {String table = config.getTable();String field = config.getField();Integer partitionCount = partitionManagerMapper.selectCountPartition(table);log.info("table:{} 分区数量:{}", table, partitionCount);if (partitionCount > 0) {// 已有分区/// 创建新分区(创建未来2天分区)for (int i = 0; i < 2; i++) {String day = DateUtil.format(System.currentTimeMillis() + 1000 * 60 * 60 * 24 * i, DateUtil.PATTERN_YYYYMMDD);if (!exist(table, prefix + day)) {partitionManagerMapper.createPartition(table, field, prefix + day, day);log.info("table:{} 创建分区:{}", table, prefix + day);}}long deleteTime = System.currentTimeMillis() - (config.getExpireDay() * 1000L * 60 * 60 * 24);String deleteDay = DateUtil.format(deleteTime, DateUtil.PATTERN_YYYYMMDD);/// 删除旧分区if (exist(table, prefix + deleteDay)) {partitionManagerMapper.deletePartition(table, prefix + deleteDay);log.info("table:{} 删除分区:{}", table, prefix + deleteDay);}} else {// 无分区// 初始化分区,初始化当前小时分区String currentDay = DateUtil.format(System.currentTimeMillis(), DateUtil.PATTERN_YYYYMMDD);partitionManagerMapper.initPartition(table, field, prefix + currentDay, currentDay);log.info("table:{} 初始化分区:{}", table, prefix + currentDay);// 创建未来4天分区for (int i = 0; i < 4; i++) {String day = DateUtil.format(System.currentTimeMillis() + 1000L * 60 * 60 * 24 * i, DateUtil.PATTERN_YYYYMMDD);if (!exist(table, prefix + day)) {partitionManagerMapper.createPartition(table, field, prefix + day, day);log.info("table:{} 创建分区:{}", table, prefix + day);}}}}log.info("分区管理逻辑执行完成");}private Boolean exist(String table, String partitionName) {return partitionManagerMapper.selectPartitionIsExist(table, partitionName) > 0;}@Data@AllArgsConstructor@NoArgsConstructorpublic static class Config {/* 表名 */private String table;/* 分区字段 */private String field;/* 多少小时后过期 */private Integer expireDay;}
}

mapper


import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;/*** @Author: liyue* @Date: 2023/04/25/15:15* @Description: 组件库*/
@Mapper
public interface PartitionManagerDayMapper {@Select("SELECT count(1) FROM INFORMATION_SCHEMA.partitions WHERE TABLE_SCHEMA = schema() AND TABLE_NAME=#{tableName}  and PARTITION_NAME is not null;")Integer selectCountPartition(@Param("tableName") String tableName);@Select("SELECT count(1) FROM INFORMATION_SCHEMA.partitions WHERE TABLE_SCHEMA = schema() AND TABLE_NAME=#{tableName} AND partition_name = #{partitionName};")Integer selectPartitionIsExist(@Param("tableName") String tableName, @Param("partitionName") String partitionName);@Update("ALTER TABLE ${tableName} DROP PARTITION ${partitionName};")int deletePartition(@Param("tableName") String tableName, @Param("partitionName") String partitionName);@Update("ALTER TABLE ${table} partition by range (${timeField})( partition ${partitionName} values less than(${partitionVal} ));")int initPartition(@Param("table") String table, @Param("timeField") String timeField, @Param("partitionName") String partitionName, @Param("partitionVal") String partitionVal);@Update("ALTER TABLE ${table}  ADD PARTITION ( partition ${partitionName} values less than(${partitionVal} ))")int createPartition(@Param("table") String table, @Param("timeField") String timeField, @Param("partitionName") String partitionName, @Param("partitionVal") String partitionVal);
}


http://www.ppmy.cn/news/1255045.html

相关文章

Excel如何比较两列数据的不同

当遇到exel有两个列表的数据&#xff0c;需要比较得到他们的不同的部分&#xff0c;并且得到一个不同的值的列表。示例如下&#xff1a; 目的是&#xff1a;通过比较&#xff0c;知道Column2的哪些值不在在Column1里。 WPS直接提供了这一个功能&#xff0c;如下图&#xff1a;…

leetcode (力扣) 154. 寻找旋转排序数组中的最小值 I+II (二分法)

文章目录 题目描述思路分析完整代码 题目描述 已知一个长度为 n 的数组&#xff0c;预先按照升序排列&#xff0c;经由 1 到 n 次 旋转 后&#xff0c;得到输入数组。例如&#xff0c;原数组 nums [0,1,2,4,5,6,7] 在变化后可能得到&#xff1a; 若旋转 4 次&#xff0c;则可以…

《凤凰项目》读书笔记

文章目录 一、书名和作者二、书籍概览2.1 主要论点和结构2.2 目标读者和应用场景 三、核心观点与主题3.1 DevOps的核心原则与文化变革3.2 持续交付与自动化3.3 变更管理与风险控制3.4 关键绩效指标与持续改进 四、亮点与启发4.1 最有影响的观点4.2 对个人专业发展的启示 五、批…

微信小程序实现watch监听数值改变的效果

前言 需要用到Javascript中的Object.defineProperty()方法&#xff0c;实现劫持对象的get/set指令&#xff0c;从而监听到对象的赋值(调用setter)&#xff0c;达到监听数值改变效果 示例 监听变量方法&#xff1a; function watchData(pageData, key, fn) {var oldVal pag…

Docker、Kubernetes、OCI、CRI-O、containerd、runc 之间的关系以及它们是如何一起工作的?

最近网上看到一张图片&#xff0c;能够很清晰地展现出 Docker、Kubernetes、OCI、CRI-O、containerd、runc 之间的关系以及它们是如何在一起工作的&#xff0c;如下&#xff1a; 本文可以作为之前一篇文章&#xff08;《K8s、Docker、CRI、OCI 之间的爱恨情仇》&#xff09;的…

Python快速实现BMI(身体质量指数)计算器(窗口界面形式)

BMI是身体质量指数&#xff08;Body Mass Index&#xff09;的缩写&#xff0c;是一种衡量人体肥胖程度的指标。它是根据人的身高和体重计算得出的&#xff0c;公式为&#xff1a; BMI 体重&#xff08;kg&#xff09;/ 身高^2&#xff08;m&#xff09; 其中&#xff0c;体…

【算法】直接插入排序

目录 1. 说明2. 举个例子3. java代码示例4. java示例截图 1. 说明 1.直接插入排序的方式和打牌一样&#xff0c;刚开始数组为空 2.拿到一个数字后从左到右将它与数组中的每一个数字进行比较&#xff0c;然后插入合适的位置 3.到最后&#xff0c;数组按照既定的顺序排序好 2. 举…

【SpringMVC】Spring Web MVC入门(一)

文章目录 前言什么是Spring Web MVC&#xff1f;什么是MVC什么是Spring MVC&#xff1f; Spring Boot 和 Spring MVC 的区别什么是Spring Boot&#xff1f;关系和区别 Spring MVC 学习注解介绍1. SpringBootApplication2. RestController3. RequestMapping3.1 RequestMapping 使…