Can I get a Jenkins trigger to run every first week day of every month?

Fly Guy

My goal is to trigger a report every first weekday of the month at 7AM (7/1/15,8/3/15,9/1/15, etc.)

I am using the following cron expression: H 7 1-3/3 * 1-5

It runs on July 1, but it is not scheduled next to run on August 3, but on September 1. How can I get it to run on the first weekday of every month?

I am using the following help guide:

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,

  • The * 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.

Vitalii Elenhaupt

First weekday of the month rules:

  • If today is a Monday, then the job should be run if today is also the 1st, 2nd, or 3rd of the month
  • If today is a Tuesday, Wednesday, Thursday, or Friday, then the job should be run if today is also the 1st of the month

The following cron expressions should do the job:

H 7 1-3 * 1
H 7 1 * 2
H 7 1 * 3
H 7 1 * 4
H 7 1 * 5
# Would last have run at Wednesday, July 1, 2015 7:00:02 AM EEST; would next run at Monday, August 3, 2015 7:00:02 AM EEST.

Beware, because of this article, you can't just use:

H 7 1-3 * 1
H 7 1 * 2-5

The above doesn't work! Instead, the job is run on every weekday, twice on the 1st of the month, and maybe twice on the 2nd and 3rd of the month!

But I was not able to reproduce it.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get first day and last day for every week in a month?

From Dev

Cron: Run every day except first day of the month and first day of each week

From Dev

CronJob BackUp: run every day, week, month

From Dev

How can i get every month first day array value using PHP

From Dev

Simplest way to get First and last day of every month of the year with JodaTime

From Dev

I need to set a notification on a specific day every week.. but I don`t care the day of the month

From Dev

How to get data of every first day of month for all month in my sql?

From Dev

How can I get a script to run every day on Mac OS X?

From Dev

How to run cronjob on every month first friday?

From Dev

Run a cron job on the first Monday of every month?

From Dev

How to run cronjob on every month first friday?

From Dev

Get first week date of the month providing day?

From Dev

How can I get count of rows for every week?

From Dev

Cumulocity/Esper: Aggregate all day/week/month's measurements every day/week/month

From Dev

How do I run a script for 1st working day of every month in cron?

From Dev

How Can i get DateArray of current Running Week With Month a Day And Month in Asp.net C#

From Dev

Schedule mysql event to run every chosen day of the week

From Dev

ICalendar recurring event starts first day of month, ends last day of month, repeats every month

From Dev

SQL query for fetching every first event (by datetime field) in day of a month

From Dev

SQL query for fetching every first event (by datetime field) in day of a month

From Dev

get total orders for the last 1 month every week

From Dev

Cron job to run every 1st day of the month

From Dev

Hangfire CronExp to run 1 am on a specified day every month

From Dev

Quartz Cron trigger to run every 2nd day

From Dev

Laravel or php I have a week number of a month and a day, how can i get the date of these..?

From Dev

Schedule the last day of every month

From Dev

node-schedule Run every first monday of the month

From Dev

How to get first & last day of current week/month

From Dev

MongoDB Get Average Visits Per Day In Every Month

Related Related

  1. 1

    How to get first day and last day for every week in a month?

  2. 2

    Cron: Run every day except first day of the month and first day of each week

  3. 3

    CronJob BackUp: run every day, week, month

  4. 4

    How can i get every month first day array value using PHP

  5. 5

    Simplest way to get First and last day of every month of the year with JodaTime

  6. 6

    I need to set a notification on a specific day every week.. but I don`t care the day of the month

  7. 7

    How to get data of every first day of month for all month in my sql?

  8. 8

    How can I get a script to run every day on Mac OS X?

  9. 9

    How to run cronjob on every month first friday?

  10. 10

    Run a cron job on the first Monday of every month?

  11. 11

    How to run cronjob on every month first friday?

  12. 12

    Get first week date of the month providing day?

  13. 13

    How can I get count of rows for every week?

  14. 14

    Cumulocity/Esper: Aggregate all day/week/month's measurements every day/week/month

  15. 15

    How do I run a script for 1st working day of every month in cron?

  16. 16

    How Can i get DateArray of current Running Week With Month a Day And Month in Asp.net C#

  17. 17

    Schedule mysql event to run every chosen day of the week

  18. 18

    ICalendar recurring event starts first day of month, ends last day of month, repeats every month

  19. 19

    SQL query for fetching every first event (by datetime field) in day of a month

  20. 20

    SQL query for fetching every first event (by datetime field) in day of a month

  21. 21

    get total orders for the last 1 month every week

  22. 22

    Cron job to run every 1st day of the month

  23. 23

    Hangfire CronExp to run 1 am on a specified day every month

  24. 24

    Quartz Cron trigger to run every 2nd day

  25. 25

    Laravel or php I have a week number of a month and a day, how can i get the date of these..?

  26. 26

    Schedule the last day of every month

  27. 27

    node-schedule Run every first monday of the month

  28. 28

    How to get first & last day of current week/month

  29. 29

    MongoDB Get Average Visits Per Day In Every Month

HotTag

Archive