-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcronProcessesMonitor.js
More file actions
316 lines (281 loc) · 11.5 KB
/
cronProcessesMonitor.js
File metadata and controls
316 lines (281 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/**
* This periodic cron monitors the cron processes table.
* It selects entry from table and compares the last ending time of the entry with restart time interval
* And sends the error notification
*
* Example: node executables/cronProcessesMonitor.js --cronProcessId 27
*
* @module executables/cronProcessesMonitor
*/
const program = require('commander');
const rootPrefix = '..',
CronBase = require(rootPrefix + '/executables/CronBase'),
CommonValidators = require(rootPrefix + '/lib/validators/Common'),
ErrorLogsConstants = require(rootPrefix + '/lib/globalConstant/errorLogs'),
CronProcessModel = require(rootPrefix + '/app/models/mysql/CronProcesses'),
cronProcessesConstants = require(rootPrefix + '/lib/globalConstant/cronProcesses'),
responseHelper = require(rootPrefix + '/lib/formatter/response'),
logger = require(rootPrefix + '/lib/logger/customConsoleLogger'),
createErrorLogsEntry = require(rootPrefix + '/lib/errorLogs/createEntry');
program.option('--cronProcessId <cronProcessId>', 'Cron table process ID').parse(process.argv);
program.on('--help', function() {
logger.log('');
logger.log(' Example:');
logger.log('');
logger.log(' node executables/cronProcessesMonitor.js --cronProcessId 3');
logger.log('');
logger.log('');
});
const cronProcessId = +program.cronProcessId;
if (!cronProcessId) {
program.help();
process.exit(1);
}
// Declare variables.
const OFFSET_TIME_IN_MSEC = 5 * 60 * 1000;
/**
* Class for cron processes monitor.
*
* @class CronProcessesMonitorExecutable
*/
class CronProcessesMonitorExecutable extends CronBase {
/**
* Constructor for cron processes monitor.
*
* @augments CronBase
*
* @constructor
*/
constructor() {
const params = { cronProcessId: cronProcessId };
super(params);
const oThis = this;
oThis.canExit = true;
}
/**
* Start the executable.
*
* @returns {Promise<any>}
* @private
*/
async _start() {
const oThis = this;
oThis.canExit = false;
oThis.cronKindToRestartTimeMap = {
[cronProcessesConstants.continuousCronsType]: {
[cronProcessesConstants.blockParser]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.transactionParser]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.blockFinalizer]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.economyAggregator]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.balanceSettler]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.workflowWorker]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.auxWorkflowWorker]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.generateGraph]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.webhookPreprocessor]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.webhookProcessor]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.webhookErrorHandler]: cronProcessesConstants.continuousCronRestartInterval,
[cronProcessesConstants.trackLatestTransaction]: cronProcessesConstants.continuousCronRestartInterval
},
// Restart interval time for periodic crons should match with devops-cron config file.
[cronProcessesConstants.periodicCronsType]: {
[cronProcessesConstants.fundByMasterInternalFunderAuxChainSpecificChainAddresses]: 60 * 60 * 1000,
[cronProcessesConstants.fundByMasterInternalFunderOriginChainSpecific]: 60 * 60 * 1000,
[cronProcessesConstants.fundBySealerAuxChainSpecific]: 60 * 60 * 1000,
[cronProcessesConstants.fundByTokenAuxFunderAuxChainSpecific]: 60 * 60 * 1000,
[cronProcessesConstants.fundByMasterInternalFunderAuxChainSpecificTokenFunderAddresses]: 60 * 60 * 1000,
[cronProcessesConstants.fundByMasterInternalFunderAuxChainSpecificInterChainFacilitatorAddresses]:
60 * 60 * 1000,
[cronProcessesConstants.fundByTokenAuxFunderToExTxWorkers]: 60 * 60 * 1000,
[cronProcessesConstants.originToAuxStateRootSync]: 10 * 24 * 60 * 60 * 1000,
[cronProcessesConstants.auxToOriginStateRootSync]: 10 * 24 * 60 * 60 * 1000,
[cronProcessesConstants.updatePriceOraclePricePoints]: 60 * 60 * 1000,
[cronProcessesConstants.executeRecovery]: 60 * 60 * 1000,
[cronProcessesConstants.updateRealtimeGasPrice]: 60 * 60 * 1000,
[cronProcessesConstants.balanceVerifier]: 24 * 60 * 60 * 1000,
[cronProcessesConstants.recoveryRequestsMonitor]: 60 * 60 * 1000
}
};
await oThis._monitor();
oThis.canExit = true;
return responseHelper.successWithData({});
}
/**
* Monitor cron processes.
*
* @returns {Promise<void>}
* @private
*/
async _monitor() {
const oThis = this;
const existingCrons = await new CronProcessModel()
.select('*')
.where(['status NOT IN (?)', new CronProcessModel().invertedStatuses[cronProcessesConstants.inactiveStatus]])
.fire(),
existingCronsLength = existingCrons.length;
for (let index = 0; index < existingCronsLength; index++) {
const cronEntity = existingCrons[index],
cronKind = cronEntity.kind_name,
currentTimeInMSecs = new Date().getTime(),
lastStartedAtInMSecs = new Date(cronEntity.last_started_at).getTime(),
lastEndedAtInMSecs = new Date(cronEntity.last_ended_at).getTime();
logger.info(
'*** Executing monitoring tasks for cron: [',
cronEntity.id,
cronKind,
'] on machine: ',
cronEntity.ip_address
);
logger.debug('currentTimeInMSecs: ', currentTimeInMSecs);
logger.debug('lastStartedAtInMSecs: ', lastStartedAtInMSecs);
logger.debug('lastEndedAtInMSecs: ', lastEndedAtInMSecs);
if (
CommonValidators.validateZeroInteger(lastEndedAtInMSecs) ||
CommonValidators.validateZeroInteger(lastStartedAtInMSecs)
) {
// For the first time devops will start all the crons by hand.
logger.info('This cron was never started or never ended.');
continue;
}
const invertedRunningStatus = new CronProcessModel().invertedStatuses[cronProcessesConstants.runningStatus],
invertedStoppedStatus = new CronProcessModel().invertedStatuses[cronProcessesConstants.stoppedStatus];
if (oThis.cronKindToRestartTimeMap[cronProcessesConstants.continuousCronsType][cronKind]) {
const restartIntervalForCron =
oThis.cronKindToRestartTimeMap[cronProcessesConstants.continuousCronsType][cronKind];
logger.debug('restartIntervalForCron: ', restartIntervalForCron);
// Check last ended time for continuous crons.
// If last running instance ended before specified offset, notify.
if (
+cronEntity.status === +invertedStoppedStatus &&
currentTimeInMSecs - lastEndedAtInMSecs > OFFSET_TIME_IN_MSEC
) {
const errorIdentifierStr = `${cronKind}:cron_stopped:e_cpm_1`,
debugOptions = {
cronId: cronEntity.id,
cronKind: cronKind,
lastEndTimeFromCron: cronEntity.last_ended_at
};
await oThis._notifyStopState(errorIdentifierStr, debugOptions);
}
// Check last started time for continuous crons.
// If currently running instance has wrong last started at time, notify [very rare case].
if (
+cronEntity.status === +invertedRunningStatus &&
currentTimeInMSecs - lastStartedAtInMSecs > OFFSET_TIME_IN_MSEC + restartIntervalForCron
) {
const errorIdentifierStr = `${cronKind}:cron_stuck:e_cpm_2`,
debugOptions = {
cronId: cronEntity.id,
cronKind: cronKind,
lastEndTimeFromCron: cronEntity.last_started_at
};
await oThis._notify(errorIdentifierStr, debugOptions);
}
} else if (oThis.cronKindToRestartTimeMap[cronProcessesConstants.periodicCronsType][cronKind]) {
const restartIntervalForCron =
oThis.cronKindToRestartTimeMap[cronProcessesConstants.periodicCronsType][cronKind];
logger.debug('restartIntervalForCron: ', restartIntervalForCron);
// Check last ended time for periodic crons.
// If last running instance ended before specified offset, notify.
if (
+cronEntity.status === +invertedStoppedStatus &&
currentTimeInMSecs - lastEndedAtInMSecs > OFFSET_TIME_IN_MSEC + restartIntervalForCron
) {
const errorIdentifierStr = `${cronKind}:cron_stopped:e_cpm_3`,
debugOptions = {
cronId: cronEntity.id,
cronKind: cronKind,
lastEndTimeFromCron: cronEntity.last_ended_at
};
await oThis._notifyStopState(errorIdentifierStr, debugOptions);
}
// Check last started time for periodic crons.
// If currently running instance has wrong last started at time, notify [very rare case].
if (
+cronEntity.status === +invertedRunningStatus &&
currentTimeInMSecs - lastStartedAtInMSecs > OFFSET_TIME_IN_MSEC + restartIntervalForCron
) {
const errorIdentifierStr = `${cronKind}:cron_stuck:e_cpm_4`,
debugOptions = {
cronId: cronEntity.id,
cronKind: cronKind,
lastEndTimeFromCron: cronEntity.last_started_at
};
await oThis._notify(errorIdentifierStr, debugOptions);
}
}
}
}
/**
* Insert entry in error_logs table.
*
* @param {string} errorIdentifier: errorIdentifier
* @param {object} debugOptions: debugOptions
*
* @returns {Promise<void>}
* @private
*/
async _notify(errorIdentifier, debugOptions) {
const errorObject = responseHelper.error({
internal_error_identifier: errorIdentifier,
api_error_identifier: 'cron_stuck',
debug_options: debugOptions
});
await createErrorLogsEntry.perform(errorObject, ErrorLogsConstants.highSeverity);
}
/**
* Insert entry in error_logs table for stop state.
*
* @param {string} errorIdentifier: errorIdentifier
* @param {object} debugOptions: debugOptions
*
* @returns {Promise<void>}
* @private
*/
async _notifyStopState(errorIdentifier, debugOptions) {
const errorObject = responseHelper.error({
internal_error_identifier: errorIdentifier,
api_error_identifier: 'cron_stopped',
debug_options: debugOptions
});
await createErrorLogsEntry.perform(errorObject, ErrorLogsConstants.highSeverity);
}
/**
* This function provides info whether the process has to exit.
*
* @returns {boolean}
* @private
*/
_pendingTasksDone() {
const oThis = this;
return oThis.canExit;
}
/**
* Run validations on input parameters.
*
* @return {Promise<void>}
* @private
*/
async _validateAndSanitize() {}
/**
* Get cron kind.
*
* @returns {string}
*
* @private
*/
get _cronKind() {
return cronProcessesConstants.cronProcessesMonitor;
}
}
const cronProcessesMonitor = new CronProcessesMonitorExecutable({ cronProcessId: +program.cronProcessId });
cronProcessesMonitor
.perform()
.then(function() {
logger.step('** Exiting process');
logger.info('Cron last run at: ', Date.now());
process.emit('SIGINT');
})
.catch(function(err) {
logger.error('** Exiting process due to Error: ', err);
process.emit('SIGINT');
});