初次提交代码

This commit is contained in:
2026-01-11 15:33:22 +08:00
commit 6603c6f4a1
455 changed files with 32175 additions and 0 deletions
@@ -0,0 +1,122 @@
package com.common.schedule;
import com.common.service.PartitionTableService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import com.common.service.PartitionTableService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
public class PartitionTableSchedule {
private static final Logger logger = LoggerFactory.getLogger(PartitionTableSchedule.class);
@Autowired
private PartitionTableService partitionTableService;
/**
* 每月15日凌晨1点执行
* cron表达式: 秒 分 时 日 月 周
*/
@Scheduled(cron = "0 0 1 15 * ?")
public void createNextMonthPartitionTables() {
logger.info("开始执行创建下个月分区表任务...");
try {
int partitionCount = partitionTableService.getNextMonthPartitionCount();
logger.info("需要创建 {} 个分区表", partitionCount);
partitionTableService.createNextMonthPartitionTable();
logger.info("创建下个月分区表任务完成");
} catch (Exception e) {
logger.error("定时创建分区表任务失败: {}", e.getMessage(), e);
}
}
/**
* 测试任务 - 每分钟执行一次(开发环境使用)
* 生产环境注释或删除此方法
*/
//@Scheduled(cron = "0 * * * * ?")
public void testCreatePartitionTables() {
logger.info("测试任务: 开始创建分区表...");
partitionTableService.createNextMonthPartitionTable();
logger.info("测试任务: 分区表创建完成");
}
/**
* 每天检查一次分区表状态(可选)
*/
@Scheduled(cron = "0 0 2 * * ?")
public void checkPartitionTableStatus() {
logger.info("开始检查分区表状态...");
// 这里可以添加分区表状态检查逻辑
logger.info("分区表状态检查完成");
}
/**
* 每天检查第二天的分区表状态 - 凌晨2点执行
*/
@Scheduled(cron = "0 0 2 * * ?")
public void checkTomorrowPartitionTable() {
logger.info("开始检查第二天的分区表状态...");
try {
PartitionTableService.PartitionTableStatus status =
partitionTableService.checkTomorrowPartitionTable();
if (status.isExists()) {
logger.info("第二天分区表已存在: {}", status.getTableName());
} else if (status.isCreated()) {
logger.info("第二天分区表创建成功: {}", status.getTableName());
} else {
logger.warn("第二天分区表检查异常: {}", status.getMessage());
// 这里添加告警通知,比如发送邮件、短信等
//sendAlertNotification(status);
}
} catch (Exception e) {
logger.error("检查第二天分区表失败: {}", e.getMessage(), e);
}
}
/**
* 每周一检查未来7天的分区表状态
*/
@Scheduled(cron = "0 0 3 * * MON")
public void checkNextWeekPartitionTables() {
logger.info("开始检查未来7天的分区表状态...");
try {
List<PartitionTableService.PartitionTableStatus> statusList = partitionTableService.checkFuturePartitionTables(7);
int missingCount = 0;
for (PartitionTableService.PartitionTableStatus status : statusList) {
if (!status.isExists()) {
missingCount++;
logger.warn("未来分区表缺失: {}", status.getTableName());
}
}
if (missingCount > 0) {
logger.warn("发现 {} 个未来分区表缺失", missingCount);
// 可以触发自动创建或发送告警
} else {
logger.info("未来7天分区表状态正常");
}
} catch (Exception e) {
logger.error("检查未来分区表失败: {}", e.getMessage(), e);
}
}
}