如何保证某个程序系统内只运行一个,保证原子性

java 复制代码
	@GetMapping("/startETL")
//	@Idempotent(expireTime = 90, info = "请勿90秒内连续点击")
	public R getGaugeTestData6() {
		log.info("start ETL");
		//redis设置t_data_load_record 值为2
		bladeRedis.set("t_data_load_record_type", 2);
		String s = atomicityService.startETL();
		return R.data(s);
	}
java 复制代码
@Slf4j
@Service
public class AtomicityService {


	@Autowired
	private DataSourceService dataSourceService;


	// 使用 AtomicBoolean 作为互斥标志
	private final AtomicBoolean isExecuting = new AtomicBoolean(false);
	private final AtomicBoolean isExecutingForXRRJ = new AtomicBoolean(false);

	public String startETL() {
		if (isExecuting.compareAndSet(false, true)) {
			try {
				long startTime = System.currentTimeMillis(); // 记录开始时间
				ETLExecutionThreadLocal.setStartTime(startTime);
				// 执行 ETL 任务的具体逻辑
				//查询已经存在的数据的 批次号和站点号 做排除用
				List batchSiteList = dataSourceService.ReadBatchSiteList();
				List<Long> batchList = dataSourceService.ReadBatchList();
				List<Long> testerList = null;//测试人还是全删除吧,不要做增量查询,否则有些人被更新过信息进不来
				//读取数据源
				dataSourceService.ReadDataSource(batchSiteList, batchList, testerList);
				long endTime = System.currentTimeMillis();
				long executionTimeSeconds = (endTime - startTime) / 1000; // 计算用时(秒)
				return "ETL执行成功,用时:" + executionTimeSeconds + "秒";
			} finally {
				isExecuting.set(false);
			}
		} else {
			// 如果定时任务执行期间有手动执行请求,则驳回
			log.info("任务已经在执行中,本次请求被驳回");
			return "任务已经在执行中,本次请求被驳回";
		}
	}

定时任务在此与其共用一个程序,两者不可同时执行

java 复制代码
package org.springblade.etl.source.task;

import lombok.extern.slf4j.Slf4j;
import org.springblade.core.redis.cache.BladeRedis;
import org.springblade.core.tool.api.R;
import org.springblade.etl.source.service.AtomicityService;
import org.springblade.etl.source.service.DataSourceService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import javax.annotation.Resource;
import java.util.List;
import java.util.Map;

@Component
@Slf4j
public class ETLJob {

	// 注入 dataSourceService
	@Resource
	private AtomicityService atomicityService;

	@Resource
	private BladeRedis bladeRedis;
	@Scheduled(cron = "0 0 1 * * ?") // 每天凌晨1点执行一次
	public void executeETL() {
		// 执行 startETL 方法
		log.info("Scheduled ETL job started");
		bladeRedis.set("t_data_load_record_type", 1);
		R result = getGaugeTestData6();
		log.info("ETL job finished with result: " + result);
	}

	// 在此处定义 getGaugeTestData6 方法的具体实现
	public R getGaugeTestData6() {
		log.info("start for Scheduled ETL job");
		atomicityService.startETL();
		return R.data("success for Scheduled ETL job");
	}


//	@Scheduled(cron = "0/1 * * * * ?") // 每秒执行一次
//	public void executeTestJob() {
//		log.info("定时任务执行测试");
//	}
}
相关推荐
我登哥MVP9 天前
走进 Gang of Four 设计模式:访问者模式
java·设计模式·访问者模式·原型模式
学究天人10 天前
数学公理体系大全:第五章 序数与基数理论:超限算术与集合的大小
人工智能·线性代数·算法·机器学习·数学建模·原型模式
学究天人10 天前
数学公理体系大全:第六章 选择公理的等价形式及证明
人工智能·线性代数·算法·机器学习·数学建模·概率论·原型模式
学究天人11 天前
数学公理体系大全:Comprehensive Collection of Mathematical Axiom Systems(补充卷9)
人工智能·线性代数·算法·数学建模·动态规划·原型模式·抽象代数
geovindu12 天前
CSharp: Prototype Pattern
开发语言·后端·设计模式·.net·原型模式·创建型模式
Seven凹凸Man12 天前
WorkBuddy之产品经理原型设计及PRD实战
ai·原型模式
ttod_qzstudio13 天前
【软考设计模式】原型模式:“克隆“对象与深拷贝、浅拷贝精讲
设计模式·原型模式
希冀12317 天前
【JavaScript】Javascript—JS进阶—Day03
开发语言·javascript·原型模式
想吃火锅10051 个月前
【前端手撕】instanceof
前端·javascript·原型模式
UXbot1 个月前
帮助企业低门槛开展AI应用开发的平台推荐
前端·低代码·ui·交互·产品经理·原型模式·web app