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

推荐订阅源

Recent Announcements
Recent Announcements
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
小众软件
小众软件
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
A
About on SuperTechFans
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
B
Blog RSS Feed
G
Google Developers Blog
量子位
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)

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
fix(model-fallback): coalesce auth decision logs (#94233)...
goutamadwant · 2026-06-23 · via Recent Commits to openclaw:main

@@ -10,6 +10,8 @@ import type { FailoverReason } from "./embedded-agent-helpers.js";

1010

import type { FallbackAttempt, ModelCandidate } from "./model-fallback.types.js";

11111212

const decisionLog = createSubsystemLogger("model-fallback").child("decision");

13+

const AUTH_DECISION_LOG_COALESCE_WINDOW_MS = 30_000;

14+

const AUTH_DECISION_LOG_COALESCE_MAX_ENTRIES = 100;

13151416

/** Return whether fallback decision logging is enabled for warn-level events. */

1517

export function isModelFallbackDecisionLogEnabled(): boolean {

@@ -37,6 +39,18 @@ function buildErrorObservationFields(error?: string): {

3739

};

3840

}

394142+

type ErrorObservationFields = ReturnType<typeof buildErrorObservationFields>;

43+

type AuthDecisionLogCoalesceEntry = {

44+

lastLoggedAt: number;

45+

suppressed: number;

46+

};

47+48+

const authDecisionLogCoalesceEntries = new Map<string, AuthDecisionLogCoalesceEntry>();

49+50+

export function resetModelFallbackDecisionLogCoalescingForTest(): void {

51+

authDecisionLogCoalesceEntries.clear();

52+

}

53+4054

type FallbackStepOutcome = "next_fallback" | "succeeded" | "chain_exhausted";

41554256

/** Structured fields that describe one fallback-chain transition. */

@@ -82,6 +96,104 @@ function formatModelRef(candidate: ModelCandidate): string {

8296

return `${candidate.provider}/${candidate.model}`;

8397

}

849899+

function isAuthDecisionLogCoalescingEligible(params: ModelFallbackDecisionParams): boolean {

100+

return (

101+

(params.decision === "candidate_failed" || params.decision === "skip_candidate") &&

102+

(params.reason === "auth" || params.reason === "auth_permanent")

103+

);

104+

}

105+106+

function buildAuthDecisionLogCoalesceKey(

107+

params: ModelFallbackDecisionParams,

108+

observedError: ErrorObservationFields,

109+

): string {

110+

return JSON.stringify([

111+

params.sessionId ?? params.runId,

112+

params.lane,

113+

params.requestedProvider,

114+

params.requestedModel,

115+

params.decision,

116+

params.candidate.provider,

117+

params.candidate.model,

118+

params.attempt,

119+

params.total,

120+

params.reason,

121+

params.status,

122+

params.code,

123+

observedError.httpCode,

124+

observedError.providerErrorType,

125+

observedError.errorFingerprint ?? observedError.errorHash,

126+

params.nextCandidate ? formatModelRef(params.nextCandidate) : null,

127+

params.isPrimary,

128+

params.requestedModelMatched,

129+

params.fallbackConfigured,

130+

]);

131+

}

132+133+

function pruneAuthDecisionLogCoalesceEntries(now: number): void {

134+

const staleBefore = now - AUTH_DECISION_LOG_COALESCE_WINDOW_MS * 2;

135+

for (const [key, entry] of authDecisionLogCoalesceEntries) {

136+

if (entry.lastLoggedAt < staleBefore) {

137+

authDecisionLogCoalesceEntries.delete(key);

138+

}

139+

}

140+

}

141+142+

function evictOldestAuthDecisionLogCoalesceEntry(): void {

143+

let oldestKey: string | undefined;

144+

let oldestLoggedAt = Infinity;

145+

for (const [key, entry] of authDecisionLogCoalesceEntries) {

146+

if (entry.lastLoggedAt < oldestLoggedAt) {

147+

oldestLoggedAt = entry.lastLoggedAt;

148+

oldestKey = key;

149+

}

150+

}

151+

if (oldestKey !== undefined) {

152+

authDecisionLogCoalesceEntries.delete(oldestKey);

153+

}

154+

}

155+156+

function rememberAuthDecisionLogCoalesceEntry(key: string, now: number): void {

157+

if (!authDecisionLogCoalesceEntries.has(key)) {

158+

pruneAuthDecisionLogCoalesceEntries(now);

159+

if (authDecisionLogCoalesceEntries.size >= AUTH_DECISION_LOG_COALESCE_MAX_ENTRIES) {

160+

evictOldestAuthDecisionLogCoalesceEntry();

161+

}

162+

}

163+

authDecisionLogCoalesceEntries.set(key, { lastLoggedAt: now, suppressed: 0 });

164+

}

165+166+

function resolveAuthDecisionLogCoalescing(

167+

params: ModelFallbackDecisionParams,

168+

observedError: ErrorObservationFields,

169+

): { shouldLog: boolean; suppressedDuplicateCount?: number } {

170+

if (!isAuthDecisionLogCoalescingEligible(params)) {

171+

return { shouldLog: true };

172+

}

173+174+

const now = Date.now();

175+

const key = buildAuthDecisionLogCoalesceKey(params, observedError);

176+

const recent = authDecisionLogCoalesceEntries.get(key);

177+

const recentAgeMs = recent ? now - recent.lastLoggedAt : undefined;

178+

if (

179+

recent &&

180+

recentAgeMs !== undefined &&

181+

recentAgeMs >= AUTH_DECISION_LOG_COALESCE_WINDOW_MS * 2

182+

) {

183+

authDecisionLogCoalesceEntries.delete(key);

184+

rememberAuthDecisionLogCoalesceEntry(key, now);

185+

return { shouldLog: true };

186+

}

187+

if (recent && recentAgeMs !== undefined && recentAgeMs < AUTH_DECISION_LOG_COALESCE_WINDOW_MS) {

188+

recent.suppressed += 1;

189+

return { shouldLog: false };

190+

}

191+192+

const suppressedDuplicateCount = recent?.suppressed;

193+

rememberAuthDecisionLogCoalesceEntry(key, now);

194+

return { shouldLog: true, suppressedDuplicateCount };

195+

}

196+85197

function buildFallbackStepFields(params: {

86198

decision: "skip_candidate" | "candidate_failed" | "candidate_succeeded";

87199

candidate: ModelCandidate;

@@ -158,6 +270,17 @@ export function logModelFallbackDecision(

158270

? ` providerErrorType=${sanitizeForLog(observedError.providerErrorType)}`

159271

: "";

160272

const detailSuffix = detailText ? ` detail=${sanitizeForLog(detailText)}` : "";

273+

const logCoalescing = resolveAuthDecisionLogCoalescing(params, observedError);

274+

if (!logCoalescing.shouldLog) {

275+

return fallbackStepFields;

276+

}

277+

const suppressedDuplicateCount = logCoalescing.suppressedDuplicateCount ?? 0;

278+

const suppressedSuffix =

279+

suppressedDuplicateCount > 0

280+

? ` (${suppressedDuplicateCount} duplicates suppressed in last ${

281+

AUTH_DECISION_LOG_COALESCE_WINDOW_MS / 1000

282+

}s)`

283+

: "";

161284

decisionLog.warn("model fallback decision", {

162285

event: "model_fallback_decision",

163286

tags: ["error_handling", "model_fallback", params.decision],

@@ -183,6 +306,7 @@ export function logModelFallbackDecision(

183306

fallbackConfigured: params.fallbackConfigured,

184307

allowTransientCooldownProbe: params.allowTransientCooldownProbe,

185308

profileCount: params.profileCount,

309+

...(suppressedDuplicateCount > 0 ? { suppressedDuplicateCount } : {}),

186310

previousAttempts: params.previousAttempts?.map((attempt) => ({

187311

provider: attempt.provider,

188312

model: attempt.model,

@@ -193,7 +317,7 @@ export function logModelFallbackDecision(

193317

})),

194318

consoleMessage:

195319

`model fallback decision: decision=${params.decision} requested=${sanitizeForLog(params.requestedProvider)}/${sanitizeForLog(params.requestedModel)} ` +

196-

`candidate=${sanitizeForLog(params.candidate.provider)}/${sanitizeForLog(params.candidate.model)} reason=${reasonText}${providerErrorTypeSuffix} next=${nextText}${detailSuffix}`,

320+

`candidate=${sanitizeForLog(params.candidate.provider)}/${sanitizeForLog(params.candidate.model)} reason=${reasonText}${providerErrorTypeSuffix} next=${nextText}${detailSuffix}${suppressedSuffix}`,

197321

});

198322

return fallbackStepFields;

199323

}