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

推荐订阅源

量子位
D
Docker
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
美团技术团队
博客园 - 叶小钗
I
InfoQ
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
B
Blog
Y
Y Combinator Blog
A
About on SuperTechFans
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium

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): prevent silent vector index degradation when...
yaaboo-gif · 2026-05-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -37,6 +37,7 @@ Docs: https://docs.openclaw.ai

3737

- Agents/heartbeat: stop heartbeat turns after the first valid `heartbeat_respond` so repeated response loops do not burn tokens. (#86357) Thanks @udaymanish6.

3838

- Tasks: keep retained lost tasks out of default status health counts, explain their cleanup window during maintenance, and prune lost task records after 24 hours instead of the general 7-day terminal retention.

3939

- Memory-core: keep REM dreaming focused on live light-staged memories and mark staged entries as considered so old recall history no longer dominates fresh candidates. (#86302) Thanks @SebTardif.

40+

- Memory: abort sync instead of downgrading an existing semantic vector index to FTS-only when the configured embedding provider is temporarily unavailable. (#85704) Thanks @yaaboo-gif.

4041

- Telegram: propagate forum topic names through the account-scoped topic cache for native command context and topic create/edit actions. (#86299) Thanks @SebTardif.

4142

- Slack: keep downloaded read-only files out of reply media so Slack file reads do not echo files back to the conversation. (#86318) Thanks @neeravmakwana.

4243

- Cron: accept leading-plus relative durations such as `+5m` for one-shot `--at` schedules. (#86341) Thanks @mushuiyu886.

Original file line numberDiff line numberDiff line change

@@ -100,6 +100,8 @@ class SessionDeltaHarness extends MemoryManagerSyncOps {

100100
101101

protected pruneEmbeddingCacheIfNeeded(): void {}

102102
103+

protected resetProviderInitializationForRetry(): void {}

104+
103105

protected async indexFile(

104106

_entry: MemoryIndexEntry,

105107

_options: { source: MemorySource; content?: string },

Original file line numberDiff line numberDiff line change

@@ -110,6 +110,8 @@ class SessionStartupCatchupHarness extends MemoryManagerSyncOps {

110110
111111

protected pruneEmbeddingCacheIfNeeded(): void {}

112112
113+

protected resetProviderInitializationForRetry(): void {}

114+
113115

protected async indexFile(

114116

_entry: MemoryIndexEntry,

115117

_options: { source: MemorySource; content?: string },

Original file line numberDiff line numberDiff line change

@@ -235,6 +235,7 @@ export abstract class MemoryManagerSyncOps {

235235

): Promise<T>;

236236

protected abstract getIndexConcurrency(): number;

237237

protected abstract pruneEmbeddingCacheIfNeeded(): void;

238+

protected abstract resetProviderInitializationForRetry(): void;

238239

protected abstract indexFile(

239240

entry: MemoryIndexEntry,

240241

options: { source: MemorySource; content?: string },

@@ -1093,12 +1094,39 @@ export abstract class MemoryManagerSyncOps {

10931094

return state;

10941095

}

10951096
1097+

private assertFtsOnlySyncAllowed(): void {

1098+

if (this.provider) {

1099+

return;

1100+

}

1101+

const existingMeta = this.readMeta();

1102+

if (

1103+

!existingMeta ||

1104+

existingMeta.model === "fts-only" ||

1105+

!this.settings.provider ||

1106+

this.settings.provider === "none"

1107+

) {

1108+

return;

1109+

}

1110+

this.resetProviderInitializationForRetry();

1111+

throw new Error(

1112+

`Memory sync aborted: embedding provider "${this.settings.provider}" is configured but unavailable. ` +

1113+

`Refusing to run sync in fts-only fallback mode to protect existing vector index (current model: ${existingMeta.model}).`,

1114+

);

1115+

}

1116+
10961117

protected async runSync(params?: {

10971118

reason?: string;

10981119

force?: boolean;

10991120

sessionFiles?: string[];

11001121

progress?: (update: MemorySyncProgressUpdate) => void;

11011122

}) {

1123+

// Guard: if an embedding provider is configured but currently unavailable,

1124+

// abort sync to prevent silently degrading an existing semantic vector index

1125+

// to fts-only and wiping existing semantic vectors.

1126+

// This only protects existing semantic indexes; fresh or already-fts-only

1127+

// indexes can safely sync without an embedding provider.

1128+

this.assertFtsOnlySyncAllowed();

1129+
11021130

const progress = params?.progress ? this.createSyncProgress(params.progress) : undefined;

11031131

if (progress) {

11041132

progress.report({

@@ -1309,6 +1337,8 @@ export abstract class MemoryManagerSyncOps {

13091337

force?: boolean;

13101338

progress?: MemorySyncProgressState;

13111339

}): Promise<void> {

1340+

this.assertFtsOnlySyncAllowed();

1341+
13121342

const dbPath = resolveUserPath(this.settings.store.path);

13131343

const tempDbPath = `${dbPath}.tmp-${randomUUID()}`;

13141344

const tempDb = openMemoryDatabaseAtPath(tempDbPath, this.settings.store.vector.enabled);

Original file line numberDiff line numberDiff line change

@@ -124,6 +124,8 @@ class SessionSyncYieldHarness extends MemoryManagerSyncOps {

124124
125125

protected pruneEmbeddingCacheIfNeeded(): void {}

126126
127+

protected resetProviderInitializationForRetry(): void {}

128+
127129

protected async indexFile(

128130

entry: MemoryIndexEntry,

129131

_options: { source: MemorySource; content?: string },

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import { DatabaseSync } from "node:sqlite";

55

import type { OpenClawConfig } from "openclaw/plugin-sdk/memory-core-host-engine-foundation";

66

import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

77

import { closeAllMemorySearchManagers, getMemorySearchManager } from "./index.js";

8+

import type { MemoryIndexMeta } from "./manager-reindex-state.js";

89

import type { MemoryIndexManager } from "./manager.js";

910

import "./test-runtime-mocks.js";

1011

@@ -89,6 +90,19 @@ describe("memory manager FTS-only reindex", () => {

8990

}

9091

}

9192
93+

function writeExistingMeta(memoryManager: MemoryIndexManager, model: string): void {

94+

const metaWriter = memoryManager as unknown as {

95+

writeMeta(meta: MemoryIndexMeta): void;

96+

};

97+

metaWriter.writeMeta({

98+

model,

99+

provider: "openai",

100+

chunkTokens: 600,

101+

chunkOverlap: 120,

102+

sources: ["memory"],

103+

});

104+

}

105+
92106

it("preserves indexed chunks across forced reindex in FTS-only mode", async () => {

93107

const memoryManager = await createManager();

94108

@@ -116,4 +130,14 @@ describe("memory manager FTS-only reindex", () => {

116130

expect(countChunksContaining("refresh marker")).toBeGreaterThan(0);

117131

expect(countChunksContaining("Alpha topic")).toBe(0);

118132

});

133+
134+

it("aborts instead of downgrading an existing semantic index to FTS-only", async () => {

135+

const memoryManager = await createManager();

136+

writeExistingMeta(memoryManager, "mock-embed");

137+
138+

await expect(memoryManager.sync({ force: true })).rejects.toThrow(

139+

"Refusing to run sync in fts-only fallback mode to protect existing vector index (current model: mock-embed).",

140+

);

141+

expect(memoryManager.status().provider).toBe("auto");

142+

});

119143

});

Original file line numberDiff line numberDiff line change

@@ -312,13 +312,25 @@ export class MemoryIndexManager extends MemoryManagerEmbeddingOps implements Mem

312312

}

313313

try {

314314

await this.providerInitPromise;

315+

} catch (err) {

316+

// Clear the cached rejected promise so subsequent calls can retry

317+

// initialization instead of being permanently stuck with a stale failure.

318+

this.providerInitPromise = null;

319+

throw err;

315320

} finally {

316321

if (this.providerInitialized) {

317322

this.providerInitPromise = null;

318323

}

319324

}

320325

}

321326
327+

protected resetProviderInitializationForRetry(): void {

328+

this.providerInitialized = false;

329+

this.providerInitPromise = null;

330+

this.providerUnavailableReason = undefined;

331+

this.providerLifecycle = createPendingMemoryProviderLifecycle(this.requestedProvider);

332+

}

333+
322334

protected markLocalEmbeddingProviderDegraded(err: unknown): void {

323335

if (this.provider?.id !== "local") {

324336

return;