Ask questionscron fails on two servers, approximately same time, without error
I have two aws servers, identical setup:
lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18.04 Codename: bionic
uname -r 4.15.0-1035-aws
node --version v8.16.0
cat package.json | grep cron "cron": "^1.7.1",
both have cron running with this code:
new CronJob('*/10 * * * * *', procNewBlock, null, true, 'Europe/Berlin');
both stopped running at approximately the same time, the first was running the last time at: May 2 09:05:47 UTC
the second last run was at: May 2 09:06:30 UTC
so far this was the only time that this happend (running for about 1 month now). To me it looks as if some scheduled system task outside of nodejs is killing the crons. But any help greatly appreciated. The nodejs processes did not see any interruption.
Answer
questions
awaismehmood88
FindJob function finds jobs from DB and executive IO intensive task, it may take less than a second or may take up to one minute, code also contains time intervals, callbacks etc
There was not fixed time when cron stops, I tried same code on mac and linux it stops after few days
Related questions
No questions were found.