-
Following the example(s), I was not able to successfully export a knowledge graph to Kuzu. Caused by:
Failed to run cypher: {"error":"Binder exception: Table Entity does not exist."}
[2025-08-04T16:37:31Z ERROR cocoindex_engine::execution::source_indexer] Error in processing row from source `documents` with key: "docs/getting_started/installation.md" How is the usage here intended? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
CocoIndex automatically creates tables during "setup", i.e. when you run ![]() If you're not using the CLI, the If you see this error, it's probably one of the following reasons:
Please let us know if that's the case. We can help to dig further if it's other situations. Thanks! |
Beta Was this translation helpful? Give feedback.
-
@petrarca thank you so much for the amazing questions and feedbacks, we love it! |
Beta Was this translation helpful? Give feedback.
CocoIndex automatically creates tables during "setup", i.e. when you run
cocoindex setup
orcocoindex update --setup
. It will show the tables that it'll create and ask you to confirm, like this:If you're not using the CLI, the
setup()
API will do it.If you see this error, it's probably one of the following reasons:
Between you run
cocoindex setup
andcocoindex update
, you switched the Kuzu database, e.g. you started a new Kuzu container (using the same port) but you didn't keep the underlying db files or it points to a different location.If this is the case, you can run
cocoindex drop -f main.py
to reset your existing states first. After this, cocoindex will know the backend tables …