firebone
firebone

Reputation: 117

Where is Fuseki server storing triple data?

I have installed Jena Fuseki on my computer and I after I create dataset I see in my file system that it appears under fuseki\run\configuration folder, but I cannot find the triples that I upload to this dataset.

I want to process datasets with Python and then store them in jena fuseki, so I don't want to use the web app GUI that jena provides for uploading new triples. My question is how to accomplish this and where does Jena store uploaded triples?

Upvotes: 1

Views: 573

Answers (1)

cygri
cygri

Reputation: 9472

If you don't want to use the web app UI, Fuseki offers a number of ways to get data into it:

It sounds like you are trying to upload data by directly accessing Fuseki's internal file storage. That's probably not a good idea. Access should go through the officially supported interfaces.

Upvotes: 1

Related Questions