Kuzu V0 136 [2025]

These features are expected to be included in future releases of Kuzu.

The v0.136 release is a stabilization and feature iteration update. It addresses community feedback regarding query execution and data ingestion, ensuring that the database remains robust as datasets grow into the billions of nodes and relationships.

conn.execute("CREATE (u:User id: 1, name: 'Alice')")

The ecosystem of embedded databases is evolving rapidly, driven by the explosive growth of artificial intelligence, Graph Retrieval-Augmented Generation (GraphRAG), and complex analytical workloads. , a highly scalable, in-process property graph database management system written in C++, has been at the forefront of this space. It is designed to be the "DuckDB of the graph world"—providing a lightweight, serverless data store optimized for join-heavy graph analytics (OLAP).

Kùzu A fast, scalable graph database for analytical workloads kuzu v0 136

The applications of Kuzu v0.136 are diverse and far-reaching, with potential use cases spanning various industries and domains. Some examples include:

Implements Columnar Sparse Row-based (CSR) adjacency lists. This specific index mapping allows Kuzu to perform highly rapid, complex graph joins over billions of connections without substantial memory overhead.

: Kùzu can bulk-load data directly from CSV, JSON, and Parquet files, as well as attach external tables from systems like Delta Lake or DuckDB.

MATCH (account:Account)-[:TRANSFER*1..4]->(suspicious:Account) WHERE suspicious.risk_score > 0.8 RETURN account.id, collect(suspicious.id) These features are expected to be included in

Financial institutions use graph databases to flag circular transactions or sudden connection to known bad actors. With , the improved recursive joins allow you to run variable-length pattern matching on the fly. For example:

As of October 2025, KùzuDB reached its final milestone with the release of , at which point the project was archived and Kùzu Inc. announced they were "working on something new". Reports suggest the team may have been acquired by Apple.

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

Ask for a deep dive into how beats traditional join methods. Share public link Kùzu A fast, scalable graph database for analytical

import kuzu

You can install the latest v0.13.6 release directly via pip : pip install kuzu==0.13.6 Use code with caution. Basic Usage Example

For a Python developer, the workflow is seamless:

The graph database market is often criticized for its complexity. You often need a dedicated DevOps team to maintain a cluster. Kuzu v0.136 represents a maturing vision of "Graph for Everyone."

As we look toward v0.14 and beyond, the roadmap for Kuzu includes expanded support for concurrent reads and writes (a challenging feat for embedded databases) and deeper integration with the Apache Arrow ecosystem.