-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
backoff.js
204 lines (156 loc) · 4.49 KB
/
backoff.js
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
var debug = require('debug')('worker:backoff');
var extend = require('xtend');
var defaultOptions = {
maxPollingInterval: 30000,
minPollingInterval: 0,
maxActiveTasks: -1,
stepping: 1.5
};
function parseOptions(options) {
return extend({}, defaultOptions, options || {});
}
/**
* A worker extension that adjusts the worker polling delay
* based on availability of the Camunda REST api, fetched tasks
* and poll times.
*
* @example
*
* var worker = Worker(engineEndpoint, {
* use: [
* [ Backoff, { maxTasks: 40 } ]
* ]
* });
*
* @param {Worker} worker
* @param {Object} options
* @param {Number} [options.maxPollingInterval=30000] maximum time (ms) to wait between polls
* @param {Number} [options.minPollingInterval=0] minimum time (ms) to wait between polls
* @param {Number} [options.maxActiveTasks=-1] maximum amout of active tasks to accept
* @param {Number} [options.stepping]
*/
function Backoff(worker, options) {
const {
maxPollingInterval,
minPollingInterval,
maxActiveTasks,
stepping
} = parseOptions(options);
const defaultPollingInterval = worker.options.pollingInterval;
const defaultMaxTasks = worker.options.maxTasks;
let activeTasks = 0;
function updatePollingInterval(newInterval, reason) {
// fence newInterval to [minPollingInterval, maxPollingInteral]
newInterval = Math.min(
maxPollingInterval,
Math.max(
minPollingInterval,
newInterval
)
);
var currentInterval = worker.options.pollingInterval;
if (Math.abs(currentInterval - newInterval) < 100) {
return;
}
worker.configure({
pollingInterval: newInterval
});
worker.emit(
'backoff:updatePollingInterval',
newInterval,
currentInterval,
reason
);
var mode = 'adjusting';
if (newInterval === defaultPollingInterval) {
mode = 'resetting';
} else
if (newInterval > currentInterval) {
mode = 'increasing';
} else {
mode = 'decreasing';
}
debug(
'%s pollingInterval [new=%s, old=%s, reason="%s"]',
mode, newInterval, currentInterval, reason
);
}
function updateMaxTasks(newMaxTasks, reason) {
const currentMaxTasks = worker.options.maxTasks;
if (newMaxTasks === currentMaxTasks) {
return;
}
worker.configure({
maxTasks: newMaxTasks
});
worker.emit(
'backoff:updateMaxTasks',
newMaxTasks,
currentMaxTasks,
reason
);
debug(
'setting maxTasks [new=%s, old=%s, active=%s, reason="%s"]',
newMaxTasks, currentMaxTasks, activeTasks, reason
);
}
// backoff on fetch tasks failure
worker.on('fetchTasks:failed', function() {
var currentInterval = worker.options.pollingInterval;
var newInterval =
currentInterval === 0
? defaultPollingInterval :
currentInterval * stepping;
updatePollingInterval(newInterval, 'fetchTasks failed');
});
// restore on fetch task success,
// set to minPollingInterval if maxTasks where fetched
worker.on('fetchTasks:success', function(tasks) {
const {
maxTasks
} = worker.options;
if (maxTasks !== 0) {
if (tasks.length >= maxTasks) {
// not all tasks have been fetched, retry ASAP
return updatePollingInterval(minPollingInterval, 'maxTasks fetched');
} else {
// all available tasks got fetched; retry with defaul interval
return updatePollingInterval(defaultPollingInterval, 'less than maxTasks fetched');
}
}
});
worker.on('executeTask', function() {
if (maxActiveTasks === -1) {
return;
}
if ((++activeTasks) === maxActiveTasks) {
updateMaxTasks(0, 'maxActiveTasks reached');
const {
pollingInterval
} = worker.options;
if (pollingInterval !== defaultPollingInterval) {
return updatePollingInterval(defaultPollingInterval, 'maxActiveTasks reached');
}
}
});
worker.on('executeTask:done', function() {
if (maxActiveTasks === -1) {
return;
}
if ((activeTasks--) === maxActiveTasks) {
updateMaxTasks(defaultMaxTasks, 'maxActiveTasks underrun');
updatePollingInterval(minPollingInterval, 'maxActiveTasks underrun');
}
});
// compensate for long polling times
worker.on('poll:done', function(reason, pollTime) {
const {
pollingInterval
} = worker.options;
return updatePollingInterval(
pollingInterval - pollTime,
'post poll adjustment'
);
});
}
module.exports = Backoff;