kuzu
kuzu copied to clipboard
Embeddable property graph database management system built for query speed and scalability. Implements Cypher.
### 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...
### 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...
### 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...
### 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...
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...
### 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...
# 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"...
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,...