This is a cron-job in node.js - node.js

I am trying to make a cron-job that runs a function after 24 hours but if it's a friday, then the timer should stop at 23:59 and restart on sunday at 23:59. How do I do this?
Imagine a request being created. When this is created, an email function has to be called. If a reply for the said email is not received within 24 hrs, the email function should be called again and the 24 hrs timer should start again to repeat this process for a third time. But if it is a saturday and the timer is running, it should stop and then restart back on monday. (This is to indicate that no time from saturday or sunday has been consumed in the timer).

Some cron patterns allow you to specify day ranges (e.g. 59 23 * * 1-5 runs only Monday to Friday).
Fore more complicated logic, setting the cron to run everyday + inspecting the day of the week in your application might be simpler like O. Jones commented.
Personally, I'd lean towards the latter so you can log when the cron ran and skipped because it was a weekend, so you have a record, if things ever go wrong or you need to debug something.

Related

Cron expression to fire azure function twice every day

I have created a Timer trigger azure function which initially was as asked to run just once every day. But now its been asked to twice every day.
So I need to run it morning 2:30 and noon 13:15.
I wrote my cron expression like this
0 30,15 2,13 * * *
But my confusion is will it fire 2:15 and 2:30 and 13:15 and 13:30?
Yes, the expression you posted will fire at all four times, as you can see in the crontab.guru screenshot below.
The two explicit times you are requiring are not possible using a single cron expression.
Crontab guru is The quick and simple editor for cron schedule expressions.
Please be advised it does not take seconds into account, so remove the first element if you want to check something.

Google App Engine cron job schedule repeat on days with DST changes

I have a cron job that should repeat every 3 hours and must land on 9:30 in US/NY time.
If I start the job at 0:30, and run it every 3 hours, will it run at 9:30 on daylight savings days?
The documentation is a bit vague on this: https://cloud.google.com/scheduler/docs/configuring/cron-job-schedules#daylight_savings_time. It uses wall clock time to start, but does it use wall-clock time for each offset as well?
Alternatively, could I start it using 9:30 as the trigger time, and then every 3 hours until 6:30am the next day?
As you mentioned, Cloud scheduler uses wall clock time, is expected that the executions changes according the wall time.
To run a job from 9:30am to 6:30am (next day) you need 2 Scheduler jobs
1st will be run every 3 hours starting 9:30 to 23:30
30 9/3 * * *
2nd will be run every 3 hours starting 0:30 to 6:30
30 0-6/3 * * *
I use this page when I have doubts about cron format
The best way to completely avoid any kind of issue with DST changes is to switch to a timezone unaffected by those, as the documentation states:
If your job requires a very specific cadence, you may want to consider choosing time zones that do not observe daylight savings time.
A good one would be UTC for example, and as the difference between NY(GMT -4) and UTC(GMT) is 4h you just need to add 4 to your desired starting time.
With that you are assuring that the scheduled hours do not get modified and whatever you are expecting to be run is done as it should.
Regarding the start time of the trigger, it does not matter whether it is 0:30 or 9:30, once you create it, it will run every X hours/mins/seconds as you will have it specified beforehand.

Cron Scheduler use case

I am stuck and seek your help for my requirement , where I need to run a job everyday except on Sunday mornings from 05:30 AM to 08:30 AM.
I have searched and could not see the solution for my problem, could you be able to help me out to get the correct Cron Expression. I have also tried it using http://www.cronmaker.com/
i think the easiest solution in cron is:
start your program without any limit
stop your code at 5:30 AM on sundays
30 5 * * 7 stop_code
start your code at 8:30 Am on sundays
30 8 * * 7 start_code_again
Thank you all for your response.
I have used a CronRoutePolicy with respect to Camel as we were using Camel.
In the route policy i could define Start time , Suspend Time and Resume Time.
I have deployed it but some how quartz has not started the job. Figuring out the issue now.

Configure Quartz for interval and different starting hours

I've been looking for this for a while now, but I didn't find a way to do what I want.
I have a Web Page in which a user can plan some actions during a week.
For example:
On monday morning, from 8:00 to 10:00, do this...
On tuesday afternoon, from 1:30 to 2:00, do that...
Well, I would like that my Java program automatically launch the actions for the periods that the user selected. And, during these time intervals, repeat the action every X minutes. (Should be configurable)
What I thought was setting up Quartz with Cron scheduler. However, I don't know how to handle half hours...
More precisely:
This will work for my first example (repeat every 5 minutes between 8 to 10):
0 0/5 8-10 * * MON
But how to handle the second example? (Starting at 1:30 but repeat the action every 5 minutes??)
Thanks !
Philippe
actually I found an answer to my needs: DailyTimeIntervalScheduleBuilder !
Here is an example for answer my need:
DailyTimeIntervalScheduleBuilder scheduleBuilder = DailyTimeIntervalScheduleBuilder.dailyTimeIntervalSchedule()
.startingDailyAt(new TimeOfDay(13, 30, 0))
.endingDailyAt(new TimeOfDay(14, 0, 0))
.onDaysOfTheWeek(1)
.withIntervalInMinutes(5);
Problem solved
Philippe

Cron Job Issue with day of Month

I have a cron job set to run a script once a day at 3am.
0 3 * * * /home/path/script.pl
It's been running without any problems since April 11th. Last weekend though, on Saturday the 3rd of May, the script was called once a minute for 24 hours. (1441 times in total) Then afterwards, on the 4th and 5th, it went back to only being called once a day at 3:00 again.
Does anyone have any ideas as to why this happened? I was wondering if there was an error in my crontab, since I have a 3 in it, and it was the 3rd of May that it happened. Since I only started running the cron since the 11th of April, I have no idea if it's something that will happen once a month on the 3rd, or if it was a one time thing unrelated at all.
I looked around and didn't find anything related, so I though I'd just ask while I continued to tried to find out what happened. I currently changed the cron to make it run at 6am instead to see if I'd end up with the same thing again tomorrow.
0 6 * * * /home/path/script.pl
EDIT
Everything was working fine, but then again on the 3rd of June, the same thing happened again. Could this be related to a cron problem or could it be something else entirely?
The problem was finally solved. There was a second cron being executed by root that was incorrectly written, which was making the script be called once a minute on the 3rd of the month instead of once a day at 3am.
The cron did not show up with the other cron jobs, and only by using the following command
did the cron job actually appear.
grep script /var/spool/cron/crontabs/*
I still don't understand but it's working correctly now.

Resources