I want to make a repeatable job to send mail every 15 minutes taking data from a database table. In node js I can create the job but through PM2 I don't understand where to place the code and how it works.
thank you for your answer; i do it in this way and just set the email
1.
npm install node-crontab
var crontab = require('node-crontab');
var jobId = crontab.scheduleJob("*/15 * * * *", function(){
//This will call this function every 15 minutes
console.log("It's been 15 minutes!");
});
pm2
as the OP originally asked. –
Inexpressive cron
and not corn
right? :) - stackoverflow.com/posts/42501219/revisions –
Attu Use the --cron
option:
-c --cron
<cron_pattern>
For example:
pm2 start sendMail.js --cron "*/15 * * * *"
Pm2 will now restart the sendMail.js
script on the hour, and at 15, 30 and 45 minutes past the hour
cron-tab
as suggested in the accepted answer, along with autorestart: true
in pm2 –
Johiah --no-autorestart
to pm2 start <script>
(because my script is a run-once-and-exit-until-started-again type script). –
Abdominal This is what worked for me, I split the cron in a different file which runs in a different process because i want to free up resources after cron has completed execution.
ecosystem.config.js:
module.exports = {
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps: [
// Main API Hosting
{
name: 'API',
script: 'bin/www',
env: {
COMMON_VARIABLE: 'true'
},
instances: 1,
exec_mode: 'cluster',
watch: false,
autorestart: true
},
{
name: 'CRON',
script: "crons/cronjob.js",
instances: 1,
exec_mode: 'fork',
cron_restart: "0,30 * * * *",
watch: false,
autorestart: false
}
]
};
The following lines are important in the cron executable
cron_restart: "0,30 * * * *"
<- cron expression
autorestart: false
<- important because otherwise pm2 will restart the cron after completion immediately
Also make sure your instances
is 1 otherwise multiple cron processes will run.
Key caveats:
Whenever you do pm2 restart all, the cron job will run irrespective of the cron expression. If Its critical to run only at specific times, add this additional check in the beginning of the cron file
if (new Date().getHours() !== 0 ) {
console.log(`Current hours is ${new Date().getHours()}, not running.`)
process.exit(0);
}
If you use PM2 ecosystem then in the config file add cron sequence to script
param by wrapping it with single quotes. Somehow double quotes didn't work for me.
module.exports = {
apps : [{
name : "Send-mail",
script : "./sendMail.js --cron '*/15 * * * *'",
watch : true
}]
}
alternatively (my preference)
module.exports = {
apps : [{
name : "Send-mail",
script : "./sendMail.js",
cron_restart: "*/15 * * * *",
watch : true
}]
}
If you execute the following command:
pm2 start handle-cron.js --cron "*/15 * * * *"
PM2 will initiate your cron job, but it will also continuously restart the cron-job after completion. --Infinite Loop
You want to set the instance to 1 and set no-autorestart.
pm2 start handle-cron.js --no-autorestart --instances 1 --cron "0 * * * *"
You can also use the node-schedule module which allows you to define cron style rules. Then, you can run the program normally in pm2, I use this with PM2 for a lot of projects and it has never let me down.
var schedule = require('node-schedule');
var rule = new schedule.RecurrenceRule();
rule.hour = [10]; // 10am
rule.minute = [0]; // 0mins
var job = schedule.scheduleJob(rule, function(){
console.log("10am every day")
});
//Rule 2 - 6am every wednesday
var rule2 = new schedule.RecurrenceRule();
rule2.dayOfWeek = 3; // 0 = Sunday
rule2.hour = 6;
rule2.minute = 0;
var job2 = schedule.scheduleJob(rule2, function(){
console.log("Every Wednesday @ 6am");
});
var rule3 = new schedule.RecurrenceRule();
rule3.minute = [0, 15, 30, 45]; // Specific Minutes
var job3 = schedule.scheduleJob(rule3, function(){
console.log("Run at specific minutes")
});
It also supports CRON style rules, but I prefer the above method.
Check out the documentation at https://www.npmjs.com/package/node-schedule
I usually use pm2 with unix crontab, it allows me to have control over cron using unix itself with ability to use pm2 logs, which I found useful to me.
0 * * * * /usr/bin/pm2 start /var/www/app/cron/index.js --name cron_app
But it's my case, for pm2 cron I would prefer above answers, just never used it as don't like to be dependable on pm2 for cronjobs if can launch it directly via OS crontab.
there are three ways to implement cron through pm2
- pm2 command line
- pm2 ecosyste.config file
- pm2-api
refer this this helped me .
thank you for your answer; i do it in this way and just set the email
1.
npm install node-crontab
var crontab = require('node-crontab');
var jobId = crontab.scheduleJob("*/15 * * * *", function(){
//This will call this function every 15 minutes
console.log("It's been 15 minutes!");
});
pm2
as the OP originally asked. –
Inexpressive cron
and not corn
right? :) - stackoverflow.com/posts/42501219/revisions –
Attu © 2022 - 2024 — McMap. All rights reserved.
cron
job... – Vinna