惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
博客园 - 【当耐特】
量子位
有赞技术团队
有赞技术团队
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
C
Check Point Blog
B
Blog RSS Feed
M
MIT News - Artificial intelligence
H
Help Net Security
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
腾讯CDC

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(active-memory): add timeout circuit breaker to skip ...
yelog · 2026-04-29 · via Recent Commits to openclaw:main

@@ -39,6 +39,8 @@ const DEFAULT_SETUP_GRACE_TIMEOUT_MS = 30_000;

3939

const DEFAULT_QUERY_MODE = "recent" as const;

4040

const DEFAULT_QMD_SEARCH_MODE = "search" as const;

4141

const DEFAULT_TRANSCRIPT_DIR = "active-memory";

42+

const DEFAULT_CIRCUIT_BREAKER_MAX_TIMEOUTS = 3;

43+

const DEFAULT_CIRCUIT_BREAKER_COOLDOWN_MS = 60_000;

4244

const TOGGLE_STATE_FILE = "session-toggles.json";

4345

const DEFAULT_PARTIAL_TRANSCRIPT_MAX_CHARS = 32_000;

4446

const DEFAULT_TRANSCRIPT_READ_MAX_LINES = 2_000;

@@ -97,6 +99,8 @@ type ActiveRecallPluginConfig = {

9799

recentAssistantChars?: number;

98100

logging?: boolean;

99101

cacheTtlMs?: number;

102+

circuitBreakerMaxTimeouts?: number;

103+

circuitBreakerCooldownMs?: number;

100104

persistTranscripts?: boolean;

101105

transcriptDir?: string;

102106

qmd?: {

@@ -134,6 +138,8 @@ type ResolvedActiveRecallPluginConfig = {

134138

recentAssistantChars: number;

135139

logging: boolean;

136140

cacheTtlMs: number;

141+

circuitBreakerMaxTimeouts: number;

142+

circuitBreakerCooldownMs: number;

137143

persistTranscripts: boolean;

138144

transcriptDir: string;

139145

qmd: {

@@ -278,6 +284,44 @@ const MAX_LOG_VALUE_CHARS = 300;

278284279285

const activeRecallCache = new Map<string, CachedActiveRecallResult>();

280286287+

type CircuitBreakerEntry = {

288+

consecutiveTimeouts: number;

289+

lastTimeoutAt: number;

290+

};

291+292+

const timeoutCircuitBreaker = new Map<string, CircuitBreakerEntry>();

293+294+

function buildCircuitBreakerKey(agentId: string, provider?: string, model?: string): string {

295+

return `${agentId}:${provider ?? "unknown"}/${model ?? "unknown"}`;

296+

}

297+298+

function isCircuitBreakerOpen(key: string, maxTimeouts: number, cooldownMs: number): boolean {

299+

const entry = timeoutCircuitBreaker.get(key);

300+

if (!entry || entry.consecutiveTimeouts < maxTimeouts) {

301+

return false;

302+

}

303+

if (Date.now() - entry.lastTimeoutAt >= cooldownMs) {

304+

// Cooldown expired — reset and allow one attempt through.

305+

timeoutCircuitBreaker.delete(key);

306+

return false;

307+

}

308+

return true;

309+

}

310+311+

function recordCircuitBreakerTimeout(key: string): void {

312+

const entry = timeoutCircuitBreaker.get(key);

313+

if (entry) {

314+

entry.consecutiveTimeouts++;

315+

entry.lastTimeoutAt = Date.now();

316+

} else {

317+

timeoutCircuitBreaker.set(key, { consecutiveTimeouts: 1, lastTimeoutAt: Date.now() });

318+

}

319+

}

320+321+

function resetCircuitBreaker(key: string): void {

322+

timeoutCircuitBreaker.delete(key);

323+

}

324+281325

function parseOptionalPositiveInt(value: unknown, fallback: number): number {

282326

const parsed =

283327

typeof value === "number"

@@ -718,6 +762,18 @@ function normalizePluginConfig(pluginConfig: unknown): ResolvedActiveRecallPlugi

718762

),

719763

logging: raw.logging === true,

720764

cacheTtlMs: clampInt(raw.cacheTtlMs, DEFAULT_CACHE_TTL_MS, 1000, 120_000),

765+

circuitBreakerMaxTimeouts: clampInt(

766+

raw.circuitBreakerMaxTimeouts,

767+

DEFAULT_CIRCUIT_BREAKER_MAX_TIMEOUTS,

768+

1,

769+

20,

770+

),

771+

circuitBreakerCooldownMs: clampInt(

772+

raw.circuitBreakerCooldownMs,

773+

DEFAULT_CIRCUIT_BREAKER_COOLDOWN_MS,

774+

5000,

775+

600_000,

776+

),

721777

persistTranscripts: raw.persistTranscripts === true,

722778

transcriptDir: normalizeTranscriptDir(raw.transcriptDir),

723779

qmd: {

@@ -2181,6 +2237,39 @@ async function maybeResolveActiveRecall(params: {

21812237

return cached;

21822238

}

218322392240+

// Circuit breaker: skip recall when the same agent/model has timed out

2241+

// too many times in a row (#74054).

2242+

const cbKey = buildCircuitBreakerKey(

2243+

params.agentId,

2244+

resolvedModelRef?.provider,

2245+

resolvedModelRef?.model,

2246+

);

2247+

if (

2248+

isCircuitBreakerOpen(

2249+

cbKey,

2250+

params.config.circuitBreakerMaxTimeouts,

2251+

params.config.circuitBreakerCooldownMs,

2252+

)

2253+

) {

2254+

const result: ActiveRecallResult = {

2255+

status: "timeout",

2256+

elapsedMs: 0,

2257+

summary: null,

2258+

};

2259+

if (params.config.logging) {

2260+

params.api.logger.info?.(

2261+

`${logPrefix} skipped (circuit breaker open after consecutive timeouts)`,

2262+

);

2263+

}

2264+

await persistPluginStatusLines({

2265+

api: params.api,

2266+

agentId: params.agentId,

2267+

sessionKey: params.sessionKey,

2268+

statusLine: `${buildPluginStatusLine({ result, config: params.config })} circuit-breaker`,

2269+

});

2270+

return result;

2271+

}

2272+21842273

if (params.config.logging) {

21852274

params.api.logger.info?.(

21862275

`${logPrefix} start timeoutMs=${String(params.config.timeoutMs)} queryChars=${String(params.query.length)}`,

@@ -2241,6 +2330,7 @@ async function maybeResolveActiveRecall(params: {

22412330

debugSummary: buildPersistedDebugSummary(result),

22422331

searchDebug: result.searchDebug,

22432332

});

2333+

recordCircuitBreakerTimeout(cbKey);

22442334

return result;

22452335

}

22462336

@@ -2283,6 +2373,7 @@ async function maybeResolveActiveRecall(params: {

22832373

if (shouldCacheResult(result)) {

22842374

setCachedResult(cacheKey, result, params.config.cacheTtlMs);

22852375

}

2376+

resetCircuitBreaker(cbKey);

22862377

return result;

22872378

} catch (error) {

22882379

if (controller.signal.aborted) {

@@ -2307,6 +2398,7 @@ async function maybeResolveActiveRecall(params: {

23072398

debugSummary: buildPersistedDebugSummary(result),

23082399

searchDebug: result.searchDebug,

23092400

});

2401+

recordCircuitBreakerTimeout(cbKey);

23102402

return result;

23112403

}

23122404

const message = toSingleLineLogValue(error instanceof Error ? error.message : String(error));

@@ -2544,16 +2636,19 @@ export default definePluginEntry({

2544263625452637

export const __testing = {

25462638

buildCacheKey,

2639+

buildCircuitBreakerKey,

25472640

buildMetadata,

25482641

buildPluginStatusLine,

25492642

buildPromptPrefix,

25502643

getCachedResult,

2644+

isCircuitBreakerOpen,

25512645

normalizePluginConfig,

25522646

readActiveMemorySearchDebug,

25532647

readPartialAssistantText,

25542648

shouldCacheResult,

25552649

resetActiveRecallCacheForTests() {

25562650

activeRecallCache.clear();

2651+

timeoutCircuitBreaker.clear();

25572652

lastActiveRecallCacheSweepAt = 0;

25582653

minimumTimeoutMs = DEFAULT_MIN_TIMEOUT_MS;

25592654

setupGraceTimeoutMs = DEFAULT_SETUP_GRACE_TIMEOUT_MS;

@@ -2565,4 +2660,7 @@ export const __testing = {

25652660

setupGraceTimeoutMs = Math.max(0, Math.floor(value));

25662661

},

25672662

setCachedResult,

2663+

getCircuitBreakerEntry(key: string) {

2664+

return timeoutCircuitBreaker.get(key);

2665+

},

25682666

};