execute a cron job inside another cron job in node js












0














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










share|improve this question






















  • 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
















0














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










share|improve this question






















  • 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














0












0








0







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










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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












1 Answer
1






active

oldest

votes


















0














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 () {});
});





share|improve this answer





















    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    0














    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 () {});
    });





    share|improve this answer


























      0














      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 () {});
      });





      share|improve this answer
























        0












        0








        0






        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 () {});
        });





        share|improve this answer












        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 () {});
        });






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 27 '18 at 6:42









        Jyothi

        158




        158






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Trompette piccolo

            Slow SSRS Report in dynamic grouping and multiple parameters

            Simon Yates (cyclisme)