paper-with-me

Papers

LiveVectorLake: A Real-Time Versioned Knowledge Base Architecture for Streaming Vector Updates and Temporal Retrieval

2025-11-24 · Tarun Prajapati arxiv

Modern Retrieval-Augmented Generation (RAG) systems struggle with a fundamental architectural tension: vector indices are optimized for query latency but poorly handle continuous knowledge updates, while data lakes excel at versioning but introduce query latency penalties. We introduce LiveVectorLake, a dual-tier temporal knowledge base architecture that enables real-time semantic search on current knowledge while maintaining complete version history for compliance, auditability, and point-in-time retrieval. The system introduces three core architectural contributions: (1) Content-addressable chunk-level synchronization using SHA-256 hashing for deterministic change detection without external state tracking; (2) Dual-tier storage separating hot-tier vector indices (Milvus with HNSW) from cold-tier columnar versioning (Delta Lake with Parquet), optimizing query latency and storage cost independently; (3) Temporal query routing enabling point-in-time knowledge retrieval via delta-versioning with ACID consistency across tiers. Evaluation on a 100-document corpus versioned across five time points demonstrates: (i) 10-15% re-processing of content during updates compared to 100% for full re-indexing; (ii) sub-100ms retrieval latency on current knowledge; (iii) sub-2s latency for temporal queries across version history; and (iv) storage cost optimization through hot/cold tier separation (only current chunks in expensive vector indices). The approach enables production RAG deployments requiring simultaneous optimization for query performance, update efficiency, and regulatory compliance. Code and resources: [https://github.com/praj-tarun/LiveVectorLake]

📄 PDF Abstract BibTeX arXiv:2601.05270

Code (0)

등록된 구현이 없습니다.

Tasks

Change Detection

Similar Papers 제목 키워드 기반

StagedWorkspace: A Versioned Workspace for Knowledge-Work Agents

2026-08-18 · Yining Hua, Hongbin Na, Yifan Zhou, Akshay Kalose 외 arxiv

AI agents increasingly perform knowledge work (i.e., produce and modify persistent digital artifacts such as code repositories, documents, spreadsheets, slides, reports), yet the parsed views they search, the native file…

Versioned Late Materialization for Ultra-Long Sequence Training in Recommendation Systems at Scale

2026-04-27 · Liang Guo, Ge Song, Litao Deng, Jianhui Sun 외 arxiv

Modern Deep Learning Recommendation Models (DLRMs) follow scaling laws with sequence length, driving the frontier toward ultra-long User Interaction History (UIH). However, the industry-standard "Fat Row" paradigm, which…

Recommendation Systems

Structural Alignment as the Basis to Improve Significant Change Detection in Versioned Sentences

2015-12-01 · ALTA 2015 12 · Ping Ping Tan, Karin Verspoor, Tim Miller
Change Detection

Self-Aware Vector Embeddings for Retrieval-Augmented Generation: A Neuroscience-Inspired Framework for Temporal, Confidence-Weighted, and Relational Knowledge

2026-04-22 · Naizhong Xu arxiv

Modern retrieval-augmented generation (RAG) systems treat vector embeddings as static, context-free artifacts: an embedding has no notion of when it was created, how trustworthy its source is, or which other embeddings d…

Knowledge Graph Embedding

Tool-Making and Self-Evolving LLM Agents in Low-Latency Systems

2026-07-09 · Kalle Kujanpää, Ning Liu, Shahnawaz Alam, Yeshwanth Reddy Sura 외 arxiv

Production LLM agents often waste latency and reliability by regenerating code for the same procedural steps on every request. We replace this inference-time coding loop with an agentic tool-making pipeline that compiles…

Code Generation