mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
7f9fd00bda
[misc] fix eslint violations for node/handle-callback-err GitOrigin-RevId: 83a4900e8861010df1917bff49382bd9c93375bd
85 lines
2.4 KiB
JavaScript
85 lines
2.4 KiB
JavaScript
/* eslint-disable
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
let RateLimiter
|
|
const Settings = require('@overleaf/settings')
|
|
const logger = require('@overleaf/logger')
|
|
const Metrics = require('./Metrics')
|
|
|
|
module.exports = RateLimiter = class RateLimiter {
|
|
constructor(number) {
|
|
if (number == null) {
|
|
number = 10
|
|
}
|
|
this.ActiveWorkerCount = 0
|
|
this.CurrentWorkerLimit = number
|
|
this.BaseWorkerCount = number
|
|
}
|
|
|
|
_adjustLimitUp() {
|
|
this.CurrentWorkerLimit += 0.1 // allow target worker limit to increase gradually
|
|
return Metrics.gauge('currentLimit', Math.ceil(this.CurrentWorkerLimit))
|
|
}
|
|
|
|
_adjustLimitDown() {
|
|
this.CurrentWorkerLimit = Math.max(
|
|
this.BaseWorkerCount,
|
|
this.CurrentWorkerLimit * 0.9
|
|
)
|
|
logger.debug(
|
|
{ currentLimit: Math.ceil(this.CurrentWorkerLimit) },
|
|
'reducing rate limit'
|
|
)
|
|
return Metrics.gauge('currentLimit', Math.ceil(this.CurrentWorkerLimit))
|
|
}
|
|
|
|
_trackAndRun(task, callback) {
|
|
if (callback == null) {
|
|
callback = function () {}
|
|
}
|
|
this.ActiveWorkerCount++
|
|
Metrics.gauge('processingUpdates', this.ActiveWorkerCount)
|
|
return task(err => {
|
|
this.ActiveWorkerCount--
|
|
Metrics.gauge('processingUpdates', this.ActiveWorkerCount)
|
|
return callback(err)
|
|
})
|
|
}
|
|
|
|
run(task, callback) {
|
|
if (this.ActiveWorkerCount < this.CurrentWorkerLimit) {
|
|
// below the limit, just put the task in the background
|
|
this._trackAndRun(task, err => {
|
|
if (err) {
|
|
logger.error({ err }, 'error in background task')
|
|
}
|
|
})
|
|
callback() // return immediately
|
|
if (this.CurrentWorkerLimit > this.BaseWorkerCount) {
|
|
return this._adjustLimitDown()
|
|
}
|
|
} else {
|
|
logger.debug(
|
|
{
|
|
active: this.ActiveWorkerCount,
|
|
currentLimit: Math.ceil(this.CurrentWorkerLimit),
|
|
},
|
|
'hit rate limit'
|
|
)
|
|
return this._trackAndRun(task, err => {
|
|
if (err == null) {
|
|
this._adjustLimitUp()
|
|
} // don't increment rate limit if there was an error
|
|
return callback(err)
|
|
}) // only return after task completes
|
|
}
|
|
}
|
|
}
|