-
Notifications
You must be signed in to change notification settings - Fork 626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Error: WARNING: Date in past. Will never be fired." crash inside callback wrapper #813
Comments
What would be the best behavior in your opinion? If your software is running on under-sized hardware / having bottlenecks in the implementation, and the planned execution date is missed, should we try to catch back (i.e. execute the tick ASAP)? Some use cases might not go well with this, and having this error thrown indicates that to maintain consistency in your schedule, you should either upgrade the hardware you're running on or address potential bottlenecks in your software. Let's get the discussion going on this, please let us know your thoughts. |
My hardware is at 4% CPU usage at all times. From the mdn web docs, I see that the delay passed to setTimeout is a minimum, so if I set a date less than 24 hours away then diff should never be positive, yet it is. Executing instantly instead of throwing an uncatchable error would be preferred in my case. |
Is there a reason why we are calculating diff instead of just checking remaining > 0 in the first place? |
From #259:
A solution I might think of would be to add a new parameter if (this.realDate) {
if (DateTime.local() > date) {
if (DateTime.local() > date + tolerableDelay) {
throw new CronError('WARNING: Date in past. Will never be fired. Try adjusting the tolerableDelay parameter.');
}
return date + tolerableDelay;
}
return date;
} This way you could control how much you want to allow executing jobs that missed the execution date. Does that sound like an acceptable solution to your issue? Implementation note: we would also need to apply that parameter in other places so it applies to regular cron jobs as well. |
In case of It would fix my issue but it wouldn't fix people randomly running into this issue. If setTimeout fires after the target date then that already allows infinite delays. It's only in the case of the second measurement inside the same runloop run being negative, while the first being positive when a crash happens instead of just a couple millisecond delay. If I understand how JS+this npm package works currently, let's say we set a cron job to trigger every second and the code being executed by the trigger takes 10 seconds then we constantly get 9-10 second delays and a lot of triggers are getting skipped. So I think executing instantly in this case is still the best option. (And also most consistent with how things currently work) |
Description
I was using 2.2.0 but cross-checking the code with 3.1.6, this issue still exists.
I have a daily schedule to set up triggers for the day:
https://github.com/Cyberbeni/node-red-contrib-cb-suncron/blob/3b3441c95a0fb4ab2356e906c810d3ef0e8de80f/src/SuncronLocation.ts#L29-L34
Setting up the jobs looks like this: https://github.com/Cyberbeni/node-red-contrib-cb-suncron/blob/3b3441c95a0fb4ab2356e906c810d3ef0e8de80f/src/Suncron.ts#L44-L59
I had this Node-RED crash today at the time that the cron job should have fired (and probably had multiple similar ones in the past as I had some skipped schedules):
Expected Behavior
If diff is more than 0 but newTimeout would be negative (because slow hardware or whatever), we shouldn't throw an error that can't be handled.
Actual Behavior
Occasional crash with the included call stack.
Possible Fix
Treat
this.cronTime.getTimeout()
throwing an error as if diff was not more than 0.Steps to Reproduce
Remove
if (diff > 0)
check and insert a 1 second sleep before this line to imitate slow hardware:node-cron/src/job.ts
Line 235 in d614393
Then just setup a job with a single Date and an onTick callback.
Context
see description
Your Environment
cron
version: 2.2.0The text was updated successfully, but these errors were encountered: