mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #3648 from overleaf/em-failed-jobs-limit
Limit the number of failed jobs in bull queues GitOrigin-RevId: 39a9c1385f9f8abadff236f5be35a96ca6a24208
This commit is contained in:
parent
f5965217c4
commit
f4df3df703
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@ const analyticsQueues = {}
|
|||
// useful to inspect recently completed jobs. The bull prometheus exporter also
|
||||
// uses the completed job records to report on job duration.
|
||||
const MAX_COMPLETED_JOBS_RETAINED = 10000
|
||||
const MAX_FAILED_JOBS_RETAINED = 50000
|
||||
|
||||
function initialize() {
|
||||
if (Settings.analytics.enabled) {
|
||||
|
@ -20,6 +21,7 @@ function createQueue(queueName, defaultJobOptions) {
|
|||
redis: Settings.redis.queues,
|
||||
defaultJobOptions: {
|
||||
removeOnComplete: MAX_COMPLETED_JOBS_RETAINED,
|
||||
removeOnFail: MAX_FAILED_JOBS_RETAINED,
|
||||
attempts: 11,
|
||||
backoff: {
|
||||
type: 'exponential',
|
||||
|
|
Loading…
Reference in a new issue