perf: speed up memory batch polling

This commit is contained in:
Peter Steinberger
2026-01-18 03:55:09 +00:00
parent 0d9172d761
commit afb877a96b
10 changed files with 62 additions and 10 deletions

View File

@@ -82,7 +82,7 @@ describe("memory search config", () => {
enabled: true,
wait: true,
concurrency: 2,
pollIntervalMs: 5000,
pollIntervalMs: 500,
timeoutMinutes: 60,
});
});
@@ -135,7 +135,7 @@ describe("memory search config", () => {
enabled: true,
wait: true,
concurrency: 2,
pollIntervalMs: 5000,
pollIntervalMs: 500,
timeoutMinutes: 60,
},
});

View File

@@ -120,7 +120,7 @@ function mergeConfig(
overrides?.remote?.batch?.concurrency ?? defaults?.remote?.batch?.concurrency ?? 2,
),
pollIntervalMs:
overrides?.remote?.batch?.pollIntervalMs ?? defaults?.remote?.batch?.pollIntervalMs ?? 5000,
overrides?.remote?.batch?.pollIntervalMs ?? defaults?.remote?.batch?.pollIntervalMs ?? 500,
timeoutMinutes:
overrides?.remote?.batch?.timeoutMinutes ?? defaults?.remote?.batch?.timeoutMinutes ?? 60,
};