Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I would like to schedule a talend job via TAC to trigger once in every month only on the Wednesday after the third Monday of the month.
I've tried using the CRON-based trigger however i'm not able to use a combination of days of the Month and Days of the Week.
I've thought about running it on run every Wednesday of the Month however I don't want to create additional condition inside the job to check and handle if the Wednesday is after the third Monday of the month.
I've thought about running it on the third Monday (Cron - Days of the week: 2#3) but I'm sure what is the extra configuration I need it to delay it by Wednesday.
Is it possible to only configure it in the TAC scheduler such that:
Possible Days of the Month : 15 - 21 (Third week Monday)
FIRST DAY OF THE MONTH IS? | Check the 3rd Monday of the Month | Trigger it On (Wednesday) |
SUN | 16 | 18 |
MON | 15 | 17 |
TUE | 21 | 23 |
WED | 20 | 22 |
THR | 19 | 21 |
FRI | 18 | 20 |
SAT | 17 | 19 |
Hi,
I would recommend to add a simple if- else condition at the starting point of the job to verify this scenario. This is a special scenario and crontab will not help you in this part. You will have to add specific conditions within job and if it is not satisfying, you can always come out of the job.
Warm Regards,
Nikhil Thampi