kuzu icon indicating copy to clipboard operation
kuzu copied to clipboard

Embeddable property graph database management system built for query speed and scalability. Implements Cypher.

Results 285 kuzu issues
Sort by recently updated
recently updated
newest added

### API Other ### Description Based on incoming user requests, it makes sense to implement an ART index for range queries, similar to what [DuckDB does](https://duckdb.org/2022/07/27/art-storage.html). This would be useful...

feature

### Kùzu version _No response_ ### What operating system are you using? _No response_ ### What happened? literal evaluator edge case: multiple evaluations on (> 1) cnt followed by a...

bug

### Kùzu version master ### What operating system are you using? _No response_ ### What happened? 10K insertions into node table has been slowed down from 11s to ~110s on...

bug

### Kùzu version master ### What operating system are you using? _No response_ ### What happened? Currently we can project graphs with arbitrary sets of node and relationship edges but...

bug

From the extra TODOs in #2004, ordered roughly from simplest to most complicated. - [x] Var List offsets can be bitpacked - [x] InternalIDs can be bitpacked - [x] INT16...

performance optimization

### Description `COPY` into a rel table can consume very large amount of memory for some large num of rels dataset. For example, https://www.cs.cornell.edu/~arb/data/colisten-Spotify/ and also the one mentioned in...

performance optimization

# Description Please include a summary of the changes and the related issue (if applicable). Please also include relevant motivation and context. Fixes # (issue) # Contributor agreement - [...

This issue continues https://github.com/kuzudb/kuzu/issues/2589. ```cypher CREATE NODE TABLE T (id STRING,PRIMARY KEY(id)); CREATE REL TABLE E (FROM T TO T); CREATE (t1:T{id:"t1"})-[:E]->(t2:T{id:"t2"}); // user input from prepared statement WITH "node_after"...

bug
feature

Before, we were scanning all offsets at once to reduce the number of scans done (since with dictionary compression, offsets may be out of order even when doing unfiltered scans,...