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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

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(state): make SQLite sidecar archives retriable · open...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main

@@ -387,6 +387,41 @@ async function runLegacyStateMigrationsForRoot(root: string) {

387387

return await runLegacyStateMigrations({ detected });

388388

}

389389390+

function failRenameOnce(sourcePath: string) {

391+

const actualRenameSync = fs.renameSync.bind(fs);

392+

let failed = false;

393+

return vi.spyOn(fs, "renameSync").mockImplementation((from, to) => {

394+

if (!failed && String(from) === sourcePath) {

395+

failed = true;

396+

throw new Error("forced archive failure");

397+

}

398+

actualRenameSync(from, to);

399+

});

400+

}

401+402+

function writePendingWalSnapshot(sourcePath: string, mutate: (db: DatabaseSync) => void): Buffer {

403+

const walPath = `${sourcePath}-wal`;

404+

const snapshotPath = `${sourcePath}.wal-snapshot`;

405+

const snapshotWalPath = `${snapshotPath}-wal`;

406+

const sqlite = requireNodeSqlite();

407+

const db = new sqlite.DatabaseSync(sourcePath);

408+

try {

409+

db.exec("PRAGMA journal_mode = WAL; PRAGMA wal_autocheckpoint = 0;");

410+

mutate(db);

411+

// Copy before closing because SQLite checkpoints and removes the WAL on clean shutdown.

412+

fs.copyFileSync(sourcePath, snapshotPath);

413+

fs.copyFileSync(walPath, snapshotWalPath);

414+

} finally {

415+

db.close();

416+

}

417+

for (const suffix of ["", "-shm", "-wal", "-journal"]) {

418+

fs.rmSync(`${sourcePath}${suffix}`, { force: true });

419+

}

420+

fs.renameSync(snapshotPath, sourcePath);

421+

fs.renameSync(snapshotWalPath, walPath);

422+

return fs.readFileSync(walPath);

423+

}

424+390425

function writeLegacyTaskStateSidecars(root: string): {

391426

taskRunsPath: string;

392427

flowRunsPath: string;

@@ -1541,6 +1576,79 @@ describe("doctor legacy state migrations", () => {

15411576

});

15421577

});

154315781579+

it("archives the plugin-state rollback journal with the legacy database", async () => {

1580+

const root = await makeTempRoot();

1581+

const sourcePath = writeLegacyPluginStateSidecar(root);

1582+

const journalPath = `${sourcePath}-journal`;

1583+

fs.writeFileSync(journalPath, "");

1584+1585+

const result = await runLegacyStateMigrationsForRoot(root);

1586+1587+

expect(result.warnings).toStrictEqual([]);

1588+

expect(fs.existsSync(journalPath)).toBe(false);

1589+

expect(fs.existsSync(`${journalPath}.migrated`)).toBe(true);

1590+

expect(fs.existsSync(sourcePath)).toBe(false);

1591+

expect(fs.existsSync(`${sourcePath}.migrated`)).toBe(true);

1592+

});

1593+1594+

it("retries plugin-state archival after a sidecar rename failure", async () => {

1595+

const root = await makeTempRoot();

1596+

const sourcePath = writeLegacyPluginStateSidecar(root);

1597+

const walPath = `${sourcePath}-wal`;

1598+

const pendingWalState = writePendingWalSnapshot(sourcePath, (db) => {

1599+

db.prepare(`

1600+

UPDATE plugin_state_entries

1601+

SET value_json = ?

1602+

WHERE plugin_id = ? AND namespace = ? AND entry_key = ?

1603+

`).run('{"ok":"from-wal"}', "discord", "components", "interaction:1");

1604+

});

1605+1606+

const rename = failRenameOnce(walPath);

1607+

const firstResult = await (async () => {

1608+

try {

1609+

return await runLegacyStateMigrationsForRoot(root);

1610+

} finally {

1611+

rename.mockRestore();

1612+

}

1613+

})();

1614+1615+

expect(firstResult.changes).toContain(

1616+

"Migrated 1 plugin-state sidecar entry → shared SQLite state",

1617+

);

1618+

expect(firstResult.warnings).toStrictEqual([

1619+

`Failed archiving plugin-state sidecar ${walPath}: Error: forced archive failure`,

1620+

]);

1621+

expect(fs.existsSync(sourcePath)).toBe(false);

1622+

expect(fs.existsSync(`${sourcePath}.migrated`)).toBe(true);

1623+

expect(fs.existsSync(walPath)).toBe(true);

1624+

expect(fs.existsSync(`${walPath}.migrated`)).toBe(false);

1625+1626+

const retryDetected = await detectLegacyStateMigrations({

1627+

cfg: {},

1628+

env: { OPENCLAW_STATE_DIR: root } as NodeJS.ProcessEnv,

1629+

});

1630+

expect(retryDetected.pluginStateSidecar).toEqual({ sourcePath, hasLegacy: true });

1631+

expect(retryDetected.preview).toContain(

1632+

`- Plugin state sidecar: finish archive cleanup for ${sourcePath}`,

1633+

);

1634+

const retryResult = await runLegacyStateMigrations({ detected: retryDetected });

1635+1636+

expect(retryResult.warnings).toStrictEqual([]);

1637+

expect(retryResult.changes).toStrictEqual([

1638+

`Archived plugin-state sidecar legacy source → ${sourcePath}.migrated`,

1639+

]);

1640+

expect(fs.existsSync(walPath)).toBe(false);

1641+

expect(fs.readFileSync(`${walPath}.migrated`)).toEqual(pendingWalState);

1642+1643+

await withStateDir(root, async () => {

1644+

const store = createPluginStateKeyedStore<{ ok: string }>("discord", {

1645+

namespace: "components",

1646+

maxEntries: 10,

1647+

});

1648+

await expect(store.lookup("interaction:1")).resolves.toEqual({ ok: "from-wal" });

1649+

});

1650+

});

1651+15441652

it("imports the legacy plugin install index JSON into shared state", async () => {

15451653

const root = await makeTempRoot();

15461654

const sourcePath = path.join(root, "plugins", "installs.json");

@@ -2321,6 +2429,103 @@ describe("doctor legacy state migrations", () => {

23212429

});

23222430

});

232324312432+

it("archives task rollback journals with the legacy databases", async () => {

2433+

const root = await makeTempRoot();

2434+

const { taskRunsPath, flowRunsPath } = writeLegacyTaskStateSidecars(root);

2435+

const taskJournalPath = `${taskRunsPath}-journal`;

2436+

const flowJournalPath = `${flowRunsPath}-journal`;

2437+

fs.writeFileSync(taskJournalPath, "");

2438+

fs.writeFileSync(flowJournalPath, "");

2439+2440+

const result = await autoMigrateLegacyTaskStateSidecars({

2441+

env: { OPENCLAW_STATE_DIR: root } as NodeJS.ProcessEnv,

2442+

});

2443+2444+

expect(result.warnings).toStrictEqual([]);

2445+

for (const sourcePath of [taskRunsPath, flowRunsPath]) {

2446+

expect(fs.existsSync(sourcePath)).toBe(false);

2447+

expect(fs.existsSync(`${sourcePath}.migrated`)).toBe(true);

2448+

expect(fs.existsSync(`${sourcePath}-journal`)).toBe(false);

2449+

expect(fs.existsSync(`${sourcePath}-journal.migrated`)).toBe(true);

2450+

}

2451+

});

2452+2453+

it("reports pending task and flow sidecar archive cleanup", async () => {

2454+

const root = await makeTempRoot();

2455+

const taskRunsPath = path.join(root, "tasks", "runs.sqlite");

2456+

const flowRunsPath = path.join(root, "flows", "registry.sqlite");

2457+

for (const sourcePath of [taskRunsPath, flowRunsPath]) {

2458+

fs.mkdirSync(path.dirname(sourcePath), { recursive: true });

2459+

fs.writeFileSync(`${sourcePath}.migrated`, "");

2460+

fs.writeFileSync(`${sourcePath}-wal`, "");

2461+

}

2462+2463+

const detected = await detectLegacyStateMigrations({

2464+

cfg: {},

2465+

env: { OPENCLAW_STATE_DIR: root } as NodeJS.ProcessEnv,

2466+

});

2467+2468+

expect(detected.taskStateSidecars.hasLegacy).toBe(true);

2469+

expect(detected.preview).toContain(

2470+

`- Task registry sidecar: finish archive cleanup for ${taskRunsPath}`,

2471+

);

2472+

expect(detected.preview).toContain(

2473+

`- Task flow sidecar: finish archive cleanup for ${flowRunsPath}`,

2474+

);

2475+

});

2476+2477+

it("retries task-state archival after a sidecar rename failure", async () => {

2478+

const root = await makeTempRoot();

2479+

const { taskRunsPath } = writeLegacyTaskStateSidecars(root);

2480+

const walPath = `${taskRunsPath}-wal`;

2481+

const pendingWalState = writePendingWalSnapshot(taskRunsPath, (db) => {

2482+

db.prepare("UPDATE task_runs SET label = ? WHERE task_id = ?").run(

2483+

"Pending WAL task",

2484+

"legacy-task",

2485+

);

2486+

});

2487+2488+

const rename = failRenameOnce(walPath);

2489+

const firstResult = await (async () => {

2490+

try {

2491+

return await autoMigrateLegacyTaskStateSidecars({

2492+

env: { OPENCLAW_STATE_DIR: root } as NodeJS.ProcessEnv,

2493+

});

2494+

} finally {

2495+

rename.mockRestore();

2496+

}

2497+

})();

2498+2499+

expect(firstResult.changes).toContain(

2500+

"Migrated 1 task registry sidecar row → shared SQLite state",

2501+

);

2502+

expect(firstResult.warnings).toStrictEqual([

2503+

`Failed archiving task registry sidecar ${walPath}: Error: forced archive failure`,

2504+

]);

2505+

expect(fs.existsSync(taskRunsPath)).toBe(false);

2506+

expect(fs.existsSync(`${taskRunsPath}.migrated`)).toBe(true);

2507+

expect(fs.existsSync(walPath)).toBe(true);

2508+

expect(fs.existsSync(`${walPath}.migrated`)).toBe(false);

2509+2510+

resetAutoMigrateLegacyTaskStateSidecarsForTest();

2511+

const retryResult = await autoMigrateLegacyTaskStateSidecars({

2512+

env: { OPENCLAW_STATE_DIR: root } as NodeJS.ProcessEnv,

2513+

});

2514+2515+

expect(retryResult.warnings).toStrictEqual([]);

2516+

expect(retryResult.changes).toStrictEqual([

2517+

`Archived task registry sidecar legacy source → ${taskRunsPath}.migrated`,

2518+

]);

2519+

expect(fs.existsSync(walPath)).toBe(false);

2520+

expect(fs.readFileSync(`${walPath}.migrated`)).toEqual(pendingWalState);

2521+2522+

await withStateDir(root, async () => {

2523+

expect(loadTaskRegistryStateFromSqlite().tasks.get("legacy-task")).toMatchObject({

2524+

label: "Pending WAL task",

2525+

});

2526+

});

2527+

});

2528+23242529

it("skips orphan task delivery sidecar rows while importing valid task rows", async () => {

23252530

const root = await makeTempRoot();

23262531

const { taskRunsPath } = writeLegacyTaskStateSidecars(root);