Kuzu Link -
If you want to star the project, contribute, or look at the source code.
To extract maximum performance from Kuzu Link, follow these guidelines: kuzu link
Even with robust design, you might encounter issues. Here are solutions to frequent Kuzu Link problems: If you want to star the project, contribute,
Problem: "Query runs slowly on first execution but fast afterwards."
Solution: That’s the page cache warming up. Kuzu Link uses OS-level memory mapping. If your dataset exceeds RAM, the first traversal loads pages from disk. Consider increasing buffer_pool_size in the configuration. Kuzu Link uses OS-level memory mapping
Problem: "Link deletion is sluggish."
Solution: Deleting a relationship forces a rewrite of the adjacency list in Kuzu Link’s current version. Batch your deletions or mark links as "inactive" with a boolean property instead.
Problem: "Cannot traverse beyond 10 hops."
Solution: By default, Kuzu Link limits recursion depth to 10 for safety. Increase with SET max_hops = 50 at the session level, but monitor memory usage.