mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-14 23:21:04 +00:00
* Add optional tag generation and normalization to auto memory * Add tag index components and clean up temporary JSONL files * Preserve tag index state when reconciliation fails * Refactor and streamline application implementation * Fix pylint C1803 warnings in tag normalization tests * Document optional tag index configuration * Make tag index failures non-blocking and disable auto-memory tags * Add configurable tag indexing and tag listing * Add tag-filtered hybrid search with exact candidate ranking * Remove obsolete generated files * Rename tag index key to tag_key and reject reserved fields * Extract automatic tagging into a dedicated step * Restrict frontmatter updates to authorized keys * Refine tag filtering and automatic memory tagging * Require underscore-separated tags in auto-tag prompts - Forbid spaces in tags and require underscores (e.g. sam_altman) in both English and Chinese auto_tag prompts, with English examples switched to English entities (OpenAI, gold) - Drop prompt-string assertions superseded by the new tagging rule - Merge construction/runtime tag_key validation tests into one parametrized case * Make max_tags_per_file configurable in auto-tag step * Consolidate tag index tests * Fix search test fixture lint warnings * Align tag contracts and index health behavior * Fall back when tag index is unavailable --------- Co-authored-by: jinli.yl <jinli.yl@alibaba-inc.com>
357 lines
13 KiB
Python
357 lines
13 KiB
Python
"""Tests for FAISS index maintenance: backfill incremental sync and idle-time optimize_index."""
|
|
|
|
# pylint: disable=protected-access
|
|
|
|
import asyncio
|
|
import os
|
|
import tempfile
|
|
import time
|
|
|
|
import numpy as np
|
|
import pytest
|
|
|
|
from reme.components.file_store import FaissLocalFileStore, LocalFileStore
|
|
from reme.schema import FileChunk, FileNode
|
|
from reme.steps.index import OptimizeIndexStep
|
|
|
|
|
|
class temp_chdir:
|
|
"""Temporarily chdir into a test workspace."""
|
|
|
|
def __init__(self, path):
|
|
self.path = path
|
|
self.old = None
|
|
|
|
def __enter__(self):
|
|
self.old = os.getcwd()
|
|
os.chdir(self.path)
|
|
return self
|
|
|
|
def __exit__(self, *exc):
|
|
os.chdir(self.old)
|
|
|
|
|
|
class FakeEmbeddingStore:
|
|
"""Small deterministic embedding provider used by file-store tests."""
|
|
|
|
dimensions = 2
|
|
max_batch_size = 10
|
|
is_healthy = True
|
|
|
|
def _embed(self, text: str) -> np.ndarray:
|
|
if "beta" in text or "fresh" in text:
|
|
return np.array([0.0, 1.0], dtype=np.float16)
|
|
return np.array([1.0, 0.0], dtype=np.float16)
|
|
|
|
async def health_check(self, _timeout: float = 2.0) -> bool:
|
|
"""Report the fake embedding service as healthy."""
|
|
return True
|
|
|
|
async def get_embedding(self, input_text: str, **_kwargs) -> np.ndarray:
|
|
"""Return a deterministic embedding for a single text."""
|
|
return self._embed(input_text)
|
|
|
|
async def get_node_embeddings(self, nodes: list[FileChunk], **_kwargs) -> list[FileChunk]:
|
|
"""Attach deterministic embeddings to file chunks."""
|
|
for chunk_node in nodes:
|
|
chunk_node.embedding = self._embed(chunk_node.text)
|
|
return nodes
|
|
|
|
|
|
def run(coro):
|
|
"""Run an async test body."""
|
|
return asyncio.run(coro)
|
|
|
|
|
|
def node(path: str) -> FileNode:
|
|
"""Build a minimal file node."""
|
|
return FileNode(path=path, st_mtime=1.0)
|
|
|
|
|
|
def chunk(chunk_id: str, path: str, text: str, **metadata) -> FileChunk:
|
|
"""Build a minimal file chunk."""
|
|
return FileChunk(id=chunk_id, path=path, text=text, start_line=1, end_line=1, metadata=metadata)
|
|
|
|
|
|
def _new_faiss_store(name, **kwargs):
|
|
"""Construct a FAISS store with embedding disabled at bind time."""
|
|
try:
|
|
store = FaissLocalFileStore(name=name, embedding_store="", **kwargs)
|
|
except ImportError:
|
|
pytest.skip("faiss is not installed")
|
|
return store
|
|
|
|
|
|
async def _settle_reindex(store, timeout=5.0):
|
|
"""Wait until no async reindex is pending or in flight."""
|
|
deadline = time.monotonic() + timeout
|
|
while store._reindex_event.is_set() or store._reindex_busy:
|
|
if time.monotonic() > deadline:
|
|
raise AssertionError("async reindex did not settle in time")
|
|
await asyncio.sleep(0.005)
|
|
|
|
|
|
async def _seed_unembedded_chunk(store: LocalFileStore, chunk_id: str, path: str, text: str) -> None:
|
|
"""Attach one chunk without a vector, keeping the graph invariant intact."""
|
|
store.file_chunks[chunk_id] = chunk(chunk_id, path, text)
|
|
file_node = node(path)
|
|
file_node.chunk_ids = [chunk_id]
|
|
await store.file_graph.upsert_nodes([file_node])
|
|
|
|
|
|
def test_faiss_backfill_adds_incrementally_without_rebuild():
|
|
"""Backfilled vectors are added to the live index; no full rebuild happens
|
|
while tombstones stay under the compaction threshold."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = _new_faiss_store("t_faiss_backfill_incr")
|
|
await store.start()
|
|
store.embedding_store = FakeEmbeddingStore()
|
|
store._faiss_index = store._new_index()
|
|
|
|
await store.upsert([(node("a.md"), [chunk("a", "a.md", "alpha text")])])
|
|
await store.upsert([(node("b.md"), [chunk("b", "b.md", "beta text")])])
|
|
# Same-id text change tombstones the old row (below the 128 floor).
|
|
await store.upsert([(node("a.md"), [chunk("a", "a.md", "alpha updated")])])
|
|
assert store._tombstones == {0}
|
|
|
|
await _seed_unembedded_chunk(store, "c", "c.md", "alpha extra")
|
|
await store._backfill_missing_embeddings()
|
|
|
|
# The new vector is live; the surviving tombstone proves the index
|
|
# was extended in place rather than rebuilt.
|
|
assert set(store._id_to_row) == {"a", "b", "c"}
|
|
assert store._tombstones == {0}
|
|
assert store._reindex_worker_task is None
|
|
assert {c.id for c in await store.vector_search("alpha", 10, {})} == {"a", "b", "c"}
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
def test_faiss_backfill_compacts_when_tombstones_cross_threshold():
|
|
"""Tombstone pressure at backfill time still triggers a full rebuild."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = _new_faiss_store("t_faiss_backfill_compact")
|
|
await store.start()
|
|
store.embedding_store = FakeEmbeddingStore()
|
|
store._faiss_index = store._new_index()
|
|
|
|
await store.upsert([(node("a.md"), [chunk("a", "a.md", "alpha text")])])
|
|
await store.upsert([(node("a.md"), [chunk("a", "a.md", "alpha updated")])])
|
|
assert store._tombstones == {0}
|
|
|
|
# Lower the threshold only now, so the upsert above did not compact.
|
|
store.max_tombstones = 1
|
|
await _seed_unembedded_chunk(store, "c", "c.md", "alpha extra")
|
|
await store._backfill_missing_embeddings()
|
|
|
|
assert store._tombstones == set()
|
|
assert set(store._id_to_row) == {"a", "c"}
|
|
assert {c.id for c in await store.vector_search("alpha", 10, {})} == {"a", "c"}
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
def test_faiss_backfill_mass_delta_uses_async_reindex():
|
|
"""With async_reindex, a delta that rivals the live rows (initial mass
|
|
backfill into an empty index) goes through the background worker."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = _new_faiss_store("t_faiss_backfill_async_mass", async_reindex=True)
|
|
await store.start()
|
|
store.embedding_store = FakeEmbeddingStore()
|
|
store._faiss_index = store._new_index()
|
|
|
|
await _seed_unembedded_chunk(store, "a", "a.md", "alpha text")
|
|
await _seed_unembedded_chunk(store, "b", "b.md", "beta text")
|
|
await store._backfill_missing_embeddings()
|
|
|
|
assert store._reindex_worker_task is not None # routed off-loop
|
|
await _settle_reindex(store)
|
|
assert set(store._id_to_row) == {"a", "b"}
|
|
assert [c.id for c in await store.vector_search("alpha", 5, {})][0] == "a"
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
def test_faiss_backfill_small_delta_adds_inline_in_async_mode():
|
|
"""With async_reindex, a small delta is added inline without a worker."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = _new_faiss_store("t_faiss_backfill_async_small", async_reindex=True)
|
|
await store.start()
|
|
store.embedding_store = FakeEmbeddingStore()
|
|
store._faiss_index = store._new_index()
|
|
|
|
await store.upsert([(node("a.md"), [chunk("a", "a.md", "alpha text")])])
|
|
await store.upsert([(node("b.md"), [chunk("b", "b.md", "beta text")])])
|
|
|
|
await _seed_unembedded_chunk(store, "c", "c.md", "alpha extra")
|
|
await store._backfill_missing_embeddings()
|
|
|
|
# 1 new vector < 2 live rows -> inline add, no background worker.
|
|
assert store._reindex_worker_task is None
|
|
assert set(store._id_to_row) == {"a", "b", "c"}
|
|
assert {c.id for c in await store.vector_search("alpha", 10, {})} >= {"a", "c"}
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
# -- optimize_index (idle-time maintenance) -------------------------------------
|
|
|
|
|
|
def test_tombstone_threshold_scales_and_honors_override():
|
|
"""Threshold math: full vs half scale, 128 floor, and max_tombstones override."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = _new_faiss_store("t_faiss_threshold")
|
|
await store.start()
|
|
store.embedding_store = FakeEmbeddingStore()
|
|
store._faiss_index = type("FakeIndex", (), {"ntotal": 1000})()
|
|
|
|
assert store._tombstone_threshold() == 300 # 0.3 * 1000
|
|
assert store._tombstone_threshold(scale=0.5) == 150 # half the write-path bar
|
|
store._faiss_index = type("FakeIndex", (), {"ntotal": 100})()
|
|
assert store._tombstone_threshold(scale=0.5) == 128 # floor dominates
|
|
|
|
store.max_tombstones = 7
|
|
assert store._tombstone_threshold() == 7
|
|
assert store._tombstone_threshold(scale=0.5) == 7 # fixed override ignores scale
|
|
|
|
store._faiss_index = None # avoid persisting the fake index on close
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
def test_local_store_optimize_index_is_noop():
|
|
"""LocalFileStore.optimize_index() completes without touching store state."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = LocalFileStore(name="t_local_optimize", embedding_store="")
|
|
await store.start()
|
|
await store.upsert([(node("a.md"), [chunk("a", "a.md", "alpha text")])])
|
|
|
|
await store.optimize_index()
|
|
|
|
assert set(store.file_chunks) == {"a"}
|
|
assert [c.id for c in await store.keyword_search("alpha", 5, {})] == ["a"]
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
def test_faiss_optimize_index_noop_below_threshold():
|
|
"""optimize_index() keeps tombstones when they are under the half bar."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = _new_faiss_store("t_faiss_optimize_noop")
|
|
await store.start()
|
|
store.embedding_store = FakeEmbeddingStore()
|
|
store._faiss_index = store._new_index()
|
|
|
|
await store.upsert([(node("a.md"), [chunk("a", "a.md", "alpha text")])])
|
|
await store.upsert([(node("a.md"), [chunk("a", "a.md", "alpha updated")])])
|
|
assert store._tombstones == {0}
|
|
|
|
await store.optimize_index() # 1 tombstone <= 128 floor -> untouched
|
|
|
|
assert store._tombstones == {0}
|
|
assert store._reindex_worker_task is None
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
def test_faiss_optimize_index_compacts_inline_when_sync():
|
|
"""optimize_index() rebuilds inline once tombstones exceed the (overridden) bar."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = _new_faiss_store("t_faiss_optimize_sync")
|
|
await store.start()
|
|
store.embedding_store = FakeEmbeddingStore()
|
|
store._faiss_index = store._new_index()
|
|
|
|
files = [(node(f"n{i}.md"), [chunk(f"c{i}", f"n{i}.md", "alpha text")]) for i in range(4)]
|
|
await store.upsert(files)
|
|
updated = [(node(f"n{i}.md"), [chunk(f"c{i}", f"n{i}.md", f"alpha v2 {i}")]) for i in range(3)]
|
|
await store.upsert(updated)
|
|
assert len(store._tombstones) == 3
|
|
|
|
store.max_tombstones = 2 # lower the bar only for optimize_index
|
|
await store.optimize_index()
|
|
|
|
assert store._tombstones == set()
|
|
assert set(store._id_to_row) == {"c0", "c1", "c2", "c3"}
|
|
assert store._reindex_worker_task is None # inline path
|
|
assert len(await store.vector_search("alpha", 10, {})) == 4
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
def test_faiss_optimize_index_uses_worker_when_async():
|
|
"""optimize_index() submits the rebuild to the background worker under async_reindex."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = _new_faiss_store("t_faiss_optimize_async", async_reindex=True)
|
|
await store.start()
|
|
store.embedding_store = FakeEmbeddingStore()
|
|
store._faiss_index = store._new_index()
|
|
|
|
files = [(node(f"n{i}.md"), [chunk(f"c{i}", f"n{i}.md", "alpha text")]) for i in range(4)]
|
|
await store.upsert(files)
|
|
updated = [(node(f"n{i}.md"), [chunk(f"c{i}", f"n{i}.md", f"alpha v2 {i}")]) for i in range(3)]
|
|
await store.upsert(updated)
|
|
assert len(store._tombstones) == 3
|
|
|
|
store.max_tombstones = 2
|
|
await store.optimize_index()
|
|
|
|
assert store._reindex_worker_task is not None # routed off-loop
|
|
await _settle_reindex(store)
|
|
assert store._tombstones == set()
|
|
assert set(store._id_to_row) == {"c0", "c1", "c2", "c3"}
|
|
await store.close()
|
|
|
|
run(go())
|
|
|
|
|
|
def test_optimize_index_step_calls_file_store_optimize_index():
|
|
"""The cron-facing step delegates to file_store.optimize_index() and reports success."""
|
|
|
|
async def go():
|
|
with tempfile.TemporaryDirectory() as tmp, temp_chdir(tmp):
|
|
store = LocalFileStore(name="t_optimize_step", embedding_store="")
|
|
await store.start()
|
|
|
|
calls = []
|
|
original_optimize = store.optimize_index
|
|
|
|
async def counting_optimize():
|
|
calls.append(True)
|
|
await original_optimize()
|
|
|
|
store.optimize_index = counting_optimize
|
|
step = OptimizeIndexStep(file_store=store)
|
|
await step()
|
|
|
|
assert calls == [True]
|
|
assert step.context.response.metadata["optimized_index"] is True
|
|
await store.close()
|
|
|
|
run(go())
|