This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
rate_limiter.js
547 lines (466 loc) · 15.8 KB
/
rate_limiter.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
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
// Copyright (c) 2015 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
'use strict';
/* eslint max-statements: [2, 40] */
var assert = require('assert');
var stat = require('./stat-tags.js');
var DEFAULT_SERVICE_RPS_LIMIT = 100;
var DEFAULT_TOTAL_RPS_LIMIT = 1000;
var DEFAULT_BUCKET_NUMBER = 20;
var DEFAULT_TOTAL_KILL_SWITCH_BUFFER = 200;
var DEFAULT_SERVICE_KILL_SWITCH_FACTOR = 2;
var MIN_SERVICE_KILL_SWITCH_FACTOR = 1;
function RateLimiterCounter(options) {
if (!(this instanceof RateLimiterCounter)) {
return new RateLimiterCounter(options);
}
var self = this;
self.index = 0;
self.rps = 0;
self.numOfBuckets = options.numOfBuckets;
self.buckets = [];
// self.buckets is read/written in refresh,
// where read is always after write on a bucket.
self.buckets[0] = 0;
self.rpsLimit = options.rpsLimit;
}
RateLimiterCounter.prototype.refresh =
function refresh() {
var self = this;
// update the sliding window
var next = (self.index + 1) % self.numOfBuckets;
if (self.buckets[next]) {
// offset the bucket being moved out
self.rps -= self.buckets[next];
}
assert(self.rps >= 0, 'rps should always be larger equal to 0');
self.index = next;
self.buckets[self.index] = 0;
};
RateLimiterCounter.prototype.increment =
function increment() {
var self = this;
self.buckets[self.index] += 1;
self.rps += 1;
};
function RateLimiter(options) {
if (!(this instanceof RateLimiter)) {
return new RateLimiter(options);
}
var self = this;
// stats
self.channel = options.channel;
assert(self.channel && !self.channel.topChannel, 'RateLimiter requires top channel');
self.batchStats = options.batchStats;
self.timers = self.channel.timers;
self.numOfBuckets = options.numOfBuckets || DEFAULT_BUCKET_NUMBER;
assert(self.numOfBuckets > 0 && self.numOfBuckets <= 1000, 'counter numOfBuckets should between (0 1000]');
self.cycle = self.numOfBuckets;
self.defaultTotalKillSwitchBuffer = options.defaultTotalKillSwitchBuffer || DEFAULT_TOTAL_KILL_SWITCH_BUFFER;
self.serviceKillSwitchFactor = options.serviceKillSwitchFactor || DEFAULT_SERVICE_KILL_SWITCH_FACTOR;
self.defaultServiceRpsLimit = options.defaultServiceRpsLimit || DEFAULT_SERVICE_RPS_LIMIT;
self.defaultTotalRpsLimit = DEFAULT_TOTAL_RPS_LIMIT;
self.totalRpsLimit = options.totalRpsLimit;
if (typeof self.totalRpsLimit !== 'number') {
self.totalRpsLimit = self.defaultTotalRpsLimit;
}
self.rpsLimitForServiceName = options.rpsLimitForServiceName || Object.create(null);
self.exemptServices = options.exemptServices || [];
self.serviceCounters = Object.create(null);
self.edgeCounters = Object.create(null);
self.ksCounters = Object.create(null);
self.totalRequestCounter = RateLimiterCounter({
numOfBuckets: self.numOfBuckets,
rpsLimit: self.totalRpsLimit
});
self.totalKsCounter = RateLimiterCounter({
numOfBuckets: self.numOfBuckets,
rpsLimit: self.totalRpsLimit + self.defaultTotalKillSwitchBuffer
});
self.refreshDelay = 1000 / self.numOfBuckets;
self.refresh();
self.destroyed = false;
}
RateLimiter.prototype.type = 'tchannel.rate-limiting';
RateLimiter.prototype.refreshCounter =
function refreshCounter(counter, rpsStatsName, rpsLimitStatsName, createStatsTag, tagName) {
var self = this;
if (self.cycle === self.numOfBuckets) {
var statsTag = createStatsTag(tagName);
if (rpsStatsName && counter.rps) {
self.batchStats.pushStat(
rpsStatsName,
'timing',
counter.rps,
statsTag
);
}
if (rpsLimitStatsName) {
self.batchStats.pushStat(
rpsLimitStatsName,
'gauge',
counter.rpsLimit,
statsTag
);
}
}
counter.refresh();
};
RateLimiter.prototype.refreshEachCounter =
function refreshEachCounter(counters, rpsStatsName, rpsLimitStatsName, createStatsTag, removeZeroRps) {
var self = this;
var serviceNames = Object.keys(counters);
for (var i = 0; i < serviceNames.length; i++) {
var counter = counters[serviceNames[i]];
self.refreshCounter(counter,
rpsStatsName,
rpsLimitStatsName,
createStatsTag,
serviceNames[i]
);
if (removeZeroRps && counter.rps === 0) {
delete counters[serviceNames[i]];
}
}
};
RateLimiter.prototype.refresh =
function refresh() {
var self = this;
self.refreshCounter(self.totalRequestCounter,
'tchannel.rate-limiting.total-rps',
'tchannel.rate-limiting.total-rps-limit',
function createEmptyTag() {
return new stat.RateLimiterEmptyTags();
}
);
self.refreshCounter(self.totalKsCounter,
'tchannel.rate-limiting.kill-switch.total-rps',
null,
function createEmptyTag() {
return new stat.RateLimiterEmptyTags();
}
);
self.refreshEachCounter(self.serviceCounters,
'tchannel.rate-limiting.service-rps',
'tchannel.rate-limiting.service-rps-limit',
createServiceTag
);
self.refreshEachCounter(self.ksCounters,
'tchannel.rate-limiting.kill-switch.service-rps',
null,
createServiceTag
);
self.refreshEachCounter(self.edgeCounters,
null,
null,
createEdgeTag,
true
);
self.cycle--;
if (self.cycle <= 0) {
self.cycle = self.numOfBuckets;
}
self.refreshTimer = self.timers.setTimeout(
function refreshAgain() {
self.refresh();
},
self.refreshDelay
);
function createServiceTag(serviceName) {
return new stat.RateLimiterServiceTags(serviceName);
}
function createEdgeTag(serviceName) {
return new stat.RateLimiterEdgeTags(serviceName);
}
};
RateLimiter.prototype.removeServiceCounter =
function removeServiceCounter(serviceName) {
var self = this;
delete self.serviceCounters[serviceName];
};
RateLimiter.prototype.removeKillSwitchCounter =
function removeKillSwitchCounter(serviceName) {
var self = this;
delete self.ksCounters[serviceName];
};
RateLimiter.prototype.updateExemptServices =
function updateExemptServices(exemptServices) {
var self = this;
self.exemptServices = exemptServices;
};
RateLimiter.prototype.getRpsLimitForService =
function getRpsLimitForService(serviceName) {
var self = this;
var limit = self.rpsLimitForServiceName[serviceName];
if (typeof limit !== 'number') {
limit = self.defaultServiceRpsLimit;
}
return limit;
};
RateLimiter.prototype.updateRpsLimitForAllServices =
function updateRpsLimitForAllServices(rpsLimitForServiceName) {
var self = this;
var name;
var limit;
// for removed or updated services
var keys = Object.keys(self.rpsLimitForServiceName);
for (var i = 0; i < keys.length; i++) {
name = keys[i];
limit = rpsLimitForServiceName[name];
if (typeof limit !== 'number') {
limit = 'default';
delete self.rpsLimitForServiceName[name];
}
self.updateServiceLimit(name, limit);
}
// for new services
keys = Object.keys(rpsLimitForServiceName);
for (i = 0; i < keys.length; i++) {
name = keys[i];
limit = self.rpsLimitForServiceName[name];
if (typeof limit !== 'number') {
limit = rpsLimitForServiceName[name];
self.updateServiceLimit(name, limit);
}
}
};
RateLimiter.prototype.updateServiceLimit =
function updateServiceLimit(serviceName, limit) {
var self = this;
if (limit === 'default') {
delete self.rpsLimitForServiceName[serviceName];
limit = self.defaultServiceRpsLimit;
} else {
self.rpsLimitForServiceName[serviceName] = limit;
}
// update counter
var counter = self.serviceCounters[serviceName];
if (counter) {
counter.rpsLimit = limit;
}
// update ks counter
counter = self.ksCounters[serviceName];
if (counter) {
counter.rpsLimit = self.killSwitchLimitForService(serviceName);
}
};
RateLimiter.prototype.updateDefaultServiceRpsLimit =
function updateDefaultServiceRpsLimit(limit) {
var self = this;
if (limit === 0) {
self.defaultServiceRpsLimit = DEFAULT_SERVICE_RPS_LIMIT;
} else {
self.defaultServiceRpsLimit = limit;
}
};
RateLimiter.prototype.updateTotalLimit =
function updateTotalLimit(limit) {
var self = this;
self.totalRpsLimit = limit;
self.totalRequestCounter.rpsLimit = limit;
// allow total RPS limit to kick in first
self.totalKsCounter.rpsLimit = self.totalRpsLimit + self.defaultTotalKillSwitchBuffer;
};
RateLimiter.prototype.createServiceCounter =
function createServiceCounter(serviceName) {
var self = this;
var counter;
assert(serviceName, 'createServiceCounter requires the serviceName');
if (self.exemptServices.indexOf(serviceName) !== -1) {
return null;
}
// if this is an existing service counter
counter = self.serviceCounters[serviceName];
// creating a new service counter
if (!counter) {
var limit = self.rpsLimitForServiceName[serviceName];
if (typeof limit !== 'number') {
limit = self.defaultServiceRpsLimit;
}
counter = RateLimiterCounter({
numOfBuckets: self.numOfBuckets,
rpsLimit: limit
});
self.serviceCounters[serviceName] = counter;
}
return counter;
};
RateLimiter.prototype.killSwitchLimitForService =
function killSwitchLimitForService(serviceName) {
var self = this;
assert(self.serviceCounters[serviceName], 'Cannot find service counter for ' + serviceName);
return self.serviceCounters[serviceName].rpsLimit * self.serviceKillSwitchFactor;
};
RateLimiter.prototype.createKillSwitchServiceCounter =
function createKillSwitchServiceCounter(serviceName) {
var self = this;
var counter;
assert(serviceName, 'createKillSwitchServiceCounter requires the serviceName');
if (self.exemptServices.indexOf(serviceName) !== -1) {
return null;
}
counter = self.ksCounters[serviceName];
if (!counter) {
counter = RateLimiterCounter({
numOfBuckets: self.numOfBuckets,
rpsLimit: self.killSwitchLimitForService(serviceName)
});
self.ksCounters[serviceName] = counter;
}
return counter;
};
RateLimiter.prototype.incrementServiceCounter =
function incrementServiceCounter(serviceName) {
var self = this;
var counter = self.createServiceCounter(serviceName);
if (counter) {
// increment the service counter
counter.increment();
}
};
RateLimiter.prototype.incrementEdgeCounter =
function incrementEdgeCounter(name) {
var self = this;
var counter = self.edgeCounters[name];
if (!counter) {
counter = RateLimiterCounter({
numOfBuckets: self.numOfBuckets,
rpsLimit: 0
});
self.edgeCounters[name] = counter;
}
counter.increment();
};
RateLimiter.prototype.incrementKillSwitchServiceCounter =
function incrementKillSwitchServiceCounter(name) {
var self = this;
var counter = self.ksCounters[name];
if (!counter) {
counter = self.createKillSwitchServiceCounter(name);
}
if (counter) {
counter.increment();
}
};
RateLimiter.prototype.incrementTotalCounter =
function incrementTotalCounter(serviceName) {
var self = this;
if (!serviceName || self.exemptServices.indexOf(serviceName) === -1) {
self.totalRequestCounter.increment();
}
};
RateLimiter.prototype.incrementKillSwitchTotalCounter =
function incrementKillSwitchTotalCounter(serviceName) {
var self = this;
if (!serviceName || self.exemptServices.indexOf(serviceName) === -1) {
self.totalKsCounter.increment();
}
};
RateLimiter.prototype.shouldRateLimitService =
function shouldRateLimitService(serviceName) {
var self = this;
if (self.exemptServices.indexOf(serviceName) !== -1) {
return false;
}
var counter = self.serviceCounters[serviceName];
assert(counter, 'cannot find counter for ' + serviceName);
var result = counter.rpsLimit > 0 && counter.rps > counter.rpsLimit;
if (result) {
self.batchStats.pushStat(
'tchannel.rate-limiting.service-busy',
'counter',
1,
new stat.RateLimiterServiceTags(serviceName)
);
}
return result;
};
RateLimiter.prototype.shouldKillSwitchService =
function shouldKillSwitchService(serviceName) {
var self = this;
if (self.exemptServices.indexOf(serviceName) !== -1) {
return false;
}
var counter = self.ksCounters[serviceName];
assert(counter, 'cannot find kill-switch counter for ' + serviceName);
var result = counter.rpsLimit > 0 && counter.rps > counter.rpsLimit;
if (result) {
self.batchStats.pushStat(
'tchannel.rate-limiting.service-kill-switched',
'counter',
1,
new stat.RateLimiterServiceTags(serviceName)
);
}
return result;
};
RateLimiter.prototype.shouldRateLimitTotalRequest =
function shouldRateLimitTotalRequest(serviceName) {
var self = this;
var result;
if (!serviceName || self.exemptServices.indexOf(serviceName) === -1) {
result =
self.totalRequestCounter.rpsLimit > 0 &&
self.totalRequestCounter.rps > self.totalRequestCounter.rpsLimit;
} else {
result = false;
}
if (result) {
self.batchStats.pushStat(
'tchannel.rate-limiting.total-busy',
'counter',
1,
new stat.RateLimiterServiceTags(serviceName)
);
}
return result;
};
RateLimiter.prototype.shouldKillSwitchTotalRequest =
function shouldKillSwitchTotalRequest(serviceName) {
var self = this;
var result;
if (!serviceName || self.exemptServices.indexOf(serviceName) === -1) {
result =
self.totalKsCounter.rpsLimit > 0 &&
self.totalKsCounter.rps > self.totalKsCounter.rpsLimit;
} else {
result = false;
}
if (result) {
self.batchStats.pushStat(
'tchannel.rate-limiting.total-kill-switched',
'counter',
1,
new stat.RateLimiterServiceTags(serviceName)
);
}
return result;
};
RateLimiter.prototype.setServiceKillSwitchFactor = function setServiceKillSwitchFactor(factor) {
this.serviceKillSwitchFactor = Math.max(MIN_SERVICE_KILL_SWITCH_FACTOR,
factor || DEFAULT_SERVICE_KILL_SWITCH_FACTOR);
};
RateLimiter.prototype.destroy =
function destroy() {
var self = this;
self.destroyed = true;
self.timers.clearTimeout(self.refreshTimer);
};
module.exports = RateLimiter;