Kuzu V0 136 Fixed Jun 2026
The release of Kuzu v0.13.6 resolves critical edge-case bugs and memory leaks to establish a highly stable environment for embeddable, large-scale property graph management. As an open-source, in-process graph database designed for lightning-fast join-heavy analytical workloads, the Kuzu DB Project continuously delivers optimizations tailored for the modern data stack.
CREATE PROPERTY INDEX ON Person(name);
Short, conventional commit (if fixing a specific bug) kuzu: fix crash in query planner when handling empty projections (or) kuzu(v0.1.36): fix planner crash on empty projection
Kuzu v0.13.6 Fixed! 🚀 The community-driven graph database has rolled out a crucial patch: Kuzu v0.13.6
Columnar disk-based storage with compressed sparse row-based (CSR) adjacency lists. kuzu v0 136 fixed
Kuzu stores data in a graph structure, comprising nodes (or vertices) and edges, which is particularly useful for modeling complex relationships between data entities.
Recent development cycles focused heavily on refining the internal engine and API consistency. Notable fixes included:
void expand()
: A critical fix addresses OnDiskGraph vertex scans during active transactions, ensuring data consistency. The release of Kuzu v0
import kuzu # Initialize a database on disk db = kuzu.Database('./my_graph_db') conn = kuzu.Connection(db) # Create a schema and insert data conn.execute("CREATE NODE TABLE User(name STRING, age INT64, PRIMARY KEY (name))") conn.execute("CREATE (u:User name: 'Alice', age: 30)") # Execute a query safely using the patched v0.13.6 engine result = conn.execute("MATCH (u:User) RETURN u.name, u.age") while result.has_next(): print(result.get_next()) Use code with caution. Conclusion
This public link is valid for 7 days and shares a thread, including any personal information you added. This link or copies made by others cannot be deleted. If you share with third parties, their policies apply. Can’t copy the link right now. Try again later.
: 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 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. 🚀 The community-driven graph database has rolled out
The fix is entirely internal. No public C++ API or Cypher syntax has changed.
Beyond stability, the release optimized query evaluation pipelines and streamlined memory allocations. Feature Area Optimization Details Impact on Performance
Reduces CPU overhead during complex, multi-core query parallelism execution.
It supports a rich subset of the Cypher query language, making it easy to adopt.