switched to applyJitter functions

This commit is contained in:
x
2025-05-02 13:00:37 -04:00
parent 26773a1444
commit 9849a5f136
3 changed files with 7 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
import RE2 from "re2";
import { TKeyStoreFactory } from "@app/keystore/keystore";
import { applyJitter } from "@app/lib/dates";
import { delay as delayMs } from "@app/lib/delay";
import { Lock } from "@app/lib/red-lock";
@@ -37,7 +38,7 @@ export const mockKeyStore = (): TKeyStoreFactory => {
}
// eslint-disable-next-line no-await-in-loop
await delayMs(Math.max(0, delay + Math.floor((Math.random() * 2 - 1) * jitter)));
await delayMs(Math.max(0, applyJitter(delay, jitter)));
}
return totalDeleted;

View File

@@ -1,6 +1,7 @@
import { Redis } from "ioredis";
import { pgAdvisoryLockHashText } from "@app/lib/crypto/hashtext";
import { applyJitter } from "@app/lib/dates";
import { delay as delayMs } from "@app/lib/delay";
import { Redlock, Settings } from "@app/lib/red-lock";
@@ -104,7 +105,7 @@ export const keyStoreFactory = (redisUrl: string) => {
totalDeleted += batch.length;
// eslint-disable-next-line no-await-in-loop
await delayMs(Math.max(0, delay + Math.floor((Math.random() * 2 - 1) * jitter)));
await delayMs(Math.max(0, applyJitter(delay, jitter)));
}
} while (cursor !== "0");
@@ -130,7 +131,7 @@ export const keyStoreFactory = (redisUrl: string) => {
// eslint-disable-next-line
await new Promise((resolve) => {
waitingCb?.();
setTimeout(resolve, Math.max(0, delay + Math.floor((Math.random() * 2 - 1) * jitter)));
setTimeout(resolve, Math.max(0, applyJitter(delay, jitter)));
});
attempts += 1;
// eslint-disable-next-line

View File

@@ -1,5 +1,6 @@
import RE2 from "re2";
import { applyJitter } from "@app/lib/dates";
import { delay as delayMs } from "@app/lib/delay";
import { Lock } from "@app/lib/red-lock";
@@ -38,7 +39,7 @@ export const inMemoryKeyStore = (): TKeyStoreFactory => {
}
// eslint-disable-next-line no-await-in-loop
await delayMs(Math.max(0, delay + Math.floor((Math.random() * 2 - 1) * jitter)));
await delayMs(Math.max(0, applyJitter(delay, jitter)));
}
return totalDeleted;