On 26/09/17 02:04, Dimov, Stefan wrote:
Hello,
I have a Fuseki/Jena setup and while it’s running, I’m trying to update one of
the existing graph with more triples. I’m using the code:
ds.begin(ReadWrite.WRITE);
Model model = ds.getNamedModel(graphName);
FileManager.get().readModel(model, sourceFileName);
ds.commit();
ds.end();
Is this code running inside Fuseki or in a separate process?
If in a separate process, updating the files of TDB directly is not
supported.
If you are doing that and that code executes at all, is it in a
different machine to the Fusekis server? Shared files in someway?
(see email 22/Sept)
The operation finishes without error, but as a result in TDB I have two graphs
with the name graphName, instead of having the initially existing graph
appended?
RDFConnection.put(filename);
Seems like a bug in Jena. How can workaround it? Or am I doing something wrong?
Regards,
Stefan