execute a cron job inside another cron job in node js
I m trying to run a cron job inside another cron job in node js. Outside cron job executes one time only
For day 1: Inside cron job executes 1 time
For Day 2: Inside cron job executes 2 times
For Day 3: Inside cron job executes 3 times
cron.schedule("0 30 16 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
console.log("inside outside cron job ")
cron.schedule("10 30 16 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
console.log("inside cron job 1")
})
})
Why its executing multiple times although i m calling it one time inside a cron job
node.js cron
|
show 3 more comments
I m trying to run a cron job inside another cron job in node js. Outside cron job executes one time only
For day 1: Inside cron job executes 1 time
For Day 2: Inside cron job executes 2 times
For Day 3: Inside cron job executes 3 times
cron.schedule("0 30 16 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
console.log("inside outside cron job ")
cron.schedule("10 30 16 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
console.log("inside cron job 1")
})
})
Why its executing multiple times although i m calling it one time inside a cron job
node.js cron
Why are you making it nested?
– Abhishek Mani
Nov 23 '18 at 10:33
inside cron job should be executed based on the output from outside cron job. Timings for inside cron job is provided by outside one
– Jyothi
Nov 23 '18 at 10:37
@ Abhishek Mani Timings for inside cron job is provided by outside cronjob
– Jyothi
Nov 23 '18 at 10:39
Outside cron job has to be called daily for changed timings
– Jyothi
Nov 23 '18 at 10:39
Can you clarify the pattern, how you want to run the cron?
– Abhishek Mani
Nov 23 '18 at 10:43
|
show 3 more comments
I m trying to run a cron job inside another cron job in node js. Outside cron job executes one time only
For day 1: Inside cron job executes 1 time
For Day 2: Inside cron job executes 2 times
For Day 3: Inside cron job executes 3 times
cron.schedule("0 30 16 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
console.log("inside outside cron job ")
cron.schedule("10 30 16 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
console.log("inside cron job 1")
})
})
Why its executing multiple times although i m calling it one time inside a cron job
node.js cron
I m trying to run a cron job inside another cron job in node js. Outside cron job executes one time only
For day 1: Inside cron job executes 1 time
For Day 2: Inside cron job executes 2 times
For Day 3: Inside cron job executes 3 times
cron.schedule("0 30 16 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
console.log("inside outside cron job ")
cron.schedule("10 30 16 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
console.log("inside cron job 1")
})
})
Why its executing multiple times although i m calling it one time inside a cron job
node.js cron
node.js cron
asked Nov 23 '18 at 10:25
Jyothi
158
158
Why are you making it nested?
– Abhishek Mani
Nov 23 '18 at 10:33
inside cron job should be executed based on the output from outside cron job. Timings for inside cron job is provided by outside one
– Jyothi
Nov 23 '18 at 10:37
@ Abhishek Mani Timings for inside cron job is provided by outside cronjob
– Jyothi
Nov 23 '18 at 10:39
Outside cron job has to be called daily for changed timings
– Jyothi
Nov 23 '18 at 10:39
Can you clarify the pattern, how you want to run the cron?
– Abhishek Mani
Nov 23 '18 at 10:43
|
show 3 more comments
Why are you making it nested?
– Abhishek Mani
Nov 23 '18 at 10:33
inside cron job should be executed based on the output from outside cron job. Timings for inside cron job is provided by outside one
– Jyothi
Nov 23 '18 at 10:37
@ Abhishek Mani Timings for inside cron job is provided by outside cronjob
– Jyothi
Nov 23 '18 at 10:39
Outside cron job has to be called daily for changed timings
– Jyothi
Nov 23 '18 at 10:39
Can you clarify the pattern, how you want to run the cron?
– Abhishek Mani
Nov 23 '18 at 10:43
Why are you making it nested?
– Abhishek Mani
Nov 23 '18 at 10:33
Why are you making it nested?
– Abhishek Mani
Nov 23 '18 at 10:33
inside cron job should be executed based on the output from outside cron job. Timings for inside cron job is provided by outside one
– Jyothi
Nov 23 '18 at 10:37
inside cron job should be executed based on the output from outside cron job. Timings for inside cron job is provided by outside one
– Jyothi
Nov 23 '18 at 10:37
@ Abhishek Mani Timings for inside cron job is provided by outside cronjob
– Jyothi
Nov 23 '18 at 10:39
@ Abhishek Mani Timings for inside cron job is provided by outside cronjob
– Jyothi
Nov 23 '18 at 10:39
Outside cron job has to be called daily for changed timings
– Jyothi
Nov 23 '18 at 10:39
Outside cron job has to be called daily for changed timings
– Jyothi
Nov 23 '18 at 10:39
Can you clarify the pattern, how you want to run the cron?
– Abhishek Mani
Nov 23 '18 at 10:43
Can you clarify the pattern, how you want to run the cron?
– Abhishek Mani
Nov 23 '18 at 10:43
|
show 3 more comments
1 Answer
1
active
oldest
votes
const cron = require("node-cron");
var a;
var b;
var hr;
var min;
var sec;
cron.schedule("0 0 1 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
min = 30;
hr = 8;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (a) {
a.stop()
}
a = cron.schedule(sec, function () {});
min = 30;
hr = 16;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (b) {
b.stop();
}
b = cron.schedule(sec, function () {});
});
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53444880%2fexecute-a-cron-job-inside-another-cron-job-in-node-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
const cron = require("node-cron");
var a;
var b;
var hr;
var min;
var sec;
cron.schedule("0 0 1 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
min = 30;
hr = 8;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (a) {
a.stop()
}
a = cron.schedule(sec, function () {});
min = 30;
hr = 16;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (b) {
b.stop();
}
b = cron.schedule(sec, function () {});
});
add a comment |
const cron = require("node-cron");
var a;
var b;
var hr;
var min;
var sec;
cron.schedule("0 0 1 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
min = 30;
hr = 8;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (a) {
a.stop()
}
a = cron.schedule(sec, function () {});
min = 30;
hr = 16;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (b) {
b.stop();
}
b = cron.schedule(sec, function () {});
});
add a comment |
const cron = require("node-cron");
var a;
var b;
var hr;
var min;
var sec;
cron.schedule("0 0 1 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
min = 30;
hr = 8;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (a) {
a.stop()
}
a = cron.schedule(sec, function () {});
min = 30;
hr = 16;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (b) {
b.stop();
}
b = cron.schedule(sec, function () {});
});
const cron = require("node-cron");
var a;
var b;
var hr;
var min;
var sec;
cron.schedule("0 0 1 * * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", function () {
min = 30;
hr = 8;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (a) {
a.stop()
}
a = cron.schedule(sec, function () {});
min = 30;
hr = 16;
sec = "0" + ' ' + min + ' ' + hr + ' ' + "* * Monday,Tuesday,Wednesday,Thursday,Friday,Sunday";
if (b) {
b.stop();
}
b = cron.schedule(sec, function () {});
});
answered Nov 27 '18 at 6:42
Jyothi
158
158
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53444880%2fexecute-a-cron-job-inside-another-cron-job-in-node-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Why are you making it nested?
– Abhishek Mani
Nov 23 '18 at 10:33
inside cron job should be executed based on the output from outside cron job. Timings for inside cron job is provided by outside one
– Jyothi
Nov 23 '18 at 10:37
@ Abhishek Mani Timings for inside cron job is provided by outside cronjob
– Jyothi
Nov 23 '18 at 10:39
Outside cron job has to be called daily for changed timings
– Jyothi
Nov 23 '18 at 10:39
Can you clarify the pattern, how you want to run the cron?
– Abhishek Mani
Nov 23 '18 at 10:43