Skip to content

Commit 35d1621

Browse files
authored
Merge pull request #9093 from liranmauda/liran-backport-into-5.18
[Backport into 5.18] Noobaa LONG QUERY causing timeouts on endpoints
2 parents f2696f9 + e3970cd commit 35d1621

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,10 +386,10 @@ config.BUCKET_RECLAIMER_BATCH_DELAY = 100;
386386
config.BUCKET_RECLAIMER_ERROR_DELAY = 3000;
387387

388388
config.OBJECT_RECLAIMER_ENABLED = true;
389-
config.OBJECT_RECLAIMER_EMPTY_DELAY = 30000;
389+
config.OBJECT_RECLAIMER_EMPTY_DELAY = 60 * 60 * 1000; // 1 hour delay
390390
config.OBJECT_RECLAIMER_BATCH_SIZE = 100;
391-
config.OBJECT_RECLAIMER_BATCH_DELAY = 100;
392-
config.OBJECT_RECLAIMER_ERROR_DELAY = 3000;
391+
config.OBJECT_RECLAIMER_BATCH_DELAY = 10 * 60 * 1000; // 10 minutes delay between batches
392+
config.OBJECT_RECLAIMER_ERROR_DELAY = 10 * 60 * 1000; // 10 minutes delay between batches;
393393

394394

395395
//////////////////

0 commit comments

Comments
 (0)