Quartz集群增强版_00.How to use?(如何使用)
Quartz集群增强版_00.How to use?(如何使用)
开源地址 https://github.com/funnyzpc/quartz
表的基本结构
总的来说任务的配置及开发基本遵从上图的表的基本关系,除 app
以及 node
之外均需要手动手动配置,app
及 node
在执行端启动的时候会自动生成对应 app
以及 node
的数据 ~
后管配置
先看一下后管的基本页面~
因为 app
与 node
是一对多的关系,这里就放到一个page下:
-
这里需要说明的是
app
与node
一般无需新增,如果特殊情况下请参照下图:
app新增
node新增
因为node
必须关联已有的app
才可新增,新增入口在app列表
中
另外,需要说明的是:
如果执行端获取不到宿
主机IP
以及主机名称
会随机生成一个同名的主机IP
以及主机名称
,此时在管理端手动新增就毫无意义了删除
删除应用必须先删除应用关联的节点(
node
),节点被删除则节点对应的执行端无法执行其任务,删除应用也是删除应用或节点不会变更任务及执行项的状态,也不会删除任务及执行项,没有节点的执行项不会执行也会定期被清理
启用/关闭
启用与关闭只操作节点或应用,关闭节点则节点下的所有任务均不会执行,关闭应用则应用关联的所有结点都不会执行任务,同时这个操作也不会变更任务或执行项~
再看看节点任务及执行配置:
任务/执行配置是管理端主要任务,执行配置使用关联任务配置(PID)关联相应的任务(job),执行项(execute)是不可独立存在的!
新增任务配置
-
应用名称/调度名称就是自动或手动配置的
应用信息
任务状态在配置时仅可有 初始化(INIT
)/正常执行(EXECUTING
) 这两种状态,如果只是配置不想立即执行就选 初始化(INIT
)新增执行配置-CRON时间任务
-
任务类型仅可为简单任务(SIMPLE)或表达式(CRON)的时间项的任务,两种类型的执行配置(
execute
)填写的字段会有区别
CRON任务的CRON表达式
是必填项,时区现阶段默认是Asia/Shanghai
,后续会改成从系统获取默认
开始时间
一般不填则默认就是-1,新增提交后是按当前时间补充
结束时间
也是非必填的,结束时间默认也是-1,结束时间如果是-1则在执行完最后一次任务之后会补充为最后一次执行时间新增执行配置-SIMPLE时间任务
-
图中圈出的为必填项,需要说明的是:如果
执行结束时间
与执行次数
均设置,具体任务执行时会依限制范围最小的为实际执行,比如设置的结束时间较长但是执行次数只有几次,那最终大概率只会以执行次数为限制执行另外,对于执行配置,当执行完成后,对应的
执行配置
仅可删除不可 修改或启停,已经完成的对此类操作是没有意义的,不如新增一个执行配置
管理端开发配置及集成
这里仅以springboot为例:
- 添加依赖,如果有maven私服建议放到私服
<dependency>
<groupId>org.quartz-scheduler.internal</groupId>
<artifactId>quartz-client</artifactId>
<version>2.3.2</version>
<!-- 这是本地引入,建议放到私服-->
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/resources/lib/quartz-client-2.3.2.jar</systemPath>
</dependency>
- 启动类需要排除自动装配
// 这一行是重点!
@SpringBootApplication(exclude = {QuartzAutoConfiguration.class})
public class MeeAdminApplication {
/**
* 日志
*/
private static final Logger LOG= LoggerFactory.getLogger(MeeAdminApplication.class);
public static void main(String[] args)throws Exception {
ConfigurableApplicationContext application = SpringApplication.run(MeeAdminApplication.class, args);
Environment env = application.getEnvironment();
String ip = InetAddress.getLocalHost().getHostAddress();
String port = env.getProperty("server.port");
String path = env.getProperty("server.servlet.context-path");
LOG.info("\n\t----------------------------------------------------------\n\t" +
"Application MeeAdminApplication is running!\n\t" +
"Local: \t\thttp://localhost:" + port + path + "/\n\t" +
"External: \thttp://" + ip + ":" + port + path + "/\n\t" +
"----------------------------------------------------------");
}
}
- 需要配置一个实例以使用
@Service
public final class QrtzJobServiceImpl implements QrtzJobService {
/**
* 日志
*/
private static final Logger LOG = LoggerFactory.getLogger(QrtzJobServiceImpl.class);
/**
* quartz定时任务api
*/
private final Scheduler scheduler;
public QrtzJobServiceImpl(DataSource dataSource) {
this.scheduler = new StdScheduler(dataSource);
}
}
- 调用sdk
@Override
public MeeResult<Integer> updateJobState(String job_id,String state) {
Object[] result = scheduler.updateJobStateInAll(job_id,state);
int updateCount = (int)result[0];
if(updateCount>0){
return ResultBuild.build(updateCount);
}else{
return ResultBuild.fail((String)result[1]);
}
}
Scheduler 提供了多种多样的api,注意部分接口的区别:
如果管理端
与执行端
一体 则无需引入client依赖(quartz-client
),也无需在启动类中排除自动装配(QuartzAutoConfiguration
),使用sdk也无需使用构造方式传入database,仅此即可:
@Autowired
private Scheduler scheduler;
执行端开发配置及集成
- 引入依赖同时排除原生Quartz
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
<version>${spring-boot-current.version}</version>
<exclusions>
<exclusion>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.quartz-scheduler.internal</groupId>
<artifactId>quartz-core</artifactId>
<version>2.3.2</version>
<!-- 这是本地引入,建议放到私服-->
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/resources/lib/quartz-core-2.3.2.jar</systemPath>
</dependency>
- 添加依赖配置项
### ----------- quartz ------------------
spring.quartz.job-store-type=jdbc
spring.quartz.properties.org.quartz.jobStore.class=org.springframework.scheduling.quartz.LocalDataSourceJobStore
spring.quartz.properties.org.quartz.jobStore.clusterCheckinInterval=6000
spring.quartz.properties.org.quartz.jobStore.driverDelegateClass=org.jdbcjobstore.impl.org.quartz.StdJDBCDelegate
spring.quartz.properties.org.quartz.jobStore.isClustered=true
# 表名前缀
spring.quartz.properties.org.quartz.jobStore.tablePrefix=QRTZ_
spring.quartz.properties.org.quartz.scheduler.instanceName=${spring.application.name}
#spring.quartz.properties.org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
spring.quartz.properties.org.quartz.threadPool.class=org.quartz.impl.MeeThreadPool
# 线程数配置
spring.quartz.properties.org.quartz.threadPool.threadCount=10
spring.quartz.properties.org.quartz.threadPool.threadPriority=5
# 綫程继承初始化线程的上下文类加载器
spring.quartz.properties.org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread=true
#Whether to enable pessimistic lock to control trigger concurrency in the cluster 是否启用悲观锁来控制集群中的触发并发
spring.quartz.properties.org.quartz.jobStore.acquireTriggersWithinLock=true
配置项里面 要注意线程数的配置,如果使用的 MeeThreadPool
则threadCount
为最大线程数,核心线程数 threadCount-2
,最少为2,具体多少按实际CPU核心个数以及是否是IO密集型还是CPU密集型来配置即可~
其次要注意 tablePrefix
如果表名有变更则按照变更后的表名前缀
配置即可
- 定义一个任务
- 如果使用的是
spring
提供的QuartzJobBean
来开发:
import com.mee.quartz.util.DateUtil;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.quartz.impl.QrtzExecute;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.quartz.QuartzJobBean; import javax.sql.DataSource; public class ATestJob extends QuartzJobBean { private static final Logger log = LoggerFactory.getLogger(ATestJob.class); @Override
protected void executeInternal(JobExecutionContext context) throws JobExecutionException {
try {
log.info("===>ATestJob::executeInternal {}-{} : {}-{}<===" ,context.getJobId(),context.getExecuteId(),context.getJobType(),context.getJobClassName());
} catch (Exception e) {
throw new JobExecutionException(e);
}
} }
- 如果使用的是
Quartz
提供的Job接口
来开发,也可:
import org.quartz.Job;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.quartz.impl.QrtzExecute;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import java.util.concurrent.TimeUnit; public class Job01TestService implements Job { private static final Logger LOGGER = LoggerFactory.getLogger(Job01TestService.class); @Override
public void execute(JobExecutionContext context) throws JobExecutionException {
LOGGER.info("=>>{}-{}.{}-{}",context.getJobId(),context.getExecuteId(),context.getJobType(),context.getJobClassName());
}
} - 如果使用的是
以上两种方式皆可,需要注意的是,不管是继承 QuartzJobBean
还是实现的 ``Job,均无需将类著名为spring
bean
类(@Service
or @Component
),Quartz
内部自会创建任务类为spring bean
~
开发注意事项
- 使用
quartz-client
添加的任务一般最晚会在5秒
之后执行,因为任务轮询是5秒
一轮询 - 执行端执行异常(
Quartz
内的非业务的)的任务最晚在15S
之后恢复任务执行,因为集群/缺火处理是15秒
一轮询 - 添加的任务如果不执行首先则要注意
spring.quartz.properties.org.quartz.scheduler.instanceName
配置项是否有配置,这个配置项对应app
表中的application
字段 - 实际任务如有日志出现 任务延迟,建议排查宿
主机资源
是否占满,或者线程数
配置是否合理
Quartz集群增强版_00.How to use?(如何使用)的更多相关文章
- Quartz集群
为什么选择Quartz: 1)资历够老,创立于1998年,比struts1还早,但是一直在更新(27 April 2012: Quartz 2.1.5 Released),文档齐全. 2)完全由Jav ...
- 项目中使用Quartz集群分享--转载
项目中使用Quartz集群分享--转载 在公司分享了Quartz,发布出来,希望大家讨论补充. CRM使用Quartz集群分享 一:CRM对定时任务的依赖与问题 二:什么是quartz,如何使用, ...
- 使用sqlserver搭建高可用双机热备的Quartz集群部署【附源码】
一般拿Timer和Quartz相比较的,简直就是对Quartz的侮辱,两者的功能根本就不在一个层级上,如本篇介绍的Quartz强大的序列化机制,可以序列到 sqlserver,mysql,当然还可以在 ...
- Springboot2.X集成Quartz集群
为什么要使用Quzrtz集群 在项目进行集群部署时,如果业务在执行中存在互斥关系,没有对定时任务进行统一管理,就会引起业务的多次执行,不能满足业务要求.这时就需要对任务进行管理,要保证一笔业务在所有的 ...
- 双机热备的Quartz集群
sqlserver搭建高可用双机热备的Quartz集群部署[附源码] 一般拿Timer和Quartz相比较的,简直就是对Quartz的侮辱,两者的功能根本就不在一个层级上,如本篇介绍的Quartz ...
- quartz集群报错but has failed to stop it. This is very likely to create a memory leak.
quartz集群报错but has failed to stop it. This is very likely to create a memory leak. 在一台配置1核2G内存的阿里云服务器 ...
- Quartz集群配置
先看看quartz的持久化基本介绍: 引用 1 大家都清楚quartz最基本的概念就是job,在job内调用具体service完成具体功能,quartz需要把每个job存储起来,方便调度,quartz ...
- Quartz集群原理及配置应用
1.Quartz任务调度的基本实现原理 Quartz是OpenSymphony开源组织在任务调度领域的一个开源项目,完全基于Java实现.作为一个优秀的开源调度框架,Quartz具有以下特点: (1) ...
- quartz集群调度机制调研及源码分析---转载
quartz2.2.1集群调度机制调研及源码分析引言quartz集群架构调度器实例化调度过程触发器的获取触发trigger:Job执行过程:总结:附: 引言 quratz是目前最为成熟,使用最广泛的j ...
- (4) Spring中定时任务Quartz集群配置学习
原 来配置的Quartz是通过spring配置文件生效的,发现在非集群式的服务器上运行良好,但是将工程部署到水平集群服务器上去后改定时功能不能正常运 行,没有任何错误日志,于是从jar包.JDK版本. ...
随机推荐
- idea下spring切换jdk版本
1.首先打开项目配置设置 2. 修改project中的配置 3. 修改modules中的配置 这个方法不需要修改pom.xml文件 如果有问题请指正 及时修改 2022年9月10日16:42:16
- 学习设计微服务:api认证
前言最近再学习微服务,所以把自己的个人站点https://www.ttblog.site/拆分成微服务.目前正在思考微服务里面的认证与授权,网上百度到都是根据用户名和密码来实现的,考虑到实际的原因,我 ...
- 【漏洞分析】OSN 代币攻击事件:一笔资金伪造多个分红大户
背景 OSN 是一种 fee on transfer 代币,会根据用户分红账户的余额对用户发放分红.攻击者利用漏洞增发分红账户的余额,随后触发分红机制完成获利. OSN:https://bscscan ...
- 一文搞懂 == 、equals和hashCode
面试的时候,经常会被问到==和equals()的区别是什么?以及我们也知道重写equals()时候必须重新hashCode().这是为什么?既然有了hashCode()方法了,JDK又为什么要提供eq ...
- Dell R920 服务器iDrac口默认账号密码和IP
Dell服务器iDrac口默认账号密码和IP 账号:root 密码:calvin IP:192.168.0.120/24
- Docker镜像源地址
Docker镜像源地址(1)官方镜像:https://registry.docker-cn.com(2)网易镜像:http://hub-mirror.c.163.com(3)清华大学:https:// ...
- A4纸尺寸
A4纸尺寸 A4纸尺寸:210×297: A3纸尺寸:297×420: A2纸尺寸:420×594: A1纸尺寸:594×841: A0纸尺寸:841×1189: 备注:长(mm)×宽(mm) 单位: ...
- SQL Server Temporary Table & Table Variable (临时表和表变量)
参考: 在数据库中临时表什么时候会被清除呢 Temporary Tables And Table Variables In SQL 基本常识 1. 局部临时表(#开头)只对当前连接有效,当前连接断开时 ...
- 靠着这篇笔记,我拿下了16k车载测试offer!
如何写简历 个人技能 个人技能一般不要超过10条,一般在8条内. 一.测试流程和技术 1.熟悉车载系统研发和测试流程,能独立编写各种测试文档. 2.熟悉车载系统测试用例设计思路,能独立编写仪表和车 ...
- Vue3——axios 安装和封装
axios 安装和封装 安装 npm install axios 最后通过 axios 测试接口!!! axios 二次封装 在开发项目的时候避免不了与后端进行交互,因此我们需要使用 axios 插件 ...