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

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

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(sessions): stop doctor OOM on large session stores an...
openperf · 2026-05-25 · via Recent Commits to openclaw:main

@@ -7,7 +7,7 @@ import {

77

resolveTrajectoryPointerFilePath,

88

} from "../../trajectory/paths.js";

99

import { formatSessionArchiveTimestamp } from "./artifacts.js";

10-

import { enforceSessionDiskBudget } from "./disk-budget.js";

10+

import { enforceSessionDiskBudget, pruneUnreferencedSessionArtifacts } from "./disk-budget.js";

1111

import type { SessionEntry } from "./types.js";

12121313

async function expectPathExists(targetPath: string): Promise<void> {

@@ -102,6 +102,50 @@ describe("enforceSessionDiskBudget", () => {

102102

});

103103

});

104104105+

it("reclaims stale store temps under pressure but never a fresh in-flight one (#56827)", async () => {

106+

await withTempDir({ prefix: "openclaw-disk-budget-" }, async (dir) => {

107+

const storePath = path.join(dir, "sessions.json");

108+

const sessionId = "keep";

109+

const transcriptPath = path.join(dir, `${sessionId}.jsonl`);

110+

const staleTemp = path.join(

111+

dir,

112+

"sessions.json.111.0f9c1a2b-3c4d-4e5f-8a9b-0c1d2e3f4a5b.tmp",

113+

);

114+

const freshTemp = path.join(

115+

dir,

116+

"sessions.json.222.1a2b3c4d-5e6f-4a8b-9c0d-1e2f3a4b5c6d.tmp",

117+

);

118+

const store: Record<string, SessionEntry> = {

119+

"agent:main:main": { sessionId, updatedAt: Date.now() },

120+

};

121+

await fs.writeFile(storePath, JSON.stringify(store, null, 2), "utf-8");

122+

await fs.writeFile(transcriptPath, "k".repeat(80), "utf-8");

123+

await fs.writeFile(staleTemp, "s".repeat(300), "utf-8");

124+

await fs.writeFile(freshTemp, "f".repeat(300), "utf-8");

125+

// Age the stale temp past the staleness window; the fresh one is in-flight.

126+

const old = new Date(Date.now() - 30 * 60 * 1000);

127+

await fs.utimes(staleTemp, old, old);

128+129+

const result = await enforceSessionDiskBudget({

130+

store,

131+

storePath,

132+

maintenance: {

133+

maxDiskBytes: 750,

134+

highWaterBytes: 600,

135+

},

136+

warnOnly: false,

137+

});

138+139+

// Stale orphan reclaimed; fresh in-flight temp (a live atomic-write source)

140+

// and referenced transcript preserved even though still over the high-water mark.

141+

await expectPathMissing(staleTemp);

142+

await expectPathExists(freshTemp);

143+

await expectPathExists(transcriptPath);

144+

expectBudgetResult(result);

145+

expect(result.removedFiles).toBe(1);

146+

});

147+

});

148+105149

it("preserves runtime-provided session keys when removing entries for disk budget", async () => {

106150

await withTempDir({ prefix: "openclaw-disk-budget-" }, async (dir) => {

107151

const storePath = path.join(dir, "sessions.json");

@@ -287,3 +331,41 @@ describe("enforceSessionDiskBudget", () => {

287331

});

288332

});

289333

});

334+335+

describe("pruneUnreferencedSessionArtifacts", () => {

336+

it("reclaims stale store temp sidecars but preserves in-flight ones (#56827)", async () => {

337+

await withTempDir({ prefix: "openclaw-prune-temp-" }, async (dir) => {

338+

const storePath = path.join(dir, "sessions.json");

339+

const staleTemp = path.join(

340+

dir,

341+

"sessions.json.111.0f9c1a2b-3c4d-4e5f-8a9b-0c1d2e3f4a5b.tmp",

342+

);

343+

const freshTemp = path.join(

344+

dir,

345+

"sessions.json.222.1a2b3c4d-5e6f-4a8b-9c0d-1e2f3a4b5c6d.tmp",

346+

);

347+

const store: Record<string, SessionEntry> = {

348+

"agent:main:main": { sessionId: "keep", updatedAt: Date.now() },

349+

};

350+

await fs.writeFile(storePath, JSON.stringify(store, null, 2), "utf-8");

351+

await fs.writeFile(staleTemp, "s".repeat(64), "utf-8");

352+

await fs.writeFile(freshTemp, "f".repeat(64), "utf-8");

353+

// Age the stale temp well past the temp staleness window; keep the other in-flight.

354+

const old = new Date(Date.now() - 30 * 60 * 1000);

355+

await fs.utimes(staleTemp, old, old);

356+357+

const result = await pruneUnreferencedSessionArtifacts({

358+

store,

359+

storePath,

360+

// 30d general cutoff: a stale temp must be reclaimed by its own short window,

361+

// not by the unreferenced-artifact age threshold.

362+

olderThanMs: 30 * 24 * 60 * 60 * 1000,

363+

});

364+365+

await expectPathMissing(staleTemp);

366+

await expectPathExists(freshTemp);

367+

await expectPathExists(storePath);

368+

expect(result.removedFiles).toBeGreaterThanOrEqual(1);

369+

});

370+

});

371+

});