Kuzu V0 136 Fixed Jun 2026
The v0.13.6 update mitigates a rare race condition during structural modifications (like adding a new property column to an existing node table while concurrent read queries are actively scanning the database catalog).
Use a client or a driver compatible with Kuzu to connect to your database. The official Kuzu documentation should provide examples or a list of supported drivers.
Fewer crashes and more reliable performance, especially during heavy ingestion or concurrent reads. kuzu v0 136 fixed
: Data type mapping—specifically handling complex nested lists, structs, and high-precision timestamps passed from Python (Pandas/Arrow) or JavaScript—is now seamless. Arrow-based data ingestion pipelines will experience fewer serialization bottlenecks. Performance Enhancements
Use Cypher queries to create nodes and edges. A simple example to create a node might look like: The v0
🐘
Fixing edge-case crashes means that long-running local microservices leveraging Kùzu will experience drastically reduced downtime. Performance Enhancements Use Cypher queries to create nodes
The updated recovery engine explicitly merges free pages immediately following an abort, ensuring that any subsequent data mutations do not write over uncheckpointed segments. This effectively prevents OverflowFile corruption errors during subsequent database restarts. 2. Vector Indexing and Memory Management
With the growing popularity of hybrid Graph-Vector retrieval (GraphRAG), the Hierarchical Navigable Small World (HNSW) vector extension received vital optimization.
┌────────────────────────────────────────────────────────┐ │ Cypher Query Engine │ └───────────────────────────┬────────────────────────────┘ ▼ ┌────────────────────────────────────────────────────────┐ │ Vectorized & Factorized Query Processor │ └───────────────────────────┬────────────────────────────┘ ▼ ┌────────────────────────────────────────────────────────┐ │ Execution Plan (Parallel Multi-Core) │ └───────────────┬────────────────────────┬───────────────┘ │ │ ▼ ▼ ┌────────────────────────┐ ┌────────────────────────┐ │ Node Properties │ │ Adjacency Matrices │ │ (Columnar Storage) │ │ (Compressed CSR) │ └────────────────────────┘ └────────────────────────┘
