On 01/07/2020 17:34, Chris Tomlinson wrote:
Hi Andy,
On Jul 1, 2020, at 7:59 AM, Andy Seaborne <[email protected]
<mailto:[email protected]>> wrote:
Presumably the client is in java using
RDFConnectionFactory.connectFuseki?
Yes the clients are in java 1.8 also on Debian 4.9. Fuseki is running
on one ec2 instance and some of the clients are on the same instance
and others are on another ec2 instance on the same region. The clients
use the following patterns:
And the client code is jena 3.14.0 as well?
fuConnBuilder = RDFConnectionFuseki.create()
.destination(baseUrl)
.queryEndpoint(baseUrl+"/query")
.gspEndpoint(baseUrl+"/data")
.updateEndpoint(baseUrl+"/update”);
fuConn = fuConnBuilder.build();
if (!fuConn.isInTransaction()) {
fuConn.begin(ReadWrite.WRITE);
}
fuConn.put(graphName, model);
fuConn.commit();
fuConn isn't shared across threads is it?
Andy