Your best option is to look at the Fuseki logs for the exact error. I've personally never POSTed so much data to Fuseki, but I feel like it should not be be a problem unless something is timing out the connection, or truncating the POST data, or your triples contain syntax errors. Another option is to try the LOAD operation (https://www.w3.org/TR/sparql11-update/#load), or the SOH command line tools (https://jena.apache.org/documentation/fuseki2/soh.html). What I would do, personally speaking, is find a way to chunk your data and send multiple requests (even if, as I said, 85MB should work. It's not a huge file after all).
> Sent: Tuesday, August 06, 2019 at 12:39 PM > From: "Pierre Grenon" <[email protected]> > To: "'[email protected]'" <[email protected]> > Subject: RE: RE: Sensible size limit for SPARQL update payload to Fuseki2? > > > Can you share your query? > > Afraid I can't > > It looks like : > > <PREFIX> > > INSERT DATA { > > <9000K triples> > > } > > > I don't understand if you're trying to insert a single literal string that > > is 85MB in size, or if you're trying to load 900K triples that are 85MB in > > total. > > Second one. I'm not trying to load a single triple with a 85Mb object literal > but I am trying to perform a single INSERT operation of 900k triples. > > Many thanks, > Pierre
