首页 > 其他分享 >jenkins定时任务

jenkins定时任务

时间:2022-08-25 18:44:10浏览次数:71  
标签:zone AM month 任务 time jenkins 定时 day

 

 

概述

JENKINS作为一款持续集成工具,还是比较简单易用的。

开发过程中,我们主要使用jenkins作为自动化编译工具和自动备份工具。

本文主要介绍一种常见场景的设置方法,即jenkins定时任务的设置方法。

 

环境

centos:CentOS  release 7.0 (Final)或以上版本

Jenkins 2.332.2

 

定时任务配置

代码库使用本地gitlab管理,在jenkins中原本有一个任务,可以一键备份gitlab数据并归档管理。

该任务需要每周手动点击一次。但还是不够懒。

真的懒应该把这一次点击也省略掉。

打开任务的配置项,Dashboard -> Project Name -> 配置 -> 构建触发器 -> Build periodically,勾选“Build periodically”。

在输入框中输入定时任务配置项。

TZ=Asia/Shanghai

## each saturday morning, run the job

H 0 * * 6

 

上面的配置代表,在上海时间的每个星期六,0点H分启动1次定时任务,见截图。

 

 

 

 

配置说明

看了上面的配置方法,是不是觉得很熟悉,和linux系统的crontab定时任务很类似。

官方的使用说明也说了,和cron的规则很类似,但又有小小的不同。

其中最特别的一点,‘H‘代表’hash‘。

比如“H 0 * * 6”的配置表示,任务会在0点的0-59分随机选择分钟数来执行任务,这样的好处就是多个相似任务可以在执行时间上负载均衡,降低任务同时执行的服务器压力。

官方说明如下。

This field follows the syntax of cron (with minor differences). Specifically, each line consists of 5 fields separated by TAB or whitespace:

MINUTE HOUR DOM MONTH DOW

MINUTE Minutes within the hour (0–59)

HOUR    The hour of the day (0–23)

DOM      The day of the month (1–31)

MONTH The month (1–12)

DOW     The day of the week (0–7) where 0 and 7 are Sunday.

To specify multiple values for one field, the following operators are available. In the order of precedence,

 

* specifies all valid values

M-N specifies a range of values

M-N/X or */X steps by intervals of X through the specified range or whole valid range

A,B,...,Z enumerates multiple values

To allow periodically scheduled tasks to produce even load on the system, the symbol H (for “hash”) should be used wherever possible. For example, using 0 0 * * * for a dozen daily jobs will cause a large spike at midnight. In contrast, using H H * * * would still execute each job once a day, but not all at the same time, better using limited resources.

 

The H symbol can be used with a range. For example, H H(0-7) * * * means some time between 12:00 AM (midnight) to 7:59 AM. You can also use step intervals with H, with or without ranges.

 

The H symbol can be thought of as a random value over a range, but it actually is a hash of the job name, not a random function, so that the value remains stable for any given project.

 

Beware that for the day of month field, short cycles such as */3 or H/3 will not work consistently near the end of most months, due to variable month lengths. For example, */3 will run on the 1st, 4th, …31st days of a long month, then again the next day of the next month. Hashes are always chosen in the 1-28 range, so H/3 will produce a gap between runs of between 3 and 6 days at the end of a month. (Longer cycles will also have inconsistent lengths but the effect may be relatively less noticeable.)

 

Empty lines and lines that start with # will be ignored as comments.

 

In addition, @yearly, @annually, @monthly, @weekly, @daily, @midnight, and @hourly are supported as convenient aliases. These use the hash system for automatic balancing. For example, @hourly is the same as H * * * * and could mean at any time during the hour. @midnight actually means some time between 12:00 AM and 2:59 AM.

 

Examples:

 

# Every fifteen minutes (perhaps at :07, :22, :37, :52):

H/15 * * * *

# Every ten minutes in the first half of every hour (three times, perhaps at :04, :14, :24):

H(0-29)/10 * * * *

# Once every two hours at 45 minutes past the hour starting at 9:45 AM and finishing at 3:45 PM every weekday:

45 9-16/2 * * 1-5

# Once in every two hour slot between 8 AM and 4 PM every weekday (perhaps at 9:38 AM, 11:38 AM, 1:38 PM, 3:38 PM):

H H(8-15)/2 * * 1-5

# Once a day on the 1st and 15th of every month except December:

H H 1,15 1-11 *

Time zone specification

Periodic tasks are normally executed at the scheduled time in the time zone of the Jenkins master JVM (currently Asia/Shanghai). This behavior can optionally be changed by specifying an alternative time zone in the first line of the field. Time zone specification starts with TZ=, followed by the ID of a time zone.

 

Complete example of a schedule with a time zone specification:

 

    TZ=Europe/London

    # This job needs to be run in the morning, London time

    H 8 * * *

    # Butlers do not have a five o'clock, so we run the job again

    H(0-30) 17 * * *

 

The supported time zones depend on the Java runtime Jenkins is running on. The list of supported time zone IDs on this instance is:

 

Africa/Abidjan

Africa/Accra

 

总结

Jenkins的功能很强大,在开发中是很好的辅助工具。

 

空空如常

求真得真

标签:zone,AM,month,任务,time,jenkins,定时,day
From: https://www.cnblogs.com/qiuzhendezhen/p/16625365.html

相关文章

  • 大二暑假任务结算
    任务总结:能用hadoop实现在GB数量级数据中实现类似单词统计,进出口账单统计,删掉无用日志信息等任务能用python实现爬取文档图片等资源能用javaWeb完成这个任务河......
  • P3755 [CQOI2017]老C的任务 题解
    CDQ分治对于这道题,可以参考 P4390[BOI2007]Mokia摩基亚 的做法,可以通过CDQ分治离线操作高效处理出答案(我常数大,不能体现出CDQ分治的优秀)。可以发现,操作 11......
  • jenkins打包内存溢出
    现象JavaScriptheapoutofmemory问题分析报错信息翻译过来就是JavaScript堆内存不足。这里说的JavaScript指的是Node。我们都知道Node是基于V8引擎,在一般......
  • PowerShell教程 - 系统定时任务管理(Schedule Task)
    更新记录转载请注明出处。2022年8月25日发布。2022年8月18日从笔记迁移到博客。实例:$taskAction=New-ScheduledTaskAction-Executepwsh.exe`-Argument'Wr......
  • centos7 设置开机启动任务
    环境:centos7需求:前两天调通的DNSserver(bind/named)设置开机自启动操作:修改/etc/rc.local注意这个rc.local文件默认是没有可执行属性的,所以需要手动为其添加......
  • .NET6 WebApi 实现定时任务调度Quartz
    前言本地json持久化调度任务,无需数据库直接调用本地类方法,无需通过WebApi接口1.创建项目,安装组件创建.NET6WebApi项目;引入GZY.Quartz.MUI1.1.51.1Progarm.c......
  • .NET 纯原生实现 Cron 定时任务执行,未依赖第三方组件
    常用的定时任务组件有Quartz.Net和Hangfire两种,这两种是使用人数比较多的定时任务组件,个人以前也是使用的Hangfire,慢慢的发现自己想要的其实只是一个能够根据Cron......
  • jenkins试图添加job
    1.点击编辑试图  2.勾选job,点击OK ......
  • 定时任务报警通知解决方案详解
    简介: 本文详细介绍定时任务通知的解决方案,以及市面上常见的开源定时任务通知方案对比。什么是定时任务定时任务是每个业务常见的需求,比如每分钟扫描超时支付的......
  • 宏任务微任务是什么
    宏任务:主线程要执行的代码,定时器/延时器等都属于宏任务,上一个宏任务执行完,才会考虑执行下一个宏任务微任务:promise.then和.catch中需要执行的内容,属于微......