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

推荐订阅源

V
V2EX
Y
Y Combinator Blog
博客园_首页
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
B
Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
WordPress大学
WordPress大学
L
LangChain Blog
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Help Net Security

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(gateway): avoid blocking usage cache refreshes (#8277...
hclsys · 2026-05-17 · via Recent Commits to openclaw:main

@@ -37,6 +37,7 @@ import type {

3737

SessionsUsageAggregates,

3838

SessionsUsageResult,

3939

} from "../../shared/usage-types.js";

40+

import { runTasksWithConcurrency } from "../../utils/run-with-concurrency.js";

4041

import {

4142

ErrorCodes,

4243

errorShape,

@@ -56,6 +57,7 @@ import type { GatewayRequestHandlers, RespondFn } from "./types.js";

56575758

const COST_USAGE_CACHE_TTL_MS = 30_000;

5859

const COST_USAGE_CACHE_MAX = 256;

60+

const SESSIONS_USAGE_CACHE_READ_CONCURRENCY = 12;

5961

const DAY_MS = 24 * 60 * 60 * 1000;

60626163

type DateRange = { startMs: number; endMs: number };

@@ -744,7 +746,7 @@ async function loadCostUsageSummaryCached(params: {

744746

endMs: params.endMs,

745747

config: params.config,

746748

requestRefresh: true,

747-

refreshMode: "sync-when-empty",

749+

refreshMode: "background",

748750

})

749751

.then((summary) => {

750752

setCostUsageCache(cacheKey, {

@@ -1107,43 +1109,75 @@ export const usageHandlers: GatewayRequestHandlers = {

11071109

target.missingCostEntries += source.missingCostEntries;

11081110

};

110911111110-

for (const merged of limitedEntries) {

1111-

const agentId = merged.agentId;

1112-

let usage: SessionCostSummary | null = null;

1112+

const usageByEntryIndex: Array<SessionCostSummary | null> = Array.from(

1113+

{ length: limitedEntries.length },

1114+

() => null,

1115+

);

1116+

const usageLoadTasks: Array<

1117+

() => Promise<{

1118+

entryIndex: number;

1119+

cacheStatus: UsageCacheStatus;

1120+

summary: SessionCostSummary | null;

1121+

}>

1122+

> = [];

1123+1124+

for (const [entryIndex, merged] of limitedEntries.entries()) {

11131125

const includedSessionIds = merged.includedSessionIds ?? [merged.sessionId];

11141126

for (const includedSessionId of includedSessionIds) {

11151127

const isCurrentSession = includedSessionId === merged.sessionId;

11161128

const includedSessionFile = isCurrentSession

11171129

? merged.sessionFile

11181130

: resolveExistingUsageSessionFile({

11191131

sessionId: includedSessionId,

1120-

agentId,

1132+

agentId: merged.agentId,

11211133

});

11221134

if (!includedSessionFile) {

11231135

continue;

11241136

}

1125-

const cachedUsage = await loadSessionCostSummaryFromCache({

1126-

sessionId: includedSessionId,

1127-

sessionEntry: isCurrentSession ? merged.storeEntry : undefined,

1128-

sessionFile: includedSessionFile,

1129-

config,

1130-

agentId,

1131-

startMs,

1132-

endMs,

1133-

refreshMode: "sync-when-empty",

1137+

usageLoadTasks.push(async () => {

1138+

const cachedUsage = await loadSessionCostSummaryFromCache({

1139+

sessionId: includedSessionId,

1140+

sessionEntry: isCurrentSession ? merged.storeEntry : undefined,

1141+

sessionFile: includedSessionFile,

1142+

config,

1143+

agentId: merged.agentId,

1144+

startMs,

1145+

endMs,

1146+

refreshMode: "background",

1147+

});

1148+

return {

1149+

entryIndex,

1150+

cacheStatus: cachedUsage.cacheStatus,

1151+

summary: cachedUsage.summary,

1152+

};

11341153

});

1135-

cacheStatus = mergeUsageCacheStatus(cacheStatus, cachedUsage.cacheStatus);

1136-

const includedUsage = cachedUsage.summary;

1137-

if (!includedUsage) {

1138-

continue;

1139-

}

1140-

if (!usage) {

1141-

usage = createEmptySessionCostSummary();

1142-

usage.sessionId = merged.sessionId;

1143-

usage.sessionFile = merged.sessionFile;

1144-

}

1145-

mergeSessionUsageInto(usage, includedUsage);

11461154

}

1155+

}

1156+1157+

const usageLoadResult = await runTasksWithConcurrency({

1158+

tasks: usageLoadTasks,

1159+

limit: SESSIONS_USAGE_CACHE_READ_CONCURRENCY,

1160+

errorMode: "stop",

1161+

});

1162+

if (usageLoadResult.hasError) {

1163+

throw usageLoadResult.firstError;

1164+

}

1165+

for (const loaded of usageLoadResult.results) {

1166+

cacheStatus = mergeUsageCacheStatus(cacheStatus, loaded.cacheStatus);

1167+

if (!loaded.summary) {

1168+

continue;

1169+

}

1170+

const merged = limitedEntries[loaded.entryIndex];

1171+

const usage = usageByEntryIndex[loaded.entryIndex] ?? createEmptySessionCostSummary();

1172+

usage.sessionId = merged.sessionId;

1173+

usage.sessionFile = merged.sessionFile;

1174+

mergeSessionUsageInto(usage, loaded.summary);

1175+

usageByEntryIndex[loaded.entryIndex] = usage;

1176+

}

1177+1178+

for (const [entryIndex, merged] of limitedEntries.entries()) {

1179+

const agentId = merged.agentId;

1180+

const usage = usageByEntryIndex[entryIndex];

1147118111481182

if (usage) {

11491183

aggregateTotals.input += usage.input;