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

推荐订阅源

Martin Fowler
Martin Fowler
V
Visual Studio Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
B
Blog
I
InfoQ
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs
H
Help Net Security
博客园 - Franky
宝玉的分享
宝玉的分享
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家

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(memory): swap rollback-journal sidecar during atomic ...
Alix-007 · 2026-06-16 · via Recent Commits to openclaw:main

@@ -99,7 +99,8 @@ describe("memory manager atomic reindex", () => {

9999

renameRetryDelayMs: 10,

100100

});

101101102-

expect(rename).toHaveBeenCalledTimes(4);

102+

// main (1 retry) + -wal + -shm + -journal.

103+

expect(rename).toHaveBeenCalledTimes(5);

103104

expect(wait).toHaveBeenCalledTimes(1);

104105

expect(wait).toHaveBeenCalledWith(10);

105106

});

@@ -128,7 +129,8 @@ describe("memory manager atomic reindex", () => {

128129

.fn()

129130

.mockResolvedValueOnce(undefined)

130131

.mockRejectedValueOnce(Object.assign(new Error("missing wal"), { code: "ENOENT" }))

131-

.mockRejectedValueOnce(Object.assign(new Error("missing shm"), { code: "ENOENT" }));

132+

.mockRejectedValueOnce(Object.assign(new Error("missing shm"), { code: "ENOENT" }))

133+

.mockRejectedValueOnce(Object.assign(new Error("missing journal"), { code: "ENOENT" }));

132134

const wait = vi.fn().mockResolvedValue(undefined);

133135134136

await moveMemoryIndexFiles("index.sqlite.tmp", "index.sqlite", {

@@ -137,7 +139,8 @@ describe("memory manager atomic reindex", () => {

137139

renameRetryDelayMs: 10,

138140

});

139141140-

expect(rename).toHaveBeenCalledTimes(3);

142+

// main + the three optional sidecars (-wal, -shm, -journal), none retried.

143+

expect(rename).toHaveBeenCalledTimes(4);

141144

expect(wait).not.toHaveBeenCalled();

142145

});

143146

@@ -202,6 +205,7 @@ describe("memory manager atomic reindex", () => {

202205

"index.sqlite.tmp",

203206

"index.sqlite.tmp-wal",

204207

"index.sqlite.tmp-shm",

208+

"index.sqlite.tmp-journal",

205209

]);

206210

expect(wait).toHaveBeenCalledTimes(1);

207211

expect(wait).toHaveBeenCalledWith(10);

@@ -273,6 +277,7 @@ describe("memory manager atomic reindex", () => {

273277

"rm:index.sqlite.tmp:closed",

274278

"rm:index.sqlite.tmp-wal:closed",

275279

"rm:index.sqlite.tmp-shm:closed",

280+

"rm:index.sqlite.tmp-journal:closed",

276281

]);

277282

});

278283

@@ -313,8 +318,10 @@ describe("memory manager atomic reindex", () => {

313318

writeChunkMarker(tempIndexPath, "after");

314319

await fs.writeFile(`${indexPath}-wal`, "stale wal");

315320

await fs.writeFile(`${indexPath}-shm`, "stale shm");

321+

await fs.writeFile(`${indexPath}-journal`, "stale journal");

316322

await fs.writeFile(`${tempIndexPath}-wal`, "closed temp wal");

317323

await fs.writeFile(`${tempIndexPath}-shm`, "closed temp shm");

324+

await fs.writeFile(`${tempIndexPath}-journal`, "closed temp journal");

318325319326

const events: string[] = [];

320327

const realRename = fs.rename;

@@ -340,21 +347,90 @@ describe("memory manager atomic reindex", () => {

340347

});

341348342349

expect(readChunkMarker(indexPath)).toBe("after");

343-

expect(rename).toHaveBeenCalledTimes(3);

350+

expect(rename).toHaveBeenCalledTimes(4);

344351

expect(events).toEqual([

345352

"rename:index.sqlite-wal->index.sqlite.backup-<uuid>-wal",

346353

"rename:index.sqlite-shm->index.sqlite.backup-<uuid>-shm",

354+

"rename:index.sqlite-journal->index.sqlite.backup-<uuid>-journal",

347355

"rename:index.sqlite.tmp->index.sqlite",

348356

"rm:index.sqlite.backup-<uuid>:after",

349357

"rm:index.sqlite.backup-<uuid>-wal:after",

350358

"rm:index.sqlite.backup-<uuid>-shm:after",

359+

"rm:index.sqlite.backup-<uuid>-journal:after",

351360

"rm:index.sqlite.tmp-wal:after",

352361

"rm:index.sqlite.tmp-shm:after",

362+

"rm:index.sqlite.tmp-journal:after",

353363

]);

354364

await expectPathMissing(`${indexPath}-wal`);

355365

await expectPathMissing(`${indexPath}-shm`);

366+

await expectPathMissing(`${indexPath}-journal`);

356367

await expectPathMissing(`${tempIndexPath}-wal`);

357368

await expectPathMissing(`${tempIndexPath}-shm`);

369+

await expectPathMissing(`${tempIndexPath}-journal`);

370+

});

371+372+

it("does not strand a stale rollback-journal next to the published index", async () => {

373+

// journal_mode=DELETE stores (e.g. NFS-backed) leave a -journal sidecar

374+

// instead of -wal/-shm. A swap that ignores it would publish the new main

375+

// file beside a stale rollback journal, so the next open would roll the

376+

// fresh index back to a torn state. The journal must be cleared on publish.

377+

writeChunkMarker(indexPath, "before");

378+

writeChunkMarker(tempIndexPath, "after");

379+

await fs.writeFile(`${indexPath}-journal`, "stale rollback journal");

380+381+

await runMemoryAtomicReindex({

382+

targetPath: indexPath,

383+

tempPath: tempIndexPath,

384+

build: async () => undefined,

385+

});

386+387+

// Real disk readback across the swap boundary.

388+

expect(readChunkMarker(indexPath)).toBe("after");

389+

await expectPathMissing(`${indexPath}-journal`);

390+

});

391+392+

it("removes the temp rollback-journal sidecar when a reindex build fails", async () => {

393+

// A crashed/failed reindex on a DELETE-mode store can leave a temp

394+

// -journal sidecar. Cleanup must remove it alongside the temp main file so

395+

// the startup orphan sweep is never required to reclaim it.

396+

writeChunkMarker(indexPath, "before");

397+

writeChunkMarker(tempIndexPath, "after");

398+

await fs.writeFile(`${tempIndexPath}-journal`, "temp rollback journal");

399+400+

await expect(

401+

runMemoryAtomicReindex({

402+

targetPath: indexPath,

403+

tempPath: tempIndexPath,

404+

build: async () => {

405+

throw new Error("embedding failure");

406+

},

407+

}),

408+

).rejects.toThrow("embedding failure");

409+410+

// The prior index survives and the temp triplet (incl. -journal) is gone.

411+

expect(readChunkMarker(indexPath)).toBe("before");

412+

await expectPathMissing(tempIndexPath);

413+

await expectPathMissing(`${tempIndexPath}-journal`);

414+

});

415+416+

it("moves the rollback-journal sidecar with the main index across the real filesystem", async () => {

417+

// moveMemoryIndexFiles is the Windows backup-protocol restore primitive.

418+

// It must carry the -journal sidecar so a DELETE-mode index is recovered

419+

// intact when a publish is rolled back.

420+

const sourceBase = `${indexPath}.tmp`;

421+

writeChunkMarker(sourceBase, "recovered");

422+

await fs.writeFile(`${sourceBase}-journal`, "recovered journal");

423+424+

await moveMemoryIndexFiles(sourceBase, indexPath);

425+426+

// Real disk readback at the destination. Inspect the relocated journal

427+

// before opening the DB, since opening index.sqlite would treat a sibling

428+

// -journal as a hot journal and consume it.

429+

await expect(fs.readFile(`${indexPath}-journal`, "utf8")).resolves.toBe("recovered journal");

430+

await expectPathMissing(sourceBase);

431+

await expectPathMissing(`${sourceBase}-journal`);

432+

await fs.rm(`${indexPath}-journal`, { force: true });

433+

expect(readChunkMarker(indexPath)).toBe("recovered");

358434

});

359435360436

it("reports publish before post-swap cleanup failures", async () => {