Accessibility Statement

    Kuzu V0 136 Jun 2026

    +-------------------------------------------------------------+ | User Application | | (Python / Rust / Node.js / C++ / Go Bindings) | +-------------------------------------------------------------+ | (In-Process API Calls) v +-------------------------------------------------------------+ | Kùzu DB Engine | | | | +------------------+ +--------------------+ | | | Cypher Parser | ------------> | Query Optimizer | | | +------------------+ +--------------------+ | | | | | v | | +------------------+ +--------------------+ | | | Vectorized Exec | <------------ | Factorized Planner | | | +------------------+ +--------------------+ | | | | +------------|------------------------------------------------+ | (Direct Memory Access) v +-------------------------------------------------------------+ | Storage Layer | | - Column-Oriented Tables - Dual-Indexed Adjacency Lists | | - In-Memory Buffer Pool - Spill-to-Disk Swapping | +-------------------------------------------------------------+ Factorized Execution

    Kùzu is an in-process property graph database management system (GDBMS). Unlike traditional client-server databases, Kùzu runs directly inside your application process. This eliminates network overhead, simplifies deployment pipelines, and allows for ultra-low latency data access. Core Architectural Pillars

    Getting your hands on is straightforward. The database is available via multiple package managers: kuzu v0 136

    While Kuzu v0.136 shows promise, there are several challenges and limitations that need to be addressed. Some of these include:

    conn.execute("CREATE (:Person name: 'Alice', age: 30)") conn.execute("CREATE (:Person name: 'Bob', age: 25)") Core Architectural Pillars Getting your hands on is

    Better support for CALL {} subqueries, allowing developers to execute complex conditional logic or localized aggregation within a broader matching clause.

    Data scientists building RAG systems (Retrieval-Augmented Generation) need to store entity relationships. The new LIST of STRUCT type allows you to attach vector embeddings directly to nodes as a list of floats, eliminating the need for a separate vector database. Memory leaks during iterative

    Kuzu v0 136 — Commentary

    For Python and Rust developers, v0.13.6 brings improved memory hand-offs between the native C++ core and the host language runtimes. Memory leaks during iterative, long-running scripts (such as feeding graph embeddings into a machine learning model) have been aggressively patched. Kùzu v0.13.6 in Action: Code Examples

    A migration script is available in the official documentation: /kuzu/v0.136/upgrade_guide.md